cross-review

仓库创建 2026年5月12日最近提交 7 小时前SkillHot 收录 20 天前
▸ 精选理由

便于比较不同模型的审查能力,适合多模型评估场景。

▸ 风险提示

会创建子代理并可能调用外部模型/服务,需注意权限与成本

这个 Skill 做什么

将代码审查任务委派给指定模型的子代理并汇总其结果。

当你明确指定要用哪个模型来做代码审查时,把会话里改动重建出来,然后把实际审查任务交给一个运行指定模型的子代理去做。主代理负责重构改动并校验请求,只有在用户点名模型时才会 spawn 子代理。不要用它来做一般性的 PR 审查或在没指明模型时调用。

▸ 展开 SKILL.md 英文原文

Delegate code review to a subagent running a specific model. Use ONLY when user explicitly names a model to review changes ("review with opus", "use sonnet to review", "review with gemini"). The root agent reconstructs changes from conversation history and spawns a subagent with the code-review skill using the specified model. Do NOT use for general code review (use code-review skill instead), for reviewing PRs from git history, or when no model is specified by the user.

Skill 开发管理子代理模型委派审查通用
110
Stars
14
Forks
40
仓库内 Skill
+7
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/EliasOulkadi/shokunin/master/.pack/skills/cross-review/SKILL.md
或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/EliasOulkadi/shokunin/master/.pack/skills/cross-review/SKILL.md"
SKILL.MD 节选查看完整文件 ↗
Reconstruct what you changed during this conversation, then delegate the actual review to a single subagent running the `code-review` skill with a user-specified model.

IMPORTANT: Steps 1-2 run in the current agent (the master). Only Step 3 spawns a subagent.

## Workflow

### Step 1: Parse the user request

Extract:
- **Model**: The model ID from user's request. Validate against available models.
- **Review instructions**: Any text after "Review instructions:" — pass verbatim.
- **Change scope**: What should be reviewed. Default: all changes in this conversation.

### Step 2: Gather context from your own changes

Reconstruct the diff from conversation history:

1. Compose a unified diff of
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有