Skip to content

Instantly share code, notes, and snippets.

@bitnom
Created April 1, 2025 03:56
Show Gist options
  • Save bitnom/66b9d25ca2533e861f3788e1bd5da97e to your computer and use it in GitHub Desktop.
Save bitnom/66b9d25ca2533e861f3788e1bd5da97e to your computer and use it in GitHub Desktop.

Using the SPARC Development Methodology in roocode

Prerequisites

.roomodes file for SPARC

roocode boomerang mode docs

What is SPARC?

SPARC is a methodology for structuring complex software development projects. It breaks down the development lifecycle into distinct, manageable stages, each handled by a specialized "mode" or agent. This approach promotes clarity, modularity, collaboration, and adherence to best practices, similar to an assembly line for software.

The SPARC Modes: Your Specialized Team

Each mode acts as an expert focused on a specific development phase:

  • ask (❓Ask): Clarifies vague tasks into actionable prompts and identifies the correct mode for delegation. Uses Prompt Decomposition Thinking.
  • sparc (⚑️ SPARC Orchestrator): The project manager. Breaks down high-level goals into subtasks and delegates them using new_task. Uses SPARC Orchestration Thinking.
  • spec-pseudocode (πŸ“‹ Specification Writer): Defines what the software should do (requirements, edge cases, constraints) via detailed pseudocode.
  • architect (πŸ—οΈ Architect): Designs how the system is built (high-level structure, scalability, security, component interactions). Uses Architectural Systems Thinking and often visualization tools like Mermaid.
  • code (🧠 Auto-Coder): Writes clean, efficient, modular implementation code based on specs and architecture.
  • tdd (πŸ§ͺ Tester (TDD)): Writes tests before implementation using Test-Driven Development principles to ensure quality.
  • security-review (πŸ›‘οΈ Security Reviewer): Audits code and infrastructure for security vulnerabilities.
  • docs-writer (πŸ“š Documentation Writer): Creates clear user and developer documentation.
  • integration (πŸ”— System Integrator): Merges outputs from different modes into a cohesive, working system.
  • devops (πŸš€ DevOps): Manages deployment, infrastructure automation, and CI/CD.
  • Other Modes: Specialized modes exist for debugging (debug), optimization (refinement-optimization-mode), monitoring (post-deployment-monitoring-mode), etc.

The SPARC Workflow & Key Commands

  1. Define & Decompose: Start with a high-level task. Use ask or sparc to refine and break it down.
  2. Delegate (new_task): The orchestrator assigns subtasks to appropriate modes.
    • Example:
      <new_task>
        <mode>spec-pseudocode</mode>
        <message>Define functional requirements and pseudocode for the password reset flow.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment