code-review

Solid

Review code changes using context-aware multi-agent pipeline with severity-based findings. TRIGGER when: user asks to review code, analyze PR quality, check for issues, run code review, or audit changes (e.g., "코드 리뷰해줘", "review this PR", "코드 분석해줘", "리뷰 돌려줘"). DO NOT TRIGGER when: user is replying to review comments (use review-reply), creating PRs, committing, or performing git operations without review intent.

Code & Development 7 stars 0 forks Updated 3 days ago MIT

Install

View on GitHub

Quality Score: 81/100

Stars 20%
30
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

## Parse Arguments Parse `$ARGUMENTS` to determine the review mode and flags. ### Mode Detection | Priority | Mode | Condition | Description | |----------|------|-----------|-------------| | 1 | **PR Review (explicit)** | `$ARGUMENTS` contains a standalone numeric token (e.g., `42`) or `--pr <number>` | Review a specific PR's diff + commit context | | 2 | **Working Dir (forced)** | `--wd` flag is set | Force working directory review, even on a PR branch | | 3 | **Path Review** | `$ARGUMENTS` contains a file/directory path | Review code at the specified path | | 4 | **PR Review (auto)** | `$ARGUMENTS` is empty → auto-detect (see below) | Auto-detected PR on current branch | | 5 | **Working Dir** | `$ARGUMENTS` is empty and no PR detected | Review current working directory changes (staged + unstaged). If no changes, falls through to Path Review (cwd) | ### PR Auto-Detection When `$ARGUMENTS` is empty and `--wd` is not set, attempt to detect an open PR on the current branch: ``` gh pr list --head "$(git branch --show-current)" --author "@me" --state open --json number,title --jq '.[0]' ``` Key behaviors: - `--author "@me"` ensures only the current user's PRs are matched, skipping bot PRs (dependabot, renovate, etc.) - If a PR is found → enter **PR Review (auto)** mode with the detected PR number - If no PR is found (empty result, detached HEAD, or `main`/`master` branch) → fall through to **Working Dir** mode ### Context-Aware Scope Adjustment After resolving the initia...

Details

Author
chanmuzi
Repository
chanmuzi/git-claw
Created
5 months ago
Last Updated
3 days ago
Language
HTML
License
MIT

Bundled in these plugins

Similar Skills

Semantically similar based on skill content — not just same category

Code & Development Solid

review-reply

Review PR comments, discuss improvements, and reply with resolution status. TRIGGER when: user asks to review PR feedback, check review comments, address reviewer suggestions, or handle code review (e.g., "리뷰 확인해줘", "review comments", "피드백 반영해줘"). DO NOT TRIGGER when: user is creating PRs, committing, or performing git operations without review intent.

7 Updated 3 days ago
chanmuzi
Code & Development Solid

review

Multi-agent code review of GitHub Pull Requests (Python source, documentation (Markdown/RST), and CI/CD config PRs) covering architecture, tests, performance, docs, lint, security, and API design. TRIGGER when: user provides a GitHub PR number (e.g. 42, #42) and asks to review/audit/check it, or provides a saved review-report path with --reply to draft a contributor-facing comment; phrases: 'review PR 123', 'audit this pull request', 'look at PR #42', 'draft a reply for this review report'. SKIP: local file or current git diff review (use /develop:review (requires 'develop' plugin)); non-Python source PRs without Python files (TypeScript-only, Go-only, Rust-only); standalone issue/discussion thread analysis (use /oss:analyse).

23 Updated today
Borda
Code & Development Solid

review-github-pr

GitHub PR code review - fetches the diff, runs automated checks, launches 3 parallel review agents (correctness, convention compliance, efficiency) to analyze changes, validates findings against actual code, and drafts a GitHub review. Use when reviewing pull requests. Triggers on "review this PR", "review PR

31 Updated 3 days ago
tenequm