What problem does it solve?
Coordinate progress reporting and supervision between a main agent and spawned sub-agents so the main agent can verify bootstrap, monitor ongoing progress, and recover from quiet or unresponsive children without editing child logs.
Core Features & Use Cases
- Creates and reuses a single shared session root under the project temporary directory and enforces one per-agent child folder ownership model.
- Provides scripts to initialize main and sub-agent sessions, prepend timestamped agent.log entries, verify bootstrap, wait for new prepended log entries with exponential backoff, collect summarized status across agents, and mark closed sessions for archival.
- Use when delegating scoped tasks to sub-agents in runtimes that support spawn/wait/send_input, when you require active frequent logging from children, need non-invasive monitoring, or must follow a patient two-round recovery flow instead of immediate redelegation.
Quick Start
Initialize a shared session root, delegate a sub-agent with a stable agent name that requires subagent-progress-report, have the sub-agent initialize its folder and write its first agent.log entry immediately, and run the included bootstrap checker to confirm readiness.