npx skills add https://github.com/akillness/oh-my-gods --skill omx| 智能体层级 | 智能体 | 使用场景 |
|---|---|---|
| 核心开发 | 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 Tier | Agents | Use Case |
|---|---|---|
| Core Development | architect, planner, executor, debugger, verifier, explore | Main development workflow |
| Quality Assurance | style-reviewer, quality-reviewer, api-reviewer, security-reviewer, performance-reviewer | Code review lane |
| Domain Experts | dependency-expert, test-engineer, build-fixer, designer, writer, qa-tester | Specialized tasks |
| Product Strategy | product-manager, ux-researcher, product-analyst, information-architect |
广告位招租
在这里展示您的产品或服务
触达数万 AI 开发者,精准高效
| 触发词 |
|---|
| 描述 |
|---|
autopilot | $autopilot | 从想法到可运行代码的完全自主执行 |
ralph | $ralph | 带验证器确认的自引用循环,直至完成 |
ultrawork | $ulw | 通过并行智能体编排实现最大并行度 |
team | $team | 使用 Codex CLI 原生团队功能的 N 个协调智能体 |
plan | $plan | 包含共识和审查模式的战略规划 |
research | $research | 并行科学家智能体进行综合研究 |
tdd | $tdd | 遵循红-绿-重构周期的测试驱动开发 |
build-fix | $build-fix | 修复构建错误、类型错误和工具链故障 |
code-review | $code-review | 跨所有质量维度的综合代码审查 |
security-review | $security-review | 专注于漏洞和信任边界的安全审计 |
cancel | $cancel | 停止执行模式并清除活动状态 |
| 服务器 | 用途 |
|---|---|
omx_state | 持久化模式生命周期状态 |
omx_memory | 用于长时间运行会话的内存 + 记事本界面 |
omx_code_intel | 代码智能和上下文 |
omx_trace | 执行跟踪和调试 |
npm install -g @openai/codex)npm 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>
| 标志 | 描述 |
|---|---|
--yolo | 快速执行,最少验证 |
--high | 高推理强度 |
--xhigh | 超高推理强度 |
--madmax | 映射到 Codex 的 --dangerously-bypass-approvals-and-sandbox |
--force | 强制操作 |
--dry-run | 预览而不执行 |
--verbose | 详细输出 |
OMX 实现了一个结构化的执行流水线:
team-plan → team-prd → team-exec → team-verify → team-fix
session-start / session-end / session-idleturn-complete# 启用钩子插件
OMX_HOOK_PLUGINS=1 omx hooks test
# 钩子命令
omx hooks init # 初始化钩子
omx hooks status # 检查钩子状态
omx hooks validate # 验证配置
omx hooks test # 测试钩子执行
插件文件:.omx/hooks/*.mjs
默认情况下,OMX 会注入项目级别的 AGENTS.md:
-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
| 命令 | 操作 |
|---|---|
omx | 启动带 HUD 的 Codex |
omx setup | 安装提示词、技能、配置连接 |
omx doctor | 安装/运行时诊断 |
omx doctor --team | 团队/集群诊断 |
omx team <n>:<role> "<task>" | 启动团队工作器 |
omx team status <name> | 显示团队状态 |
omx team shutdown <name> | 关闭团队 |
omx status | 显示活动模式 |
omx cancel | 取消执行模式 |
omx reasoning <mode> | 设置推理强度(low/medium/high/xhigh) |
omx hud | HUD 显示选项 |
omx help | 显示帮助 |
MIT License
每周安装量
1
代码仓库
首次出现
1 天前
安全审计
安装于
mcpjam1
claude-code1
replit1
junie1
windsurf1
zencoder1
| Product planning |
| Skill | Trigger | Description |
|---|---|---|
autopilot | $autopilot | Full autonomous execution from idea to working code |
ralph | $ralph | Self-referential loop with verifier verification until completion |
ultrawork | $ulw | Maximum parallelism with parallel agent orchestration |
team | $team | N coordinated agents using Codex CLI native teams |
plan | $plan | Strategic planning with consensus and review modes |
research | $research | Parallel scientist agents for comprehensive research |
tdd | $tdd | Test-first development with red-green-refactor cycle |
build-fix | $build-fix | Fix build errors, type errors, and toolchain failures |
code-review | $code-review | Comprehensive code review across all quality dimensions |
security-review | $security-review | Security audit focusing on vulnerabilities and trust boundaries |
cancel | $cancel | Stop execution modes and clear active state |
| Server | Purpose |
|---|---|
omx_state | Persistent mode lifecycle state |
omx_memory | Memory + notepad surfaces for long-running sessions |
omx_code_intel | Code intelligence and context |
omx_trace | Execution tracing and debugging |
npm install -g @openai/codex)npm install -g oh-my-codex
omx setup
omx doctor
# Trusted environment with high reasoning
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"
# Start parallel team workers
omx team 4:executor "parallelize a multi-module refactor"
# Monitor team status
omx team status <team-name>
# Resume team work
omx team resume <team-name>
# Shutdown team
omx team shutdown <team-name>
| Flag | Description |
|---|---|
--yolo | Fast execution, minimal verification |
--high | High reasoning effort |
--xhigh | Extra-high reasoning effort |
--madmax | Maps to Codex --dangerously-bypass-approvals-and-sandbox |
--force | Force operation |
--dry-run | Preview without execution |
--verbose | Verbose output |
OMX implements a structured execution pipeline:
team-plan → team-prd → team-exec → team-verify → team-fix
session-start / session-end / session-idleturn-complete# Enable hook plugins
OMX_HOOK_PLUGINS=1 omx hooks test
# Hook commands
omx hooks init # Initialize hooks
omx hooks status # Check hook status
omx hooks validate # Validate configuration
omx hooks test # Test hook execution
Plugin files: .omx/hooks/*.mjs
By default, OMX injects project-level AGENTS.md:
-c model_instructions_file="<cwd>/AGENTS.md"
# Disable AGENTS.md injection
OMX_BYPASS_DEFAULT_SYSTEM_PROMPT=0 omx
# Custom instructions file
OMX_MODEL_INSTRUCTIONS_FILE=/path/to/instructions.md omx
| Command | Action |
|---|---|
omx | Launch Codex with HUD |
omx setup | Install prompts, skills, config wiring |
omx doctor | Installation/runtime diagnostics |
omx doctor --team | Team/swarm diagnostics |
omx team <n>:<role> "<task>" | Start team workers |
omx team status <name> | Show team status |
omx team shutdown <name> | Shutdown team |
omx status | Show active modes |
omx cancel | Cancel execution modes |
omx reasoning <mode> | Set reasoning (low/medium/high/xhigh) |
omx hud | HUD display options |
omx help | Show help |
MIT License
Weekly Installs
1
Repository
First Seen
1 day ago
Security Audits
Installed on
mcpjam1
claude-code1
replit1
junie1
windsurf1
zencoder1
AI Elements:基于shadcn/ui的AI原生应用组件库,快速构建对话界面
62,200 周安装
React Native 升级指南:完整工作流程、依赖更新与 Expo SDK 步骤
1,400 周安装
Build工作流编排器:AI驱动的开发流程自动化工具,支持绿地/棕地/TDD/重构
204 周安装
Android Kotlin 项目架构与Gradle配置指南 - 现代Android开发最佳实践
1,300 周安装
Nia技能:AI驱动的代码与文档智能搜索索引工具
1,400 周安装
Composio:连接外部应用与AI智能体的API集成工具,自动化任务开发
1,500 周安装
远程浏览器自动化工具 - browser-use 沙盒化代理控制云浏览器
1,400 周安装