conductor

Solid

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 1 stars 0 forks Updated yesterday Apache-2.0

Install

View on GitHub

Quality Score: 80/100

Stars 20%
10
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/`. ## 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", "project": "/path/to/repo", "phases": [ { "name": "think", "depends_on": [] }, { "name": "plan", "depends_on": ["think"] }, { "name": "build", "depends_on": ["plan"] }, { "name": "review", "depends_on": ["build"] }, { "name": "qa", "depends_on": ["build"...

Details

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

Similar Skills

Semantically similar based on skill content — not just same category

Code & Development Listed

sprint_orchestration

Run the steady-state planner loop for a multi-shell sprint. Declare the sprint and structured unit board, assign developers and reviewers, arm event-driven wake, dispatch scoped tasks, advance units from durable events, and route merge order. Load sprint_orchestration_recover only when an expected transition stalls or an alert opens. Load sprint_orchestration_close only when every unit is terminal and main is green.

15 Updated today
jedbjorn
AI & Automation Listed

agentic-sprint

Run a structured multi-agent design sprint to generate, evaluate, and select ideas using specialized AI agents. Use this skill whenever a user wants to explore a product or design problem using multiple perspectives, run a design sprint, brainstorm with different "hats" (user/business/data/system/design), evaluate ideas against principles, or converge on a direction from many options. Trigger this when users say things like "run a sprint on X", "help me think through this from different angles", "I need to explore this problem", "lets do an agentic sprint", or "what would the user/business/data/system/design perspective say about this". Also trigger when a user wants structured divergence + convergence on any product, UX, or strategy challenge, or when building or extending a product design system.

2 Updated 1 weeks ago
vivialiudesign
AI & Automation Listed

sprint-supervise

Re-entrant sprint supervisor loop. Drives a single thin vertical slice to evidence-backed done across re-entry cycles: load prior handoffs, check evidence, complete or decompose, write re-entry handoff, tear down.

0 Updated today
a-canary