编排技能
Seawork 内置编排技能,教导编程智能体(Claude Code、Codex)如何使用 Seawork CLI 来生成、协调和管理其他智能体。技能是你的智能体可以调用的斜线命令——它们提供提示词、上下文和工作流,让智能体无需你编写样板代码就能进行编排。可从桌面应用的集成设置或通过 CLI 安装。
安装
两种安装方式:
- 桌面应用: 设置 → 集成 → 安装
- 手动安装:
npx skills add SeaVerseAI/seawork——安装到~/.agents/skills/并为每个智能体设置符号链接。
/seawork — CLI 参考
基础技能。由其他技能自动加载。包含完整的 Seawork CLI 命令参考,让智能体知道如何运行命令。
通常不由用户直接调用——它是其他技能依赖的参考资料。
/seawork-handoff — 任务移交
将当前任务连同完整上下文移交给另一个智能体。接收方智能体会获得包含以下内容的全面提示词:任务描述、相关文件、已尝试的方案、已做的决策和验收标准。
默认提供商为 Codex,可指定 Claude(sonnet/opus)。支持 --worktree 以创建隔离的 git 分支。
/seawork-handoff hand off the auth fix to codex in a worktree /seawork-handoff hand this to claude opus for review
/seawork-loop — 迭代循环
在循环中运行智能体,自动验证直到满足退出条件。工作者运行,验证者检查,重复直到完成或达到最大迭代次数。支持工作者和验证者使用不同的提供商(例如 Codex 实现,Claude 验证)。
停止条件: --max-iterations、 --max-time或验证通过。
/seawork-loop fix the failing tests, verify with npm test, max 5 iterations /seawork-loop use codex to implement, claude sonnet to verify, loop until tests pass
/seawork-orchestrator — 团队编排
构建并管理一组通过共享聊天室协调的智能体团队。你描述工作,它设置角色、启动智能体并通过聊天协调。使用心跳计划检查进度。
跨提供商:通常 Codex 负责实现,Claude 负责审查。
/seawork-orchestrator spin up a team to implement the database migration, codex implements, claude reviews
/seawork-chat — 聊天室
使用持久聊天室进行异步智能体协调。创建房间、发布消息、读取历史记录、等待回复。支持 @提及特定智能体或 @everyone。
通常由编排器技能使用,但也可以直接使用。
/seawork-chat create a room called "backend-refactor" for coordinating the API changes /seawork-chat post to backend-refactor: "API endpoints are done, ready for review"
/seawork-committee — 委员会规划
组建由两个高推理能力智能体(Claude Opus + GPT 5.5)组成的委员会,在实现之前分析问题。两个智能体并行推理,然后合并计划。适用于陷入困境、循环或面临困难架构决策时。
智能体被禁止编辑代码——它们只生成计划。
/seawork-committee why are the websocket connections dropping under load? /seawork-committee plan the auth system migration
