Skip to main content

hel/
lib.rs

1//! Hel's reusable controller, worker, and session-management core.
2
3pub mod clock;
4#[cfg(feature = "controller")]
5pub mod termination;
6
7pub mod hel_acp;
8pub mod hel_archive;
9pub mod hel_attachment;
10pub mod hel_checkpoint;
11pub mod hel_config;
12pub mod hel_credentials;
13#[cfg(feature = "controller")]
14pub mod hel_database;
15pub mod hel_diff;
16pub mod hel_elicitation;
17pub mod hel_git_proxy;
18pub mod hel_harness_runtime;
19#[cfg(feature = "controller")]
20pub mod hel_local_git;
21pub mod hel_native;
22pub mod hel_project_memory;
23#[cfg(feature = "controller")]
24pub mod hel_projection;
25pub mod hel_resources;
26pub mod hel_review;
27pub mod hel_second_opinion;
28pub mod hel_skills;
29#[cfg(feature = "controller")]
30pub mod hel_state;
31pub mod hel_subprocess;
32pub mod hel_targets;
33pub mod hel_terminal;
34pub mod hel_test_hooks;
35pub mod hel_transcript;
36pub mod hel_worker;
37pub mod hel_worker_launch;
38pub mod hel_worker_protocol;
39pub mod hel_workspace;