skills/skill-retro/SKILL.md
--- name: skill-retro description: Retrospective on skills used in the current session — surfaces friction, proposes concrete edits to SKILL.md files, and commits improvements. Use when the user wants to evolve, improve, review, refine, or retro the skills they just ran. Also use proactively at the end of a multi-skill task. category: development argument-hint: [--skill <name>] [--apply] [--since <ref>] allowed-tools: Bash(git *) Bash(grep *) Bash(find *) Read Write Edit Glob Grep --- # Skill R
npx skillsauth add RonanCodes/ronan-skills skills/skill-retroInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Close the loop on skill usage. Walk back through what ran this session, surface friction, propose concrete edits, commit the improvements. Skills compound only if they get sharper with use.
/ro:skill-retro # review all skills used this session
/ro:skill-retro --skill new-tanstack-app # focus on one skill
/ro:skill-retro --apply # also apply the proposed edits (otherwise just draft)
/ro:skill-retro --since HEAD~20 # review skills referenced in last N commits
/ro:new-tanstack-app + /ro:cf-ship)Determine which skills touched this session. Sources in order:
/ro:<name> invocations or skills/<name>/SKILL.md reads--since <ref> is given: git log <ref>..HEAD --all -- skills/ to find skills referenced in commits--skill <name> is given: just that oneIf nothing is detectable, ask the user which skills to review.
Read the SKILL.md file. For each, answer:
wrangler was installed, or a .env variable was set)Capture findings in a structured report.
Output to stdout (not a file unless user asks):
## Skill Retro — <date>
### /ro:new-tanstack-app
- ✅ Worked end-to-end for connections-helper migration scaffold
- ⚠️ Friction: assumed `corepack enable` was already done; hit "pnpm not found" on first try
- 💡 Proposed edit: add explicit `command -v pnpm || corepack enable pnpm` check in step 1 before running `pnpm create`
- 📝 Diff sketch: [show the proposed change to SKILL.md]
### /ro:cf-ship
- ✅ Pre-flight caught a type error that would have shipped broken
- ⚠️ Smoke check hit a 500 but gave no hint about which binding was missing
- 💡 Proposed edit: on smoke-check failure, auto-run `wrangler tail` for 10s and surface the first error line
- 📝 Diff sketch: [...]
For each 💡, show the concrete SKILL.md edit inline so the user can accept or redirect. Keep edits small and focused — if a skill needs a major restructure, say so and stop there; don't rewrite without discussion.
--apply)If --apply was passed, apply the diffs via Edit tool, then:
cd /Users/ronan/Dev/ronan-skills # adjust if different
git add skills/<name>/SKILL.md
git commit -m "♻️ refactor: evolve <skill-name> — <what changed>"
Use /ro:commit for the commit if that skill is loaded (handles timestamp rules + emoji format). Otherwise inline the message in the emoji + conventional format.
Optionally bump a last-reviewed: YYYY-MM-DD field in the skill frontmatter to track which skills haven't been retro'd recently. If the field doesn't exist yet, add it.
| Signal during a task | What it likely means | Retro action | |---|---|---| | Agent asked the user a clarifying question | Skill missing a step or ambiguous | Add the step / clarify the flag | | Agent guessed at a value and was wrong | Skill assumes prior state | Add an explicit check or env-var fallback | | Same shell command fails repeatedly | Command drifted (tool update, deprecation) | Update the command | | User interrupted with "don't do X" | Anti-pattern surfaced | Add to Safety or Anti-Patterns section | | Skill did nothing useful, user did manually | Skill is obsolete or miscategorised | Delete or merge into another |
/ro:post-mortem — for bugs in the product, not the skill (different shape)/ro:create-skill — for brand-new skills surfaced by the retro as gaps/ro:commit — emoji-conventional commits for the retro changesdevelopment
--- name: worktree description: Coordinate multiple agents on one repo via a worktree-lock pool, so two agents never clobber each other's working tree. Acquire the first free slot (main, then beta/gamma… worktrees, created on demand), work there on your own branch, release when you've pushed. Use before modifying any repo that might be in use by another agent (factory, dataforce, etc.), or whenever you're told a repo is being worked on. Backed by `ro worktree`. category: development argument-hin
testing
--- name: ship description: Ship a feature branch the local-CI-first way — run the full local gate, push, open a PR, squash-merge, then deploy, without waiting on GitHub Actions. Use when a branch is ready for main and you want it merged and deployed now. Reads CI policy from `ro ci` (default skips remote CI because GitHub Actions billing keeps hitting limits). Sibling to /ro:gh-ship (waits on GitHub checks) and /ro:cf-ship (the deploy half). Triggers on "ship it", "ship this", "merge and deploy
testing
--- name: setup-logging description: Set up (or audit) the observability stack in a TanStack Start + Cloudflare Workers app so it is "diagnosable by default" — structured logging (logtape) with a request context carrying trace_id + userId + tenant/orgId, a trace_id propagated FE→BE→logs→Sentry→PostHog, Cloudflare Workers observability enabled, and Sentry + PostHog wired. Two modes: `setup` (wire it into an app) and `audit` (check an existing app + report gaps). Use when scaffolding a new app, wh
development
Manage credentials INSIDE the active ~/.claude/.env file — read which token/account to use for a given app (Simplicity vs Dataforce vs Ronan-personal), add or update a secret WITHOUT it passing through the chat (an interactive Terminal window prompts for it), and track secrets that were exposed in a transcript so they get rotated. Sibling to /ro:context (which switches WHICH env file is active). Use when the user wants to add an API key/token/secret, asks "which credential do I use for X", needs the env organized/labelled, or a secret was pasted into the chat and should be rotated.