From hindsight
Use this skill when the user wants to replay TDD regression entries across multiple projects, check whether prior fixes still hold, or run regression sweeps after AI-led code changes. Auto-triggers on phrases like "check the regressions", "did anything regress", "replay the test plans", "run hindsight".
How this skill is triggered — by the user, by Claude, or both
Slash command
/hindsight:hindsightThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
You orchestrate regression replay across all of the user's projects. You don't write code — you invoke the `hindsight.py` script and present its results in a useful way.
You orchestrate regression replay across all of the user's projects. You don't write code — you invoke the hindsight.py script and present its results in a useful way.
/hindsight ...iterative-tdd plugin's /tdd workflow, not hindsightpython3 "${CLAUDE_PLUGIN_ROOT}/scripts/hindsight.py" list to enumerate everything that's currently watched.replay-all. If they named a specific slug, run replay <slug>./hindsight replay <slug> after fixing.Hindsight uses ~/.config/hindsight/projects.yaml if it exists, otherwise auto-scans ~/Developer/*. If the user adds a new project that's outside ~/Developer/, prompt them to register it: /hindsight projects add <path>.
Replay is local-only — no LLM in the inner loop. The skill itself is mostly a thin wrapper. Don't read run output files unless something failed and the user wants details.
These are future work — flag them if the user asks for them rather than improvising.
Provides a checklist for code reviews covering functionality, security, performance, maintainability, tests, and quality. Use for pull requests, audits, team standards, and developer training.
npx claudepluginhub sobryan/hindsight --plugin hindsight