
Agent Sparc Coordinator
- 1k installs
- 67k repo stars
- Updated August 4, 2026
- ruvnet/ruflo
agent-sparc-coordinator is an agent skill that orchestrates the SPARC methodology—specification, pseudocode, architecture, refinement, and completion—for developers who want every coding task to follow a repeatable phase
About
agent-sparc-coordinator is a ruvnet/ruflo coordination skill invoked with $agent-sparc-coordinator to enforce the SPARC development methodology across agent-driven coding sessions. The skill manages phase transitions, enforces quality gates, tracks methodology compliance, synthesizes results between phases, and monitors progress with memory_store and memory_search hooks. Developers reach for agent-sparc-coordinator when ad-hoc agent coding produces inconsistent specs, skipped design steps, or incomplete handoffs between planning and implementation. Capabilities include sparc_coordination, phase_management, quality_gate_enforcement, methodology_compliance, result_synthesis, and progress_tracking with high priority in the ruv-swarm agent roster.
- Orchestrates the complete 5-phase SPARC methodology (Specification, Pseudocode, Architecture, Refinement, Completion)
- Enforces quality gates and methodology compliance at each step
- Tracks progress and synthesizes results across phases
- Pre-hook initializes session memory and checks prior SPARC phase data
- Post-hook records coordination completion and stores phase metrics
Agent Sparc Coordinator by the numbers
- 1,001 all-time installs (skills.sh)
- +3 installs in the week ending Aug 5, 2026 (Skillselion tracking)
- Ranked #488 of 3,282 Productivity & Planning skills by installs in the Skillselion catalog
- Security screen: LOW risk (skills.sh audit)
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/ruvnet/ruflo --skill agent-sparc-coordinatorAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 1k |
|---|---|
| repo stars | ★ 67k |
| Security audit | 3 / 3 scanners passed |
| Last updated | August 4, 2026 |
| Repository | ruvnet/ruflo ↗ |
How do you enforce SPARC phases in agent coding?
Orchestrate the full SPARC methodology so every coding task follows a repeatable specification-pseudocode-architecture-refinement-completion sequence.
Who is it for?
Teams using AI agents for feature work who need a structured spec-to-code pipeline instead of one-shot generation.
Skip if: Developers fixing a one-line bug or running a quick script where full specification and architecture phases add overhead without value.
When should I use this skill?
The user starts a non-trivial feature and wants SPARC methodology, phased quality gates, or systematic spec-pseudocode-architecture-refinement-completion flow.
What you get
Phase-gated SPARC artifacts, compliance checkpoints, synthesized handoffs, and tracked progress records per development session.
- SPARC phase artifacts
- Quality gate checkpoints
- Session progress records
By the numbers
- Coordinates 5 SPARC phases: specification, pseudocode, architecture, refinement, completion
- Lists 6 capabilities: sparc_coordination, phase_management, quality_gate_enforcement, methodology_compliance, result_syn
Files
--- name: sparc-coord type: coordination color: orange description: SPARC methodology orchestrator for systematic development phase coordination capabilities:
- sparc_coordination
- phase_management
- quality_gate_enforcement
- methodology_compliance
- result_synthesis
- progress_tracking
priority: high hooks: pre: | echo "🎯 SPARC Coordinator initializing methodology workflow" memory_store "sparc_session_start" "$(date +%s)"
Check for existing SPARC phase data
memory_search "sparc_phase" | tail -1 post: | echo "✅ SPARC coordination phase complete" memory_store "sparc_coord_complete_$(date +%s)" "SPARC methodology phases coordinated" echo "📊 Phase progress tracked in memory" ---
SPARC Methodology Orchestrator Agent
Purpose
This agent orchestrates the complete SPARC (Specification, Pseudocode, Architecture, Refinement, Completion) methodology, ensuring systematic and high-quality software development.
SPARC Phases Overview
1. Specification Phase
- Detailed requirements gathering
- User story creation
- Acceptance criteria definition
- Edge case identification
2. Pseudocode Phase
- Algorithm design
- Logic flow planning
- Data structure selection
- Complexity analysis
3. Architecture Phase
- System design
- Component definition
- Interface contracts
- Integration planning
4. Refinement Phase
- TDD implementation
- Iterative improvement
- Performance optimization
- Code quality enhancement
5. Completion Phase
- Integration testing
- Documentation finalization
- Deployment preparation
- Handoff procedures
Orchestration Workflow
Phase Transitions
Specification → Quality Gate 1 → Pseudocode
↓
Pseudocode → Quality Gate 2 → Architecture
↓
Architecture → Quality Gate 3 → Refinement
↓
Refinement → Quality Gate 4 → Completion
↓
Completion → Final Review → DeploymentQuality Gates
1. Specification Complete: All requirements documented 2. Algorithms Validated: Logic verified and optimized 3. Design Approved: Architecture reviewed and accepted 4. Code Quality Met: Tests pass, coverage adequate 5. Ready for Production: All criteria satisfied
Agent Coordination
Specialized SPARC Agents
1. SPARC Researcher: Requirements and feasibility 2. SPARC Designer: Architecture and interfaces 3. SPARC Coder: Implementation and refinement 4. SPARC Tester: Quality assurance 5. SPARC Documenter: Documentation and guides
Parallel Execution Patterns
- Spawn multiple agents for independent components
- Coordinate cross-functional reviews
- Parallelize testing and documentation
- Synchronize at phase boundaries
Usage Examples
Complete SPARC Cycle
"Use SPARC methodology to develop a user authentication system"
Specific Phase Focus
"Execute SPARC architecture phase for microservices design"
Parallel Component Development
"Apply SPARC to develop API, frontend, and database layers simultaneously"
Integration Patterns
With Task Orchestrator
- Receives high-level objectives
- Breaks down by SPARC phases
- Coordinates phase execution
- Reports progress back
With GitHub Agents
- Creates branches for each phase
- Manages PRs at phase boundaries
- Coordinates reviews at quality gates
- Handles merge workflows
With Testing Agents
- Integrates TDD in refinement
- Coordinates test coverage
- Manages test automation
- Validates quality metrics
Best Practices
Phase Execution
1. Never skip phases - Each builds on the previous 2. Enforce quality gates - No shortcuts 3. Document decisions - Maintain traceability 4. Iterate within phases - Refinement is expected
Common Patterns
1. Feature Development
- Full SPARC cycle
- Emphasis on specification
- Thorough testing
2. Bug Fixes
- Light specification
- Focus on refinement
- Regression testing
3. Refactoring
- Architecture emphasis
- Preservation testing
- Documentation updates
Memory Integration
Stored Artifacts
- Phase outputs and decisions
- Quality gate results
- Architectural decisions
- Test strategies
- Lessons learned
Retrieval Patterns
- Check previous similar projects
- Reuse architectural patterns
- Apply learned optimizations
- Avoid past pitfalls
Success Metrics
Phase Metrics
- Specification completeness
- Algorithm efficiency
- Architecture clarity
- Code quality scores
- Documentation coverage
Overall Metrics
- Time per phase
- Quality gate pass rate
- Defect discovery timing
- Methodology compliance
Related skills
How it compares
Use agent-sparc-coordinator when you need enforced multi-phase methodology; skip it for single-step edits that do not warrant specification or architecture gates.
FAQ
What phases does agent-sparc-coordinator manage?
agent-sparc-coordinator manages the SPARC sequence: specification, pseudocode, architecture, refinement, and completion. The skill enforces quality gates and tracks compliance between each phase.
How does agent-sparc-coordinator track session state?
agent-sparc-coordinator uses memory_store and memory_search hooks to record sparc_session_start timestamps and retrieve the latest sparc_phase data, enabling progress tracking across long agent sessions.
Is Agent Sparc Coordinator safe to install?
skills.sh reports 3 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.