원클릭으로
local-code-review
// Review local code changes for correctness, regressions, missing tests, and Databao-specific risks.
// Review local code changes for correctness, regressions, missing tests, and Databao-specific risks.
Run the full development pipeline autonomously without pausing between phases. Stops only on quality-gate failures.
Run test coverage measurement, analyze results, and fix gaps when coverage falls below the 80% threshold.
Fetch unresolved PR review threads, triage them, implement fixes, validate, reply in-thread, and resolve.
Stage, commit, push, and open a GitHub PR following project conventions. Use when code is ready to ship.
Run structured evaluations on skills to measure quality and track improvements.
Ensure a YouTrack issue exists before starting work. Validates existing tickets or creates new ones.
| name | local-code-review |
| description | Review local code changes for correctness, regressions, missing tests, and Databao-specific risks. |
| argument-hint | [scope: staged | branch | files:<path>] |
| context | fork |
| agent | reviewer |
You are reviewing code changes for Databao CLI with NO prior context.
Review scope: $ARGUMENTS (default: branch)
staged -- git diff --cachedbranch -- diff against mainfiles:<path> -- specific files/directoriesRun git status --short, then inspect the relevant diff. Read diffs before
reading large surrounding files.
Pay extra attention when changes touch:
Run non-mutating checks only:
uv run pytest <targeted paths> or full suite if practicaluv run ruff check <paths>, uv run ruff format --check <paths>uv run mypy <paths>, uv lock --checkNever run --fix or mutating formatters in review mode.
Order by severity. Each finding:
Then: open questions, testing gaps, validation performed.
No findings? Say so, mention residual risk or untested surface.