mirror of
https://github.com/alirezarezvani/claude-skills.git
synced 2026-09-07 08:26:02 +00:00
- Resolve conflicts: keep redesigned skills index, take dev's cs-aeo link fix, union of DOMAIN_SEO_CONTEXT entries in generate-docs.py - Regenerate catalog on the merged tree (dev's agent/command description updates, removed ai-seo/release-manager/command-guide, restructured universal-scraping-architect) - Update counters to post-merge truth from scripts/derive_counters.py: 345 skills, 78 plugins (14 bundles + 64 standalone), 570+ Python tools - Add redirects for upstream-removed pages (ai-seo -> aeo, release-manager -> changelog-generator, command-guide -> engineering index) - Add compliance-os bundle to bundle tables; rebuild 78-plugin table from marketplace.json - Teach the generator to rewrite repo-root-relative source links to GitHub URLs — mkdocs build --strict now passes with zero warnings https://claude.ai/code/session_015bYZ97nV4oRb3LbxCRFVcP
1.4 KiB
1.4 KiB
| title | description |
|---|---|
| /retro — Slash Command for AI Coding Agents | Analyze sprint retrospectives for patterns and action item tracking. Usage: /retro analyze <retro_data.json>. Slash command for Claude Code, Codex CLI, Gemini CLI. |
/retro
:material-console: Slash Command
:material-github: Source
Analyze retrospective data for recurring themes, sentiment trends, and action item effectiveness.
Usage
/retro analyze <retro_data.json> Full retrospective analysis
Input Format
{
"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])
Skill Reference
project-management/skills/scrum-master/SKILL.md