//! 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`).
//!
//! 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;