Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问clear审计异常

ai-code-review-collaborationAI 代码审查协作

Agent Skill

ai-code-review-collaboration 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

233

周安装

10

GitHub Stars

公开资料未说明

下载量

82
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:ai-code-review-collaboration(AI 代码审查协作)
来源仓库:https://github.com/mkalhitti-cloud/universal-or-strategy
仓库路径:skills/ai-code-review-collaboration
安装命令:
npx skills add https://github.com/mkalhitti-cloud/universal-or-strategy --skill ai-code-review-collaboration
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/mkalhitti-cloud/universal-or-strategy --skill ai-code-review-collaboration

简介

提供多 AI 代码审查协作框架,系统化获取多样化 AI 视角并合成改进建议。

  • 适用于复杂代码库、生产环境或对可靠性要求高的场景。
  • 通过 npx 命令从指定 GitHub 仓库安装,支持 Claude 等平台调用。
  • 需确认项目规则路径与合规要求,避免直接依赖单一 AI 输出。
  • ai-code-review-collaboration 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Multi-AI Code Review Collaboration Framework

A systematic approach to getting diverse AI perspectives on code, then synthesizing insights into actionable improvements.

When to Use This

  • Complex codebases where blind spots are likely
  • Production/live trading code where reliability is critical
  • Architecture decisions with trade-offs
  • When you want to validate Claude's recommendations
  • Before major refactoring or deployment

The Process

Phase 1: Initial Review (Claude)

  1. Claude reviews code and documents findings
  2. Creates context prompt for external AI
  3. Identifies platform-specific constraints external AI must understand

Phase 2: External AI Review

  1. User pastes prompt to external AI (Gemini, DeepSeek, GPT, etc.)
  2. External AI provides structured review
  3. User brings response back to Claude

Phase 3: Synthesis & Debate

  1. Claude evaluates external AI's points
  2. Categorizes into: Valid, Partially Valid, Invalid
  3. Explains reasoning for each categorization
  4. Creates response prompt for user to continue dialogue

Phase 4: Consensus

  1. Continue rounds until agreement reached
  2. Document final action plan
  3. Prioritize fixes by risk and effort

Prompt Templates

Template A: Initial External AI Request

**[AI NAME] CODE REVIEW REQUEST - [PROJECT TYPE]**

I need a comprehensive code review. This code [CRITICAL CONTEXT - e.g., "runs on live funded accounts"]. Please review thoroughly and respond in a format I can share with another AI for collaborative discussion.

---

## CRITICAL PLATFORM CONTEXT (Read First)

[List platform-specific constraints that might not be obvious]
[List what IS and ISN'T possible on this platform]
[Explain why certain "standard" patterns don't apply]

---

## REVIEW SCOPE

Please analyze:
1. **Logic & Correctness** - [specific concerns]
2. **Risk Management** - [specific concerns]
3. **Performance** - [specific concerns]
4. **Reliability** - [specific concerns]
5. **Code Quality** - [specific concerns]
6. **Scalability** - [planned expansion, multi-instance needs, performance at scale]
7. **Future Updateability** - [extension points, configuration extensibility, technical debt, breaking change risks]

---

## FUTURE ROADMAP (if applicable)

[Describe planned features, scaling needs, and future requirements so the reviewer can assess how well the current architecture supports them]

---

## THE CODE

[Include full code or key sections]

---

## RESPONSE FORMAT

Structure your response as:

**[AI NAME] CODE REVIEW - ROUND 1**

## 🔴 CRITICAL ISSUES (Must Fix)
## 🟡 IMPORTANT CONCERNS (Should Fix)
## 🟢 MINOR SUGGESTIONS (Nice to Have)
## ✅ WELL IMPLEMENTED
## 🔮 SCALABILITY ASSESSMENT
## 🔧 FUTURE UPDATEABILITY ASSESSMENT
## ❓ QUESTIONS / CLARIFICATIONS NEEDED
## 📋 PRIORITIZED ACTION PLAN

---

## EXISTING FINDINGS (if any)

[Include prior AI findings so new AI can confirm/challenge]

Template B: Response to External AI

**CLAUDE'S RESPONSE TO [AI NAME] - ROUND [N]**

## ✅ FULL AGREEMENT
[Points we agree on completely]

## 🤝 CONCESSIONS & MODIFICATIONS
[Points where Claude adjusts position with explanation]

## 🛡️ POINTS I STILL MAINTAIN
[Disagreements with detailed reasoning]

## 🔍 NEW OBSERVATIONS
[Anything new Claude notices based on discussion]

## 📋 UPDATED ACTION PLAN
[Current consensus on what to fix]

## 🤝 CLOSING QUESTION
[Ask if they agree or have remaining concerns]

Template C: Final Consensus Summary

## MULTI-AI REVIEW CONSENSUS

**Participants:** [List AIs involved]
**Code Reviewed:** [File/project name]
**Date:** [Date]

### AGREED FIXES (In Priority Order)
| # | Issue | Fix | Effort | Risk |
|---|-------|-----|--------|------|
| 1 | [Issue] | [Solution] | [Low/Med/High] | [Low/Med/High] |

### EXPLICITLY REJECTED SUGGESTIONS
| Suggestion | Rejected Because |
|------------|------------------|
| [Suggestion] | [Platform constraint / Not applicable / etc.] |

### VERIFIED AS CORRECT
- [Item 1 that was reviewed and confirmed good]
- [Item 2]

### OPEN QUESTIONS FOR FUTURE
- [Any unresolved items to revisit later]

Best Practices

  1. Always provide platform context - External AIs apply generic patterns without knowing constraints
  2. Be specific about what CAN'T be done - Prevents suggestions for impossible approaches
  3. Request structured responses - Makes synthesis easier
  4. Track rounds - Label each exchange for clarity
  5. Document consensus - Final agreement should be explicit
  6. Implement incrementally - Test each fix before moving to next

Reference Files

  • references/prompt-templates.md - Copy-paste ready templates
  • references/platform-contexts.md - Pre-written context blocks for common platforms
  • references/synthesis-checklist.md - How to evaluate external AI suggestions

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Antigravity

31.27%
按下载量换算26

OpenCode

22.08%
按下载量换算18

Claude Code

18.76%
按下载量换算15

Gemini CLI

13.01%
按下载量换算11

windsurf

7.69%
按下载量换算6

trae

3.22%
按下载量换算3

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

可疑

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills