- Fix 12 command files: correct CLI arg syntax, script paths, and usage docs - Fix 3 agents with broken script/reference paths (cs-content-creator, cs-demand-gen-specialist, cs-financial-analyst) - Add complete YAML frontmatter to 5 agents (cs-growth-strategist, cs-engineering-lead, cs-senior-engineer, cs-financial-analyst, cs-quality-regulatory) - Fix cs-ceo-advisor related agent path - Update marketplace.json metadata counts (224 tools, 341 refs, 14 agents, 12 commands) Verified: all 19 scripts pass --help, all 14 agent paths resolve, mkdocs builds clean. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
43 lines
1.1 KiB
Markdown
43 lines
1.1 KiB
Markdown
---
|
|
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/scrum-master/scripts/retrospective_analyzer.py` — Retrospective analyzer (`<data_file> [--format text|json]`)
|
|
|
|
## Skill Reference
|
|
> `project-management/scrum-master/SKILL.md`
|