- Add CSS components: .page-meta badges, .domain-header, .install-banner - Fix invisible tab navigation (explicit color for light/dark modes) - Rewrite generate-docs.py with design system templates - Domain indexes: centered headers with icons, install banners, grid cards - Skill pages: pill badges (domain, skill ID, source), install commands - Agent/command pages: type badges with domain icons - Regenerate all 210 pages (180 skills + 15 agents + 15 commands) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
49 lines
1.3 KiB
Markdown
49 lines
1.3 KiB
Markdown
---
|
|
title: "/retro"
|
|
description: "/retro — Claude Code slash command."
|
|
---
|
|
|
|
# /retro
|
|
|
|
<div class="page-meta" markdown>
|
|
<span class="meta-badge">:material-console: Slash Command</span>
|
|
<span class="meta-badge">:material-github: <a href="https://github.com/alirezarezvani/claude-skills/tree/main/commands/retro.md">Source</a></span>
|
|
</div>
|
|
|
|
|
|
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`
|