@itqanlab/nitro-fueled
v0.2.1
Published
AI development orchestration — full PM -> Architect -> Dev -> QA pipeline
Downloads
227
Maintainers
Readme
nitro-fueled
Reusable AI development orchestration. Install into any project to get a full PM → Architect → Dev → QA pipeline with autonomous worker sessions.
npx @itqanlab/nitro-fueled initWhat It Does
Nitro-Fueled sets up a structured orchestration layer for AI-powered software delivery inside your project. It coordinates specialist agents through defined workflows, tracks every artifact, and runs autonomous worker sessions that take tasks from creation to reviewed completion.
- Plan — A Planner agent investigates your codebase, proposes phased roadmaps, and creates well-scoped tasks
- Build — Build Workers execute the full PM → Architect → Team Leader → Developer pipeline in isolated sessions
- Review — Review Workers run style, logic, and security reviews with fix-and-verify cycles
- Supervise — An Auto-Pilot Supervisor coordinates workers end-to-end: queue selection, spawning, health monitoring, recovery, and stop conditions
Requirements
- Claude Code CLI installed and authenticated
- Node.js >= 18
CLI Commands
npx @itqanlab/nitro-fueled init # Initialize orchestration in current project
npx @itqanlab/nitro-fueled run # Start the Supervisor
npx @itqanlab/nitro-fueled status # Show task registry and worker status
npx @itqanlab/nitro-fueled create # Create a new task interactivelyGetting Started
1. Initialize
cd your-project
npx @itqanlab/nitro-fueled initDetects your tech stack, copies core agents, generates project-specific developer agents, and sets up task tracking.
2. Plan
Open Claude Code in your project, then run:
/planThe Planner agent investigates the codebase, proposes tasks, and creates a phased roadmap.
3. Run
/auto-pilotThe Supervisor takes over. Spawns workers, monitors health, handles failures, and loops until everything is done.
What Gets Installed
your-project/
├── .claude/
│ ├── agents/ # 16+ specialist agent definitions
│ ├── skills/ # Orchestration, Auto-Pilot, UI/UX, Content Writing
│ ├── commands/ # /plan, /auto-pilot, /orchestrate, /create-task, and more
│ └── anti-patterns.md # QA-derived rules checked before every submission
└── task-tracking/
├── registry.md # Central task index
├── plan.md # Phased roadmap
└── task-template.md # Canonical task structureSlash Commands
| Command | Description |
|---------|-------------|
| /plan | Strategic planning with the Planner agent |
| /auto-pilot | Spawn Supervisor to process the task backlog |
| /orchestrate | Run the full workflow for a single task |
| /create-task | Create a new task with proper structure |
| /project-status | Display project progress overview |
| /review-code | Run code style review |
| /review-logic | Run business logic review |
| /review-security | Run security vulnerability review |
Architecture
Product Owner You — define vision, create tasks, set priorities
↓
Strategic Layer Planner Agent → plan.md, registry.md
↓
Supervisor Layer Auto-Pilot → Build Workers, Review Workers, Cleanup Workers
↓
Execution Layer PM → Architect → Team Leader → Developers → ReviewersTask State Machine
CREATED → IN_PROGRESS → IMPLEMENTED → IN_REVIEW → COMPLETELicense
MIT
