Command
/retro
Analyze sprint retrospectives for patterns and action item tracking. Usage: /retro analyze <retro_data.json>
One command from claude-skills.
shell
$ npx -y skills add alirezarezvani/claude-skills --agent claude-codeShips with claude-skills. Installing the plugin gets this command.
How it fires
How this command gets triggered: by you, by Claude, or both.
- Fires itselfClaude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/retro
Context preview
What this command does when you run it.
Analyze sprint retrospectives for patterns and action item tracking. Usage: /retro analyze <retro_data.json>
Stats
Stars23,056
Forks3,139
LanguagePython
LicenseMIT
Ships with claude-skills
Command definition
retro.md
--- name: retro description: "Analyze sprint retrospectives for patterns and action item tracking. Usage: /retro analyze <retro_data.json>" --- # /retro Analyze retrospective data for recurring themes, sentiment trends, and action item effectiveness. ## Usage ``` /retro analyze <retro_data.json> Full retrospective analysis ``` ## Input Format ```json { "sprint_name": "Sprint 24", "went_well": ["CI pipeline improvements", "Pair programming sessions"], "improvements": ["Too many meetings", "Flaky integration tests"], "action_items": [ {"description": "Reduce standup to 10 min", "owner": "SM", "status": "done"}, {"description": "Fix flaky tests", "owner": "QA Lead", "status": "in_progress"} ], "participants": 8 } ``` ## Examples ``` /retro analyze sprint-24-retro.json /retro analyze sprint-24-retro.json --format json ``` ## Scripts - `project-management/skills/scrum-master/scripts/retrospective_analyzer.py` — Retrospective analyzer (`<data_file> [--format text|json]`)
