원클릭으로
local-review
Code reviews of git changes without creating actual PR.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Code reviews of git changes without creating actual PR.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Execute git commit with conventional commit message analysis, intelligent staging, and message generation. Use whenever commiting changes to git.
Create thorough implementation plans for complex tasks.
Creates non-technical changelogs from git commits.
Rewrite user requests into clear, precise, and complete AI prompts. Use when a user asks to create, convert, or refine a prompt, or to restate a request as a specification for an AI model.
Create clear, concise technical documentation for a specified file, module, or folder.
Generate pull request summaries and open GitHub PRs from the current branch’s git changes.
| name | local-review |
| description | Code reviews of git changes without creating actual PR. |
Orchestrate a local code review by collecting diffs and producing a structured review with clear priorities and fixes. Keep everything self-contained in this skill file.
.agent.local/reviews/{dd-mm-yyyy}-{branch-name}.mdmain...HEAD (fall back to origin/main...HEAD if needed).HEAD~N..HEAD with recent log context.Uncommitted changes (unstaged + staged):
git status -sbgit diffgit diff --cachedAgainst main:
git diff main...HEADmain is missing locally: git diff origin/main...HEADgit log --oneline main..HEADLast N commits:
git log -n <N> --onelinegit diff HEAD~<N>..HEAD.agent.local/reviews if missing.git rev-parse --abbrev-ref HEAD, replacing / with - in the filename.CLAUDE.md or AGENTS.md files and quotes when applicable.For each issue:
[CRITICAL] Hardcoded API key
File: src/api/client.ts:42
Issue: API key exposed in source code
Fix: Move to environment variable
const apiKey = "sk-abc123"; // ❌ Bad
const apiKey = process.env.API_KEY; // ✓ Good