/ skills
Agent skills for coding agents — Claude Code, Cursor, Codex, anything that reads a SKILL.md. Focused on keeping codebases clean when agents do the writing.
/ ci-first-verification →
This machine runs many coding agents concurrently — local compute is a shared, scarce resource. Prefer reading CI results on the GitHub PR over running builds, test suites, typechecks, or lint locally. Use before running any heavy local process (build, test, lint, typecheck, install), when verifying whether changes pass, or whenever working alongside other agents on the same machine.
/ docstring-cleanup →
Clean up feature-coupled docstrings and comments after working on a feature or PR. Docstrings must describe code generically, as it exists — never reference the feature, PR, ticket, or change that introduced them. Use when the user asks to clean up docstrings/comments, review a diff for comment hygiene, or after completing feature work before raising a PR. Also use proactively as a final pass on any branch with new docstrings.
/ walkthrough-pr →
Walk a user through a PR's changes one file at a time, pausing for confirmation after each. Use when the user wants to review, understand, or be walked through a pull request or diff file-by-file, or says "walk me through this PR".