Skill Claude CodeCodex
Apply all applicable cadence rules to the current file or staged diff and report findings.
Skill Claude CodeCodex
Apply all applicable cadence rules to the current file or staged diff and report findings.
Skill Claude CodeCodex
Self-review the staged diff like a stranger, with quoted evidence. Surfaces scope drift and weak claims.
Skill Claude CodeCodex
Gauge task scope and dependencies, then route to the right subagents and commands — serial or parallel.
Skill Claude CodeCodex
Post-parallel integration pass — survey combined diff, resolve wiring, run fresh checks.
Skill Claude CodeCodex
Root-cause a bug or unexpected behavior without patching. Ranks hypotheses, returns evidence, no file edits.
Skill Claude CodeCodex
Babysit PR #N until it settles — green required CI and actionable review addressed; ongoing loop, not a single pass.
Skill Claude CodeCodex
User-invoked only — partition multi-scope work, lock decisions in the parent, fan out subagents, then integrate on return.
Skill Claude CodeCodex
Decompose the current task into independently verifiable steps with per-step checks.
Skill Claude CodeCodex
Review the latest learnings entry against promotion gates and draft a rule diff for approval — no writes without go.
Skill Claude CodeCodex
Surface 1–3 options before any change. For design, product, or architecture decisions where you want choices, not work.
Skill Claude CodeCodex
Capture one durable lesson from the session into a learnings log.
Skill Claude CodeCodex
Walk the clean-commits → lint/typecheck → verify → commit sequence. Refuses unrelated files.
Skill Claude CodeCodex
User-invoked explicit compression only — analogy-first, 150 words, no code or options. Valid when the user ran /tldr or used explicit compression phrases this turn.
Skill Claude CodeCodex
Run runtime verification (browser, tests, manual) on the current change before claiming done.
Skill Claude CodeCodex
Mine recent chats for durable preferences and propose Cadence artifacts (rules, skills, commands, or subagents).
Skill Claude CodeCodex
Use after shipping a change, fixing a non-trivial bug, or finishing a debugging session — name one durable lesson the next session would benefit from knowing.
Skill Claude CodeCodex
Use when adding server-state queries or mutations (TanStack Query, SWR, RTK Query, Apollo) — define options in a centralized factory module; do not write inline keys at call sites.
Skill Claude CodeCodex
Use when committing or pushing — keep diffs surgical, exclude unrelated changes, and verify the local branch matches the named target before pushing.
Skill Claude CodeCodex
Use when renaming, moving, or restructuring code — update every call site, test, fixture, and reference in the same change; no compat aliases or follow-up TODOs.
Skill Claude CodeCodex
Use when a subtask is self-contained or parallelizable — delegate it to a fresh subagent with a precise brief instead of dragging conversation context forward.
Skill Claude CodeCodex
Use when making backend schema changes — generate the migration but stop short of applying it against any shared or production database.
Skill Claude CodeCodex
Use when the user explicitly asks for compression — ELI5, "explain like I'm 5", "explain like I'm five", "in 10 seconds", "10 seconds to live", "die in 10", /tldr, or follow-up "in similar fashion" after they already invoked compression — a short analogy-first answer, not ranked options or an approval gate.
Skill Claude CodeCodex
Use when typing data-shaped TypeScript fields or props — prefer T | undefined over field?: T so callers must reason about the missing case.
Skill Claude CodeCodex
Use when placing new modules, components, hooks, or helpers — default to the feature folder that uses them; promote to shared only when a concrete second user exists.