/eng catchupDaily loop
Get back up to speed after a /clear, a pull, or a day away — reads what changed so you don't re-explain.
/eng commitDaily loop
Commit your staged work with a clean conventional message — refuses if tests fail or secrets are in the diff.
/eng debugQuality
Find the actual root cause before touching code — evidence, ranked hypotheses, minimal fix, regression test.
/eng docsContext
Sync README, API docs, and changelog with what the code actually does now — driven by the real diff.
/eng fix-ciQuality
Pull the failing CI logs, find the real failure, fix it, push, and watch until the checks go green.
/eng fix-issueLeverage
Take a GitHub issue from number to merged-ready PR: reproduce, fix at the root, test, ship.
/eng handoffDaily loop
Write a continuation file before you stop — the next session (you or a teammate) picks up without re-explaining.
/eng hooksContext
Interview you about what keeps going wrong, then install hooks that make it impossible — not just discouraged.
/eng interviewContext
Get interviewed about what you want to build until the requirements are nailed, then get a complete SPEC.md.
/eng learnContext
Turn a mistake or correction into a CLAUDE.md guardrail so it never happens twice — the compounding move.
/eng migrateLeverage
Run a mechanical migration safely: prove the transform on 2–3 files first, then fan out batch by verified batch.
/eng onboardContext
Map an unfamiliar codebase — stack, entry points, how to run it — into a docs/MAP.md you reuse every session.
/eng planDaily loop
Explore the code, propose an approach with file list and risks — and wait for your go before touching anything.
/eng pr-reviewQuality
Review someone else's PR: pull it, run it, structured findings with file:line — ready to paste or post.
/eng refactorLeverage
Restructure code safely — characterization tests first, one concern per step, suite green between every step.
/eng releaseLeverage
Cut a release: version bump, changelog from merged PRs, tag, and publishable release notes — all verified.
/eng reviewQuality
Fresh-context review of your diff — flags only what would block a merge, with a confidence level per finding.
/eng securityQuality
Security scan of your diff — injection, auth gaps, secrets, SSRF — each finding with severity and the fix.
/eng shipDaily loop
Commit, push, and open a PR with a description generated from the actual diff — one command, branch to PR.
/eng simplifyQuality
Strip the over-engineering out of a change — dead abstractions, premature generality, code that does nothing.
/eng specContext
Turn SPEC.md into phased, verifiable tasks — each phase ends with a check that proves it landed.
/eng tddQuality
Build a feature test-first: failing test shown red, minimal code to green, refactor only on green.
/eng test-gapsQuality
Find the tests that can't fail and the cases nobody tests — silent failures, mock-heavy lies, missing edges.
/eng verifyDaily loop
Actually run it — tests, build, the app itself — and show the output proving the change works.
/eng worktreeLeverage
Spin up a git worktree with its own branch so a second task runs in parallel without touching this one.