← 返回 Skills 市场
nic-yuan

Apollo Research Synthesis

作者 nic-yuan · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ 安全检测通过
84
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install apollo-research-synthesis
功能描述
多Agent任务协调模式:研究阶段并行执行,综合阶段由主Agent自己完成。 避免让子Agent做综合判断——那是Coordinator的工作。 触发词:并行研究、综合、汇总、Coordinator模式、多Agent协作。
使用说明 (SKILL.md)

Apollo Research-Synthesis - 研究/综合分离原则

核心准则

多人并行研究,最后一个人汇总。不要让子Agent去综合——那是Coordinator的工作。

Claude Code Coordinator的工作流:

阶段 谁做 做什么
Research Workers(并行) 各自研究不同方向
Synthesis Coordinator(自己) 读取结果,形成实施规格
Implementation Workers 按规格做改动
Verification Workers 测试改动是否有效

关键规则

1. 研究阶段可以并行

  • 独立的研究任务同时跑
  • 各自探索不同文件/方向
  • 不要让一个Worker等另一个

2. 综合阶段必须自己来

  • ❌ "based on your findings"
  • ✅ "Fix null pointer in src/auth/validate.ts:42"
  • 综合者必须自己理解所有研究结果,不能转发给另一个Agent去综合

3. 验证必须 fresh eyes

  • ❌ Continue(继续用刚写代码的Agent)
  • ✅ Spawn fresh(新Agent来验证)
  • 新Agent没有之前的假设,能发现问题

4. 失败优先 Continue

  • 修正失败 → 继续用同一个Agent(它有错误上下文)
  • 不要急着新Spawn

Fork 隔离原则

子Agent有独立对话上下文:

  • 危险操作在独立空间跑
  • 不会污染主对话
  • sessions_spawn 实现隔离

应用检查表

  • 研究任务是否真的独立可以并行?
  • 综合判断是否应该由主Agent自己完成?
  • 验证是否需要新的"眼睛"(fresh Agent)?
  • 是否有需要隔离的危险操作?

参考

来源:Claude Code coordinatorMode.ts,512,000行源码研究

安全使用建议
This skill is a guidance template (no code, no credentials) and appears coherent. Before enabling it, verify: (1) you trust the unknown source—there's no homepage or owner info beyond an ID; (2) what runtime permissions your agent has (access to repositories, files, or the sessions_spawn API), since the pattern assumes access to project files and the ability to spawn isolated sessions; (3) whether you want the agent to be allowed to invoke this skill autonomously—test in a sandbox or with limited permissions first, and review logs of any actions the agent takes when following these coordination instructions.
功能分析
Type: OpenClaw Skill Name: apollo-research-synthesis Version: 1.0.0 The skill bundle contains only architectural guidelines and workflow instructions for multi-agent coordination (Research-Synthesis-Implementation-Verification). It lacks executable code, network requests, or instructions to access sensitive data, and actually promotes security best practices like task isolation and independent verification in SKILL.md.
能力评估
Purpose & Capability
Name, description, and SKILL.md all describe a multi-agent research/synthesis coordination pattern; the skill declares no binaries, env vars, or installs that would be out-of-scope.
Instruction Scope
Instructions focus on splitting research (parallel) and synthesis (coordinator), recommending session isolation (sessions_spawn) and fresh validators. This is coherent, but it implicitly assumes the agent has access to project files and an API to spawn isolated sessions—confirm that any runtime permissions you grant to your agent (repo/file access, session-spawn capability) are intentional.
Install Mechanism
No install spec and no code files — lowest-risk instruction-only skill.
Credentials
The skill requires no environment variables, credentials, or config paths; instructions do not reference secrets or unrelated credentials.
Persistence & Privilege
always:false and no persistent installs. The skill allows normal autonomous invocation (disable-model-invocation:false), which is the platform default — acceptable here but be mindful if you allow the agent broad autonomous actions.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install apollo-research-synthesis
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /apollo-research-synthesis 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
多Agent任务协调:研究阶段并行,综合阶段主Agent自己完成
元数据
Slug apollo-research-synthesis
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

Apollo Research Synthesis 是什么?

多Agent任务协调模式:研究阶段并行执行,综合阶段由主Agent自己完成。 避免让子Agent做综合判断——那是Coordinator的工作。 触发词:并行研究、综合、汇总、Coordinator模式、多Agent协作。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 84 次。

如何安装 Apollo Research Synthesis?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install apollo-research-synthesis」即可一键安装,无需额外配置。

Apollo Research Synthesis 是免费的吗?

是的,Apollo Research Synthesis 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Apollo Research Synthesis 支持哪些平台?

Apollo Research Synthesis 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Apollo Research Synthesis?

由 nic-yuan(@nic-yuan)开发并维护,当前版本 v1.0.0。

💬 留言讨论