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
//! Worker integration loop for direct-push parallel mode.
//!
//! Purpose:
//! - Worker integration loop for direct-push parallel mode.
//!
//! Responsibilities:
//! - Expose the integration-loop entrypoints used by parallel workers.
//! - Split integration concerns into configuration, persistence, compliance, prompting,
//! and retry orchestration modules.
//!
//! Not handled here:
//! - Phase execution itself (see `run_one` phase modules).
//! - Worker spawning/orchestration (see `worker.rs` and `orchestration.rs`).
//!
//!
//! Usage:
//! - Used through the crate module tree or integration test harness.
//!
//! Invariants/assumptions:
//! - Called after the worker has completed its configured phases.
//! - Called only in parallel-worker mode.
pub use run_integration_loop;
pub use read_blocked_push_marker;
pub use ;
pub use ;
pub use build_agent_integration_prompt;