Command
Review all changes on the current branch against the team's coding standards defined in .claude/rules/ (already loaded into this conversation). This is meant to run BEFORE creating a PR to catch issues before reviewers do.
Software engineering standards for humans and AI coding assistants. 80+ guides covering architecture, testing, CI/CD, security, and code style — auto-generated into rule files for Claude Code, Cursor, Copilot, and Codex.
Command
Review all changes on the current branch against the team's coding standards defined in .claude/rules/ (already loaded into this conversation). This is meant to run BEFORE creating a PR to catch issues before reviewers do.
Command
Detect the current branch's pull request, retrieve its failing CI workflow logs, fix the root causes, commit, and push. This command auto-detects the PR from the current Git branch, fetches check run statuses, downloads failure logs, classifies each failure, implements fixes, and pushes a single commit.
Command
Fix all guardrail findings (make lint, make test, make sast) across one or more repositories. This command is a complete, repeatable workflow: sync with main, run all guardrails, fix every finding, update documentation, commit following standards, push, and create PRs.
Command
Detect the current branch's pull request and resolve its unresolved review comments. This command auto-detects the PR from the current Git branch, fetches unresolved review threads via GraphQL, classifies each comment, implements valid changes, replies with explanations, pushes, and resolves addressed threads.
Command
Scaffold a new frontend project following the 5-layer Clean Architecture (Domain, Service, Infrastructure, Presentation, Main).
Command
Scaffold a new Go backend project following Clean Architecture with domain/infrastructure separation, Dig DI, testify testing, and standard naming conventions.
Command
Scaffold a new Python package following PEP 621, PDM, Black/isort/Flake8, type hints, and Loguru logging.
Command
Sync all git repositories found recursively under the current directory (or a given path). For each repo discovered via find -name .git -type d.