conductor

Featured

Orchestrate parallel agent sessions through a sprint. Coordinates task claiming, dependency resolution, and artifact handoff between independent agents. Triggers on /conductor, /sprint, /parallel.

Code & Development 206 stars 15 forks Updated yesterday Apache-2.0

Install

View on GitHub

Quality Score: 93/100

Stars 20%
77
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
80
License 10%
100
Description 5%
100

Skill Content

# /conductor — Multi-Agent Sprint Orchestrator Coordinate multiple agent sessions working on the same project. Each agent claims a task, executes it, produces an artifact, and the next agent picks up where it left off. **No daemon. No service. No IPC.** Just atomic file operations on `.nanostack/conductor/`. ## Telemetry preamble Defensive telemetry init. No-op if telemetry is disabled via `NANOSTACK_NO_TELEMETRY=1`, `~/.nanostack/.telemetry-disabled`, or if the helpers are removed. ```bash _P="$HOME/.claude/skills/nanostack/bin/lib/skill-preamble.sh" [ -f "$_P" ] && . "$_P" conductor unset _P ``` ## How it works ``` Agent A (claude) Filesystem Agent B (codex) │ │ │ ├─ claim "plan" ────────►│ │ │ [plan.lock = A] │ │ │◄──── claim "plan" ─────┤ │ │ REJECTED (locked) │ │ │ │ ├─ complete "plan" ─────►│ │ │ [plan.done + artifact] │ │ │ │ │ │◄──── claim "review" ───┤ │ [review.lock = B] │ │ │ OK (plan.done exists) │ ``` ## Sprint Definition A sprint is a sequence of phases with dependencies: ```json { "sprint_id": "abc123"...

Details

Author
garagon
Repository
garagon/nanostack
Created
5 months ago
Last Updated
yesterday
Language
Shell
License
Apache-2.0

Similar Skills

Semantically similar based on skill content — not just same category