Loading...
Loading...
OpenAI Codex CLI的多Agent编排层。提供30个专业Agent、40+种工作流技能、基于tmux的团队编排、持久化MCP服务器以及分阶段流水线执行功能。
npx skill4agent add supercent-io/skills-template oh-my-codex| Agent层级 | Agent列表 | 使用场景 |
|---|---|---|
| 核心开发 | architect, planner, executor, debugger, verifier, explore | 主开发工作流 |
| 质量保障 | style-reviewer, quality-reviewer, api-reviewer, security-reviewer, performance-reviewer | 代码评审环节 |
| 领域专家 | dependency-expert, test-engineer, build-fixer, designer, writer, qa-tester | 专业任务处理 |
| 产品策略 | product-manager, ux-researcher, product-analyst, information-architect | 产品规划 |
| 技能 | 触发指令 | 描述 |
|---|---|---|
| | 从想法到可运行代码的全自主执行 |
| | 结合验证器的自循环执行,直至任务完成 |
| | 最大并行化的多Agent编排 |
| | 使用Codex CLI原生团队功能的N个协同Agent |
| | 包含共识和评审模式的战略规划 |
| | 并行科学家Agent完成全面研究 |
| | 遵循红-绿-重构循环的测试优先开发 |
| | 修复构建错误、类型错误和工具链故障 |
| | 覆盖所有质量维度的全面代码评审 |
| | 聚焦漏洞和信任边界的安全审计 |
| | 停止执行模式并清除活跃状态 |
| 服务器 | 用途 |
|---|---|
| 持久化模式生命周期状态 |
| 长会话的内存与记事本存储 |
| 代码智能与上下文管理 |
| 执行追踪与调试 |
npm install -g @openai/codexnpm install -g oh-my-codex
omx setup
omx doctor# 高推理能力的可信环境
omx --xhigh --madmax/prompts:architect "analyze current auth boundaries"
/prompts:executor "implement input validation in login"
/prompts:security-reviewer "audit OAuth flow"$plan "ship OAuth callback safely"
$autopilot "implement user registration"
$team 3:executor "fix all TypeScript errors"# 启动并行团队工作者
omx team 4:executor "parallelize a multi-module refactor"
# 监控团队状态
omx team status <team-name>
# 恢复团队工作
omx team resume <team-name>
# 关闭团队
omx team shutdown <team-name>| 参数 | 描述 |
|---|---|
| 快速执行,最少验证 |
| 高推理强度 |
| 超高推理强度 |
| 对应Codex的 |
| 强制执行操作 |
| 预览执行,不实际运行 |
| 详细输出 |
team-plan → team-prd → team-exec → team-verify → team-fixsession-startsession-endsession-idleturn-complete# 启用钩子插件
OMX_HOOK_PLUGINS=1 omx hooks test
# 钩子命令
omx hooks init # 初始化钩子
omx hooks status # 检查钩子状态
omx hooks validate # 验证配置
omx hooks test # 测试钩子执行.omx/hooks/*.mjs-c model_instructions_file="<cwd>/AGENTS.md"# 禁用AGENTS.md注入
OMX_BYPASS_DEFAULT_SYSTEM_PROMPT=0 omx
# 自定义指令文件
OMX_MODEL_INSTRUCTIONS_FILE=/path/to/instructions.md omx| 命令 | 操作 |
|---|---|
| 启动带HUD的Codex |
| 安装提示词、技能和配置 |
| 安装/运行时诊断 |
| 团队/集群诊断 |
| 启动团队工作者 |
| 查看团队状态 |
| 关闭团队 |
| 查看活跃模式 |
| 取消执行模式 |
| 设置推理强度(low/medium/high/xhigh) |
| HUD显示选项 |
| 查看帮助 |