スキル一覧に戻る
leighmcculloch

review

by leighmcculloch

1🍴 0📅 2026年1月25日
GitHubで見るManusで実行

SKILL.md


name: review description: Code review using multiple AI models concurrently

Code Review

Performs code reviews using subagents with multiple models running concurrently.

Execution

IMPORTANT: Do NOT perform workflow steps directly. You MUST delegate ALL steps to subagents as specified below.

Phase 1: Setup (via @general)

Launch @general subagent to perform steps 1-2:

  • Determine what to review based on user request
  • Get the diff/content
  • Return the diff content back to you

Phase 2: Concurrent Reviews (via @general-opus, @general-codex, @general-gemini)

Launch ALL THREE review agents in parallel, passing them the diff from Phase 1.

Phase 3: Synthesis (via @general)

Launch @general subagent to perform steps 5-6:

  • Synthesize the reviews
  • Post PR comments if requested

Workflow Details

1. Determine What to Review

Based on user request:

User SaysAction
"review this PR" / "review PR #123"Get PR diff with gh pr diff
"review my changes" / "review staged"Get staged diff with git diff --staged
"review "Read the specific file(s)
No specific requestAsk user what to review

2. Get the Diff/Content

For staged changes:

git diff --staged

For PR (current branch):

gh pr diff

For specific PR:

gh pr diff <number>

3. Run Reviews Concurrently

Launch ALL THREE agents in parallel with the prompt:

You are a senior code reviewer. Review the following git diff for:

  • Code quality issues
  • Potential bugs
  • Security concerns
  • Suggestions for improvement

Be concise and actionable. If the code looks good, say so briefly.

Diff: $diff

4. Present Reviews

Show all three review outputs to the user, labeled by model.

5. Synthesize (Optional)

Summarize the common themes across all three reviews, if any.

6. PR Comments (Optional)

If reviewing a PR and user has asked to leave comments:

gh pr review <number> --comment --body "<comment>"

Or for line-specific comments:

gh api repos/{owner}/{repo}/pulls/{pr}/comments \
  --method POST \
  -f body="<comment>" \
  -f commit_id="<sha>" \
  -f path="<file>" \
  -f line=<line>

Ask user before posting any comments.

スコア

総合スコア

40/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です