with one click
local-review
Code reviews of git changes without creating actual PR.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Code reviews of git changes without creating actual PR.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
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