feat: update retro skill description and add to README

This commit is contained in:
Matt Pocock
2026-08-24 15:18:22 +01:00
parent 8fa188659c
commit 3ec8e23994
3 changed files with 4 additions and 3 deletions
+1
View File
@@ -15,3 +15,4 @@ npx skills@latest add mattpocock/skills --skill=<name>
- **[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. - **[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. - **[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. - **[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.
+1 -1
View File
@@ -1,6 +1,6 @@
--- ---
name: retro 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 disable-model-invocation: true
--- ---
+2 -2
View File
@@ -1,5 +1,5 @@
interface: interface:
display_name: "Retro (stub)" display_name: "Retro"
short_description: "Not functional yet — design ideas only" short_description: "Conduct a retrospective on a coding session."
policy: policy:
allow_implicit_invocation: false allow_implicit_invocation: false