Help us improve
Share bugs, ideas, or general feedback.
Runs code quality checks via ./start.sh: type checking, linting, auto-fix. Use after code changes, before commits, or for quality review.
npx claudepluginhub GantisStorm/claude-code-repoprompt-codex-plugins --plugin repoprompt-pair-pipelineHow this skill is triggered — by the user, by Claude, or both
Slash command
/repoprompt-pair-pipeline:skills/code-qualityThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Run code quality checks after making code changes.
Runs deterministic Python quality checks: linting/formatting (ruff), type checking (ty), tests (pytest), policy validation, and pre-commit workflows. Reports grouped results by category.
Runs preflight code quality checks (linting, typechecking, tests) by auto-detecting configs in JavaScript/TypeScript, Python, Go, Rust, .NET projects and offers to fix issues.
Detects and runs linters, formatters, type checkers from configs before commits/PRs. Supports JS/TS, Python, Go, Rust; auto-fixes on staged files.
Share bugs, ideas, or general feedback.
Run code quality checks after making code changes.
# Full check (type checking + linting)
./start.sh check
# Type checking only
./start.sh typecheck
# Linting only
./start.sh lint
# Linting with auto-fix
./start.sh lint-fix
./start.sh check./start.sh lint-fix