What problem does it solve?
Coordinate nexus work by planning epics/features, decomposing into subtasks, and delegating to worker subagents within a consistent, auditable workflow.
Core Features & Use Cases
- Project context discovery and scoping using environment state and repo name, enabling correct Nexus project selection.
- Claiming epics/features, decomposing into subtasks, and delegating work to worker subagents to ensure ownership and visibility.
- Plan-first workflow with human approval for feature work and streamlined handling for smaller tasks.
- Monitoring, updating, and completing tasks with Nexus CLI commands to maintain alignment and progress.
- Delegation patterns and standardized context to ensure reproducible workflows across teams.
Quick Start
Example workflow to start an orchestration:
- Claim a high-level issue: nexus issue claim <epic-id>
- Explore scope and, if needed, create a plan: nexus plan create --for-issue <id> --type feature --body -
- Present plan for human approval and set ready when approved: nexus plan show <plan-id> --format json | jq .ready; nexus plan update <plan-id> --ready
- Decompose into subtasks: nexus issue create --parent <id> --title "Add ..."; delegate to workers
- Monitor subtasks: nexus issue list --parent <id> --format json