1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
//! Core traits and types for the **harness** agent framework.
//!
//! This crate is intentionally **dependency-light** and **runtime-agnostic** so every
//! upper-layer crate can share a single source of truth for the framework's vocabulary.
//!
//! See `DESIGN.md` at the workspace root for architectural intent.
/// Re-exports used by the procedural macros in `harness-macros`. Not part of
/// the stable public API — users should never need to reference these directly.
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
/// How a control-plane component executes:
/// - **Computational**: deterministic, cheap, fast (CPU-bound: linter, type checker, AST tools).
/// - **Inferential**: model-driven, slower, probabilistic (review agent, semantic dup detection).
///
/// This dichotomy is from Böckeler (2026); see DESIGN.md §3.