rrr
GLM-5 코드 리뷰. /rr의 상위 버전으로 더 강한 모델로 변경사항을 검토하고, Codex가 결과를 다시 검증해 유효한 이슈만 정리한다.
git clone --depth 1 https://github.com/dgk-dev/dgk-gpt /tmp/rrr && cp -r /tmp/rrr/skills/rrr ~/.claude/skills/rrrSKILL.md
# /rrr Use `glm-review --model glm-5` as the deeper paid review pass, then validate the results against the code before you trust them. ## Default Flow 1. Determine the exact review scope first. - commit hash known -> commit mode - `staged` -> staged mode - `pr` -> PR mode - mixed unrelated local changes -> focused diff file 2. Run a health check only when auth or connectivity looks questionable: ```bash glm-review --model glm-5 --health ``` 3. Run the review with the smallest correct input: ```bash glm-review --model glm-5 glm-review --model glm-5 --mode staged glm-review --model glm-5 --mode pr glm-review --model glm-5 --mode commit --ref <COMMIT_HASH> glm-review --model glm-5 --diff-file /tmp/glm-review-diff.patch ``` 4. Verify every reported issue in the actual code and diff. 5. Keep only confirmed issues. 6. If fixes are requested or clearly in scope, apply them and rerun the closest verification. ## Choosing Review Input - committed single change: ```bash glm-review --model glm-5 --mode commit --ref <COMMIT_HASH> ``` - committed subset of files: ```bash glm-review --model glm-5 --mode commit --ref <COMMIT_HASH> --files src/a.ts src/b.ts ``` - custom focused diff: ```bash GIT_ROOT=$(git rev-parse --show-toplevel) cd "$GIT_ROOT" && git diff HEAD -- <file1> <file2> ... > /tmp/glm-review-diff.patch glm-review --model glm-5 --diff-file /tmp/glm-review-diff.patch ``` If the diff is empty, stop and say there is nothing to review. ## Validation Rules - `glm-review` is a reviewer, not an oracle. - Re-check referenced code paths before reporting a bug. - Separate confirmed defects from debatable style feedback. - If a finding depends on broader context, inspect the relevant surrounding code before accepting it. ## Error Handling - `command not found: glm-review` Install it with `npm install -g glm-review` - `ZAI_API_KEY not set` Export `ZAI_API_KEY` in the shell or your normal secret-loading path - auth or API failure Re-run `glm-review --model glm-5 --health` after refreshing credentials ## Finish Return: - review scope used - confirmed findings only - notable false positives filtered out - what verification ran after fixes, if any
Local verify-commit-push wrapper for Codex. Use only when the user explicitly says `/cp` or clearly asks to finish the current work by running the relevant local checks, staging intended files explicitly, committing on the current branch, and pushing. This workflow may commit directly to `main` or `master` when that is the repo's chosen operating model.
Frontend design mode for strong visual direction, UI polish, redesigns, landing pages, and production-grade interface work, including shadcn-based surfaces. Use when the user says `/fd` or explicitly asks for better design, styling, layout, visual quality, or UX polish.
Persistent completion mode. Use when the user explicitly says `/ralph` or clearly wants you to keep iterating until the task is actually finished, repeating implement-verify-fix loops instead of stopping at partial progress.
Explicit extra-research mode. Use only when the user says `/re` or clearly asks for a research-heavy pass before coding. This skill should bias Codex toward more source-checking and justification without replacing its normal orchestration.
코드 리뷰. 작업 후 변경사항을 Z.AI 모델로 검토하고, Codex가 결과를 다시 검증해 유효한 이슈만 정리한다. /rr 또는 'GLM 리뷰' 요청 시 사용.