بنقرة واحدة
local-code-review
Review local code changes for correctness, regressions, missing tests, and Databao-specific risks.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Review local code changes for correctness, regressions, missing tests, and Databao-specific risks.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
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.