← スキル一覧に戻る

orchestrating-sprints
by Mission42-ai
Claude Code plugins for modular development workflows: planning, sprint orchestration, and task execution
⭐ 0🍴 0📅 2026年1月21日
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
| Concept | Definition |
|---|---|
| Workflow | Reusable phase template in .claude/workflows/ |
| SPRINT.yaml | Sprint input: workflow reference + steps |
| PROGRESS.yaml | Compiled execution tree (generated) |
| Ralph Loop | Fresh context per task via claude -p |
| Ralph Mode | Autonomous 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
| Command | Action |
|---|---|
start-sprint <name> | Initialize sprint directory |
add-step <prompt> | Add step to SPRINT.yaml |
import-steps | Bulk import steps |
run-sprint | Compile and execute sprint |
sprint-status | Show hierarchical progress |
pause-sprint | Pause after current phase |
resume-sprint | Resume paused sprint |
stop-sprint | Force stop |
help | Show plugin help |
Compilation Process
Compilation occurs automatically on /run-sprint:
- Read SPRINT.yaml (workflow reference + steps)
- Resolve workflow template from
.claude/workflows/ - Expand for-each phases into task hierarchy
- 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:
| Mode | Description | Use Case |
|---|---|---|
| Standard | Phase-based execution with predefined steps | Known task sequences |
| Ralph Mode | Autonomous goal-driven with dynamic steps | Open-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 structurereferences/progress-schema.md- PROGRESS.yaml schema specification (includes Ralph Mode fields)references/compiler-usage.md- Compiler invocation and optionsreferences/sprint-setup.md- Directory structure and initializationdocs/concepts/ralph-mode.md- Ralph Mode autonomous workflow documentation
Assets
assets/sprint-template.yaml- SPRINT.yaml templateassets/progress-template.yaml- PROGRESS.yaml templateassets/workflow-template.yaml- Workflow definition template
Troubleshooting
| Issue | Cause | Resolution |
|---|---|---|
| Compilation fails | Invalid workflow | Check references/workflow-definitions.md |
| Workflow not found | Missing .claude/workflows/ | Create directory with workflows |
| Step not expanding | Missing for-each | Verify phase has for-each: step |
| Loop exits early | PROGRESS.yaml status | Check status field |
スコア
総合スコア
60/100
リポジトリの品質指標に基づく評価
✓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
レビュー
💬
レビュー機能は近日公開予定です