diff --git a/skills/in-progress/README.md b/skills/in-progress/README.md index 65b4524..ee394b7 100644 --- a/skills/in-progress/README.md +++ b/skills/in-progress/README.md @@ -15,3 +15,4 @@ npx skills@latest add mattpocock/skills --skill= - **[claude-handoff](./claude-handoff/SKILL.md)**: Hand the current conversation off to a fresh background agent that picks up the work immediately, seeded with a handoff summary via `claude --bg`. User-invoked. - **[setup-ts-deep-modules](./setup-ts-deep-modules/SKILL.md)**: Wire dependency-cruiser into a TypeScript repo so each package is a deep module: implementation hidden in subfolders, reachable only through its entry-point files, tests exercising it through those. User-invoked. - **[implement-spec](./implement-spec/SKILL.md)**: Implement a whole spec on one branch. Works the tickets as a task graph rather than a list, running implementer subagents across the ready frontier for maximum concurrency, and lands the result as a single PR. User-invoked. +- **[retro](./retro/SKILL.md)**: Suggest improvements to the coding agent's environment (steering files, coding standards, automated checks, tooling) after a session. STUB: design notes only, not functional yet. User-invoked. diff --git a/skills/in-progress/retro/SKILL.md b/skills/in-progress/retro/SKILL.md index d0733cd..fc020ea 100644 --- a/skills/in-progress/retro/SKILL.md +++ b/skills/in-progress/retro/SKILL.md @@ -1,6 +1,6 @@ --- name: retro -description: "STUB — not functional. Raw design ideas for a retrospective skill, awaiting a /writing-for-agents pass." +description: "Conduct a retrospective on a coding session." disable-model-invocation: true --- diff --git a/skills/in-progress/retro/agents/openai.yaml b/skills/in-progress/retro/agents/openai.yaml index be605ed..a2f0bac 100644 --- a/skills/in-progress/retro/agents/openai.yaml +++ b/skills/in-progress/retro/agents/openai.yaml @@ -1,5 +1,5 @@ interface: - display_name: "Retro (stub)" - short_description: "Not functional yet — design ideas only" + display_name: "Retro" + short_description: "Conduct a retrospective on a coding session." policy: allow_implicit_invocation: false