AgentSkillsCN

sprint

完整管理冲刺周期。启动冲刺、追踪速度、生成燃尽图,并自动化开展回顾性分析。

SKILL.md
--- frontmatter
name: sprint
description: Complete sprint lifecycle management. Start sprints, track velocity, generate burndown charts, and automate retrospectives.

Sprint Management Skill

Complete agile sprint lifecycle management with Phase system integration.

Usage

bash
/sprint <command> [options]

Commands

CommandDescription
startStart a new sprint
statusShow current sprint status
endEnd sprint + generate retro
addAdd item to sprint
completeMark item as complete
velocityShow velocity history
burndownGenerate burndown chart

Sprint Lifecycle

code
/sprint start     /sprint status      /sprint end
     ↓                  ↓                   ↓
┌─────────┐      ┌───────────┐       ┌──────────┐
│ PLANNING│  →   │ IN PROGRESS│  →    │ COMPLETE │
│ • Goals │      │ • Daily   │       │ • Retro  │
│ • Items │      │ • Burndown│       │ • Velocity│
└─────────┘      └───────────┘       └──────────┘

Phase Integration

bash
/sprint start --phase 2       # Phase Task를 Sprint에 추가
/sprint complete T2-03         # Phase TASKS.md도 자동 ✅

상세: .codex/docs/SPRINT-PHASE-INTEGRATION.md

Configuration

json
{
  "sprint": {
    "default_duration": "2w",
    "point_scale": [1, 2, 3, 5, 8, 13],
    "auto_velocity_track": true,
    "burndown_chart": "ascii"
  }
}

Related Skills

SkillPurpose
/agile-syncFull agile artifact sync
/phasePhase management

Full implementation: Load references/DETAIL.md for command details, templates, file structure, integration patterns, and best practices.