Install
$ agentstack add skill-chrismccann-dev-agent-bootstrap-kit-coordinator-spawn ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
coordinator-spawn
Context is finite; a big job done in one window degrades as it fills. This skill keeps one session as the coordinator that decomposes, delegates, and judges - while the actual work happens in fresh, briefed sub-contexts that never see each other.
This is the same primitive as plan-then-implement's large-scale implement phase, and the same shape whether the workers are sub-agents in one session or separate sessions across days.
When to reach for it
- The task won't fit one context (a migration across many files, a repo-wide audit).
- It decomposes into independent units that can run in parallel.
- You want independent verification - e.g. spawn several skeptics to try to refute a finding
before you trust it.
Procedure (as the coordinator)
- Decompose into independent units. Each unit should be doable without the others' results. If
unit B needs unit A's output, that's a pipeline, not a fan-out - sequence it explicitly.
- Write a self-contained brief per unit. The sub-agent has none of your conversation.
Include:
- the goal and the success criteria,
- the exact files/paths and any context it needs,
- constraints (don't touch X; match the style of Y),
- what to return - "return a structured result: {finding, file, line, confidence}", not "go
fix it." Workers should return conclusions, not raw file dumps.
Bad brief (leaky, vague): "Continue the work from above and audit the docs." Good brief (cold, scoped, structured): "Read PRODUCT.md, GLOSSARY.md, and docs/architecture/data-model.md. Return a table of {term, current definition, conflicting usage, recommended action}. Do not edit files." The good one stands alone and tells the worker exactly what shape to return.
- Spawn. Run independent units in parallel. If workers mutate files concurrently, isolate each
in its own worktree to avoid conflicts.
- Roll up - and judge, don't concatenate. Read each result, reconcile conflicts, drop the ones
that don't hold up, dedupe overlap. The coordinator owns the final conclusion. A roll-up that just pastes every worker's output together has skipped the actual job.
- Verify the synthesis. For high-stakes findings, run an adversarial pass: spawn verifiers
prompted to refute each surviving claim; keep only what survives a majority.
- Hand back to the human at the decision points your autonomy contract reserves - irreversible
or interpretive calls.
Anti-patterns
- Leaky briefs. "Continue what we discussed" - the sub-agent didn't discuss anything. Brief
cold, every time.
- Workers that return prose, not data. Ask for structured results so the roll-up is mechanical.
- Coordinator that loses the thread. The whole point is that one context stays authoritative.
Don't let the coordinator start doing the unit-work itself and forget to review.
- Fan-out where a pipeline was needed. If results depend on each other, sequencing beats
parallelism.
Output
A single synthesized result the coordinator stands behind, plus a note of which units were dropped or downgraded and why (silent truncation reads as "covered everything" when it didn't).
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: chrismccann-dev
- Source: chrismccann-dev/agent-bootstrap-kit
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.