Back to list
Mission42-ai

orchestrating-sprints

by Mission42-ai

Claude Code plugins for modular development workflows: planning, sprint orchestration, and task execution

0🍴 0📅 Jan 21, 2026

SKILL.md


name: orchestrating-sprints description: Manages development sprints with workflow-based compilation and fresh-context execution. Supports hierarchical phases (prepare → development → QA → deploy) with for-each step expansion. This skill should be used when starting sprints, managing workflows, or tracking sprint progress. Triggers on "start sprint", "create sprint", "run sprint", "sprint status", "add step", "compile sprint".

Sprint Orchestration

Manages development sprints through workflow-based compilation with hierarchical phase execution and fresh-context task processing.

Core Concepts

ConceptDefinition
WorkflowReusable phase template in .claude/workflows/
SPRINT.yamlSprint input: workflow reference + steps
PROGRESS.yamlCompiled execution tree (generated)
Ralph LoopFresh context per task via claude -p
Ralph ModeAutonomous goal-driven workflow with dynamic steps

Sprint Structure

.claude/
  workflows/          # Reusable workflow templates
    sprint-default.yaml
    feature-standard.yaml
  sprints/
    YYYY-MM-DD_name/
      SPRINT.yaml     # Input (workflow reference + steps)
      PROGRESS.yaml   # Compiled (generated by compiler)
      context/
      artifacts/

Workflow Architecture

┌─────────────────┐     ┌──────────────┐     ┌─────────────────┐
│  SPRINT.yaml    │     │   Compiler   │     │  PROGRESS.yaml  │
│                 │────▶│              │────▶│                 │
│  - workflow-ref │     │  - Resolves  │     │  - Phases       │
│  - steps[]      │     │    workflow  │     │    └─ Tasks[]   │
│                 │     │  - Expands   │     │  - Status tree  │
│                 │     │    for-each  │     │                 │
└─────────────────┘     └──────────────┘     └─────────────────┘

Commands

CommandAction
start-sprint <name>Initialize sprint directory
add-step <prompt>Add step to SPRINT.yaml
import-stepsBulk import steps
run-sprintCompile and execute sprint
sprint-statusShow hierarchical progress
pause-sprintPause after current phase
resume-sprintResume paused sprint
stop-sprintForce stop
helpShow plugin help

Compilation Process

Compilation occurs automatically on /run-sprint:

  1. Read SPRINT.yaml (workflow reference + steps)
  2. Resolve workflow template from .claude/workflows/
  3. Expand for-each phases into task hierarchy
  4. Generate PROGRESS.yaml with full execution tree
# SPRINT.yaml (input)
workflow: sprint-default
steps:
  - implement auth module
  - add unit tests for auth
  - update API documentation

# PROGRESS.yaml (compiled output)
status: pending
phases:
  - name: prepare
    status: pending
    tasks: [...]
  - name: development
    status: pending
    tasks:
      - id: task-001
        prompt: implement auth module
        status: pending
      - id: task-002
        prompt: add unit tests for auth
        status: pending
  - name: qa
    status: pending
    tasks: [...]

Workflow Modes

The sprint system supports two workflow modes:

ModeDescriptionUse Case
StandardPhase-based execution with predefined stepsKnown task sequences
Ralph ModeAutonomous goal-driven with dynamic stepsOpen-ended goals

Ralph Mode workflows use mode: ralph and allow Claude to create steps dynamically. See docs/concepts/ralph-mode.md for details.

References

  • references/workflow-definitions.md - Workflow template syntax and structure
  • references/progress-schema.md - PROGRESS.yaml schema specification (includes Ralph Mode fields)
  • references/compiler-usage.md - Compiler invocation and options
  • references/sprint-setup.md - Directory structure and initialization
  • docs/concepts/ralph-mode.md - Ralph Mode autonomous workflow documentation

Assets

  • assets/sprint-template.yaml - SPRINT.yaml template
  • assets/progress-template.yaml - PROGRESS.yaml template
  • assets/workflow-template.yaml - Workflow definition template

Troubleshooting

IssueCauseResolution
Compilation failsInvalid workflowCheck references/workflow-definitions.md
Workflow not foundMissing .claude/workflows/Create directory with workflows
Step not expandingMissing for-eachVerify phase has for-each: step
Loop exits earlyPROGRESS.yaml statusCheck status field

Score

Total Score

60/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

+10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

Reviews

💬

Reviews coming soon