Edit drafts into sharper, more human writing while preserving the writer's personal voice, or detect AI-slop patterns without rewriting. Use when the user wants a draft clearer, more direct, more opinionated, or less AI-sounding, or asks whether writing reads as AI.
Review a GitHub pull request with parallel specialized agents and post inline review comments rated by severity. Reviews the PR's changed lines and caps minor nitpicks; does not fix anything. Use when asked to review a PR or run /code-review.
Review a GitHub pull request with parallel specialized agents and post inline review comments rated by severity. Reviews the PR's changed lines and caps minor nitpicks; does not fix anything. Use when asked to review a PR or run /code-review.
Strictly review the branch's changes for reuse, simplification, abstraction quality, and maintainability, then fix the issues. An ambitious code-quality pass that hunts for structural simplifications (code-judo moves), giant files, and spaghetti-condition growth.
Run a large-scale, whole-repository refactor — code simplification, slop and code-smell removal, de-duplication, and cross-module consistency — with behavior preserved and uncertain changes escalated to the user. Use when asked to refactor the codebase, clean up at scale, or consolidate duplicated logic.
Run a large-scale, whole-repository refactor — code simplification, slop and code-smell removal, de-duplication, and cross-module consistency — with behavior preserved and uncertain changes escalated to the user. Use when asked to refactor the codebase, clean up at scale, or consolidate duplicated logic.
Common Python anti-patterns to avoid. Use as a checklist when reviewing code, before finalizing implementations, or when debugging issues that might stem from known bad practices.
Python background job patterns including task queues, workers, and event-driven architecture. Use when implementing async task processing, job queues, long-running operations, or decoupling work from request/response cycles.