What problem does it solve? Coordinating distributed work across dynamically spawned subagents and reconciling their results into a single ledger entry is hard to do consistently. This Skill defines a planner workflow that fans work out to helper subagents created during execution and guarantees the outcome is recorded in the accounting ledger. ## Core Features & Use Cases - Dynamic Subagent Spawning: Helper subagents are created at run time, with their number decided during execution rather than in advance. - Result Collection: The planner gathers whatever the helper subagents return before proceeding. - Mandatory Ledger Update: The outcome is recorded in the accounting ledger via the update_ledger capability, and the job is not finished until the ledger reflects the work done. - Use Case: A bookkeeping agent splits reconciliation work across several helper subagents, collects their findings, and writes the consolidated result into the ledger so the books always match the work performed. ## Quick Start Ask the planner agent to fan the reconciliation work out to helper subagents and update the accounting ledger with the collected results.