claudegoodies
Skill

agent-sparc-coordinator

From ruvnet

Agent skill for sparc-coordinator - invoke with $agent-sparc-coordinator

Facts

Repository
ruvnet/ruflo
Status
Actively maintained
Last commit

Source preview

The instructions Claude Code reads when this skill runs.

---
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 imple
View full source on GitHub →

Other skills