Source profileQuality 83/100

tzachbon/smart-ralph/plugins/ralph-speckit/skills/speckit-workflow/SKILL.md

speckit-workflow

Comprehensive understanding of the spec-kit methodology. Constitution-driven feature development with specify, plan, tasks, and implement phases.

Source repository stars
432
Declared platforms
0
Static risk flags
0
Last source update
2026-07-23
Source checked
2026-08-04

Decision brief

What it does—and where it fits

The SpecKit methodology is a constitution-driven approach to feature development. It ensures consistency across features by grounding all decisions in project principles.

Best for

    Not for

    • Tasks that require unconfirmed production actions or broad system permissions.
    • Environments where the pinned source and install steps cannot be inspected.

    Compatibility matrix

    Platform support, with evidence labels

    PlatformStatusEvidenceWhat to check
    CodexNot declaredNo explicit evidencePortability before use
    Claude CodeNot declaredNo explicit evidencePortability before use
    CursorNot declaredNo explicit evidencePortability before use
    Gemini CLINot declaredNo explicit evidencePortability before use
    Open the compatibility checker

    Installation

    Inspect first. Install second.

    The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.

    Source-detected install commandSource
    npx skills add https://github.com/tzachbon/smart-ralph --skill "plugins/ralph-speckit/skills/speckit-workflow"
    Safe inspection promptEditorial

    Inspect the Agent Skill "speckit-workflow" from https://github.com/tzachbon/smart-ralph/blob/b26bb231606391ecf1e2a31ac4bbbf54c59b6429/plugins/ralph-speckit/skills/speckit-workflow/SKILL.md at commit b26bb231606391ecf1e2a31ac4bbbf54c59b6429. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.

    Workflow

    What the source asks the agent to do

    1. 01

      Workflow Phases

      Establish or update project-wide principles.

      Identity: Project name, purpose, core domainPrinciples: MUST/SHOULD/MAY rulesTechnology Stack: Languages, frameworks, tools
    2. 02

      Phase 1: Constitution (/speckit:constitution)

      Establish or update project-wide principles.

      Identity: Project name, purpose, core domainPrinciples: MUST/SHOULD/MAY rulesTechnology Stack: Languages, frameworks, tools
    3. 03

      Phase 2: Specify (/speckit:specify)

      Define the feature specification against constitution.

      Feature overview and goalsUser stories with acceptance criteriaConstitution alignment markers
    4. 04

      Phase 3: Clarify (/speckit:clarify) - Optional

      Resolve ambiguities through structured Q&A.

      Maximum 5 clarifying questions per sessionEach question has 2-4 options + "Other"Recommendations marked when applicable
    5. 05

      Phase 4: Plan (/speckit:plan)

      Generate technical design from specification.

      Architecture overviewComponent breakdownData flow diagrams

    Permission review

    Static risk signals and limitations

    No configured static risk pattern was detected

    This is not proof of safety. Runtime behavior, indirect dependencies, and hidden external systems are outside the static scan.

    Evidence record

    Why each signal appears

    EvidenceSourceComputedTestedEditorial
    SignalValueEvidence typeMeaning
    Quality score83/100ComputedDocumentation, specificity, maintenance, and trust rules
    Repository stars432SourceRepository attention, not individual Skill quality
    Compatibility0 platformsSourceDeclared in the catalog source record
    Usage guideautomated source guideEditorialGenerated or reviewed according to the visible evidence level

    Pinned source

    Provenance and original SKILL.md

    Repository
    tzachbon/smart-ralph
    Skill path
    plugins/ralph-speckit/skills/speckit-workflow/SKILL.md
    Commit
    b26bb231606391ecf1e2a31ac4bbbf54c59b6429
    License
    MIT
    Collected
    2026-08-04
    Default branch
    main
    View the original SKILL.md

    SpecKit Workflow

    The SpecKit methodology is a constitution-driven approach to feature development. It ensures consistency across features by grounding all decisions in project principles.

    Core Philosophy

    Constitution First: Every feature is designed against the project's constitution - a living document of principles, constraints, and standards.

    Governance Over Convention: Rather than implicit patterns, SpecKit makes governance explicit through:

    • Constitution principles (MUST, SHOULD, MAY)
    • Feature specifications tied to principles
    • Quality checklists as "unit tests for requirements"
    • Consistency analysis across artifacts

    Directory Structure

    .specify/
    ├── memory/
    │   └── constitution.md       # Project principles and standards
    ├── .current-feature          # Active feature pointer
    ├── templates/                # Artifact templates
    │   ├── spec-template.md
    │   ├── plan-template.md
    │   ├── tasks-template.md
    │   └── checklist-template.md
    └── specs/
        └── <id>-<name>/          # Feature directories
            ├── .speckit-state.json
            ├── .progress.md
            ├── .coordinator-prompt.md
            ├── spec.md           # Feature specification
            ├── plan.md           # Technical design
            ├── tasks.md          # Implementation tasks
            ├── research.md       # Research findings (optional)
            ├── data-model.md     # Entity definitions (optional)
            ├── contracts/        # API contracts (optional)
            └── checklists/       # Quality checklists
    

    Feature ID System

    Features use auto-incremented 3-digit IDs:

    • 001-user-auth
    • 002-payment-gateway
    • 003-notification-system

    Benefits:

    • Natural ordering in filesystem
    • Easy reference in commits/PRs
    • Prevents naming conflicts

    Workflow Phases

    Phase 1: Constitution (/speckit:constitution)

    Establish or update project-wide principles.

    Inputs: Project context, team preferences Outputs: .specify/memory/constitution.md

    Constitution sections:

    • Identity: Project name, purpose, core domain
    • Principles: MUST/SHOULD/MAY rules
    • Technology Stack: Languages, frameworks, tools
    • Patterns: Architecture, naming, error handling
    • Quality Standards: Testing, performance, security

    Phase 2: Specify (/speckit:specify)

    Define the feature specification against constitution.

    Inputs: Feature goal, constitution reference Outputs: spec.md

    Specification contains:

    • Feature overview and goals
    • User stories with acceptance criteria
    • Constitution alignment markers
    • Out of scope items
    • Dependencies and risks

    Phase 3: Clarify (/speckit:clarify) - Optional

    Resolve ambiguities through structured Q&A.

    Inputs: spec.md with ambiguities Outputs: Updated spec.md with clarifications

    Rules:

    • Maximum 5 clarifying questions per session
    • Each question has 2-4 options + "Other"
    • Recommendations marked when applicable
    • Clarifications appended to spec

    Phase 4: Plan (/speckit:plan)

    Generate technical design from specification.

    Inputs: spec.md, constitution, codebase context Outputs: plan.md, optionally data-model.md, contracts/

    Plan contains:

    • Architecture overview
    • Component breakdown
    • Data flow diagrams
    • API contracts
    • Integration points
    • Risk mitigation

    Phase 5: Tasks (/speckit:tasks)

    Break plan into dependency-ordered implementation tasks.

    Inputs: plan.md, spec.md Outputs: tasks.md

    Task format:

    - [ ] T001 [P] [US1] Task description `path/to/file.ts`
    

    Components:

    • T001: Sequential task ID
    • [P]: Parallel marker (optional)
    • [US1]: User story reference (optional)
    • Description with file path

    Task phases:

    1. Setup: Environment, dependencies, scaffolding
    2. Core: Main implementation tasks
    3. Integration: Connect components
    4. Polish: Error handling, edge cases
    5. Verification: Quality checkpoints

    Phase 6: Implement (/speckit:implement)

    Execute tasks via Ralph Wiggum loop.

    Inputs: tasks.md, state file Outputs: Code changes, commits, updated progress

    Execution model:

    • Coordinator reads state, delegates to executor
    • 4-layer verification before advancing
    • Parallel execution for [P] marked tasks
    • Fresh context per task

    State Management

    State File (.speckit-state.json)

    {
      "featureId": "001",
      "name": "user-auth",
      "basePath": ".specify/specs/001-user-auth",
      "phase": "execution",
      "taskIndex": 0,
      "totalTasks": 15,
      "taskIteration": 1,
      "maxTaskIterations": 5,
      "globalIteration": 1,
      "maxGlobalIterations": 100,
      "awaitingApproval": false
    }
    

    Progress File (.progress.md)

    Tracks:

    • Completed tasks with commit hashes
    • Learnings and context for future tasks
    • Blockers and resolutions
    • Cross-task dependencies

    Quality Assurance

    Checklists (/speckit:checklist)

    Domain-specific quality checklists:

    • UX checklist
    • API checklist
    • Security checklist
    • Performance checklist
    • Accessibility checklist

    Checklists are "unit tests for requirements" - verifiable criteria before implementation.

    Analyze (/speckit:analyze)

    Cross-artifact consistency analysis:

    • Spec ↔ Constitution alignment
    • Plan ↔ Spec coverage
    • Tasks ↔ Plan traceability
    • Identifies gaps, conflicts, ambiguities

    Command Reference

    CommandPurposePhase
    /speckit:start <name>Create or resume featureEntry
    /speckit:constitutionCreate/update project principles1
    /speckit:specifyDefine feature specification2
    /speckit:clarifyResolve spec ambiguities3
    /speckit:planGenerate technical design4
    /speckit:tasksBreak plan into tasks5
    /speckit:implementExecute tasks6
    /speckit:analyzeCheck consistencyAny
    /speckit:checklistGenerate quality checklistAny
    /speckit:statusShow current stateAny
    /speckit:switch <id>Change active featureAny
    /speckit:cancelStop execution, cleanupAny

    Agent Ecosystem

    AgentPurposeUsed By
    constitution-architectCreate/update constitutionconstitution
    spec-analystGenerate specificationsspecify
    plan-architectTechnical designplan
    task-plannerTask breakdowntasks
    spec-executorExecute single taskimplement
    qa-engineerVerification tasksimplement

    Constitution Integration

    All phases reference the constitution:

    1. Specify: Maps features to constitution principles
    2. Plan: Architecture follows constitution patterns
    3. Tasks: Quality checkpoints enforce constitution
    4. Implement: Executor validates against standards

    Constitution markers in artifacts:

    • [C§3.1]: References constitution section 3.1
    • [MUST]: Required by constitution
    • [SHOULD]: Recommended by constitution
    • [MAY]: Optional per constitution

    Best Practices

    Starting New Features

    1. Ensure constitution exists and is current
    2. Use descriptive feature names (kebab-case)
    3. Include clear success criteria in spec
    4. Reference related features if applicable

    During Implementation

    1. Follow task order (dependencies matter)
    2. Commit after each task
    3. Update progress with learnings
    4. Run verification checkpoints

    Maintaining Constitution

    1. Version constitution changes semantically
    2. Run sync impact analysis after updates
    3. Update affected features if needed
    4. Document rationale for changes

    Alternatives

    Compare before choosing

    Computed 10023,781

    alirezarezvani/claude-skills

    app-store-optimization

    App Store Optimization (ASO) toolkit for researching keywords, analyzing competitor rankings, generating metadata suggestions, and improving app visibility on Apple App Store and Google Play Store. Use when the user asks about ASO, app store rankings, app metadata, app titles and descriptions, app store listings, app visibility, or mobile app marketing on iOS or Android. Supports keyword research and scoring, competitor keyword analysis, metadata optimization, A/B test planning, launch checklist

    Computed 10014,225

    wanshuiyin/Auto-claude-code-research-in-sleep

    citation-audit

    Use it for operations and research tasks; the detail page covers purpose, installation, and practical steps.

    Computed 9832,606

    K-Dense-AI/scientific-agent-skills

    dask

    Distributed computing for larger-than-RAM pandas/NumPy workflows. Use when you need to scale existing pandas/NumPy code beyond memory or across clusters. Best for parallel file processing, distributed ML, integration with existing pandas code. For out-of-core analytics on single machine use vaex; for in-memory speed use polars.

    Computed 9832,606

    K-Dense-AI/scientific-agent-skills

    neurokit2

    Use NeuroKit2 to build or audit reproducible research workflows for physiological time-series preprocessing, event/interval analysis, multimodal alignment, variability, and complexity. Trigger when code imports neurokit2 or needs its current APIs, schemas, and method-aware validation—not for diagnosis or device validation.