Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions src/crates/assembly/core/src/agentic/coordination/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ mod coordination_store;
pub mod coordinator;
pub mod scheduler;
pub mod state_manager;
// Phase 1 of persistent subagents: types are not yet wired into production
// call paths (Phase 2 registers the registry in the Coordinator). The expect
// fires a reminder once Phase 2 starts using the module.
#[expect(dead_code, reason = "Phase 2 wires the registry into the Coordinator")]
mod subagent_instance;
pub mod turn_outcome;
mod turn_settlement;

Expand All @@ -20,5 +25,11 @@ pub(crate) use background_outcomes::{
BackgroundSubagentWaitResult,
};

// Re-exported for Phase 2 wiring into the Coordinator; currently unused.
#[expect(unused_imports)]
pub(crate) use subagent_instance::{
SubagentInstance, SubagentInstanceRegistry, SubagentInstanceStatus,
};

pub use coordinator::get_global_coordinator;
pub use scheduler::get_global_scheduler;
Loading