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_checkpoint;
10pub mod hel_config;
11pub mod hel_credentials;
12#[cfg(feature = "controller")]
13pub mod hel_database;
14pub mod hel_diff;
15pub mod hel_elicitation;
16pub mod hel_git_proxy;
17pub mod hel_harness_runtime;
18#[cfg(feature = "controller")]
19pub mod hel_local_git;
20pub mod hel_project_memory;
21#[cfg(feature = "controller")]
22pub mod hel_projection;
23pub mod hel_resources;
24pub mod hel_review;
25pub mod hel_second_opinion;
26pub mod hel_skills;
27#[cfg(feature = "controller")]
28pub mod hel_state;
29pub mod hel_subprocess;
30pub mod hel_targets;
31pub mod hel_terminal;
32pub mod hel_test_hooks;
33pub mod hel_transcript;
34pub mod hel_worker;
35pub mod hel_worker_launch;
36pub mod hel_worker_protocol;
37pub mod hel_workspace;