VoltAgent/awesome-codex-subagents
GitHub: VoltAgent/awesome-codex-subagents
为 OpenAI Codex 收录的 160+ 个专用子智能体合集,按开发类别分类,以 .toml 配置形式即装即用。
Stars: 5180 | Forks: 582
包含 13 个类别、超过 166 个 Codex subagents 的精选合集。
[](https://awesome.re)

[](https://github.com/VoltAgent/awesome-codex-subagents)
[](https://s.voltagent.dev/discord)
# Codex Subagents 精选合集 本仓库是 [Codex Subagents](https://developers.openai.com/codex/subagents) 的权威合集,这些专用的 AI 助手专为特定的开发任务而设计。专为 Codex 编写,并与官方文档保持一致。 ## 安装说明 完全按照官方文档说明使用 Codex 的自定义 agent 目录: - `~/.codex/agents/` 用于全局 agent(在所有项目中可用) - `.codex/agents/` 用于特定项目的 agent(在该仓库中具有更高优先级) 1. 克隆此仓库。 2. 将你需要的 `.toml` agent 文件复制到上述任一目录中。 3. 如果需要,请重启或刷新你的 Codex 会话。 4. 在提示词中明确委派任务(Codex 不会自动生成自定义 subagents)。 示例: ``` mkdir -p ~/.codex/agents cp categories/01-core-development/backend-developer.toml ~/.codex/agents/ ``` ``` mkdir -p .codex/agents cp categories/04-quality-security/reviewer.toml .codex/agents/ ``` 如果你在 Codex 中使用 agent 配置,请按照官方文档的说明,将其保留在 `[agents]` 下的 `.codex/config.toml` 中。 ### Subagent 存储位置 | 类型 | 路径 | 可用范围 | 优先级 | |------|------|--------------|------------| | 项目 Subagents | `.codex/agents/` | 仅限当前项目 | 较高 | | 全局 Subagents | `~/.codex/agents/` | 所有项目 | 较低 | 注意:当发生命名冲突时,特定项目的 subagents 将覆盖全局的 subagents。 ## Subagent 结构 每个 subagent 都使用 Codex 原生的 `.toml` 格式: ``` name = "subagent-name" description = "When this agent should be invoked" model = "gpt-5.3-codex-spark" model_reasoning_effort = "medium" sandbox_mode = "read-only" [instructions] text = """ You are a [role description and expertise areas]... [Agent-specific checklists, patterns, and guidelines]... """ ``` ### 智能 Model 路由 每个 subagent 都包含一个 `model` 字段,它会自动将其路由到合适的 model —— 从而在质量和成本之间取得平衡: | Model | 使用场景 | 示例 | |-------|----------------|----------| | `gpt-5.4` | 深度推理 —— 架构审查、安全审计、金融逻辑 | `security-auditor`、`architect-reviewer`、`fintech-engineer` | | `gpt-5.3-codex-spark` | 快速扫描、综合以及较轻的研究任务 | `search-specialist`、`docs-researcher`、`agent-installer` | ### Sandbox Mode 理念 每个 subagent 的 `sandbox_mode` 字段用于控制文件系统的访问权限: - **只读 agent**(审查者、审计员):`sandbox_mode = "read-only"` - 在不进行修改的情况下进行分析 - **工作区写入 agent**(开发者、工程师):`sandbox_mode = "workspace-write"` - 创建和修改文件 ## 生态系统工具 用于构建的工具、平台和服务 - 如果你正在使用 TypeScript 构建 AI agent,VoltAgent 能为你开箱即用地提供工具使用、记忆和多 agent 协调功能。
👉 你可以在这里展示你的产品,并触达使用 Claude Code、Codex、Gemini 等 AI 编码 agent 的开发者。 |
04. 质量与安全 — 测试、安全和代码质量专家(19 个 agent)
### [04. 质量与安全](categories/04-quality-security/) - [**accessibility-tester**](categories/04-quality-security/accessibility-tester.toml) - A11y 合规专家 - [**ad-security-reviewer**](categories/04-quality-security/ad-security-reviewer.toml) - Active Directory 安全和 GPO 审计专家 - [**ai-writing-auditor**](categories/04-quality-security/ai-writing-auditor.toml) - AI 写作模式审计员和重写者 - [**architect-reviewer**](categories/04-quality-security/architect-reviewer.toml) - 架构审查专家 - [**browser-debugger**](categories/04-quality-security/browser-debugger.toml) - 基于浏览器的复现和客户端调试 - [**chaos-engineer**](categories/04-quality-security/chaos-engineer.toml) - 系统弹性测试专家 - [**code-reviewer**](categories/04-quality-security/code-reviewer.toml) - 代码质量守护者 - [**compliance-auditor**](categories/04-quality-security/compliance-auditor.toml) - 法规合规专家 - [**debugger**](categories/04-quality-security/debugger.toml) - 高级调试专家 - [**error-detective**](categories/04-quality-security/error-detective.toml) - 错误分析和解决专家 - [**gdpr-ccpa-compliance**](categories/04-quality-security/gdpr-ccpa-compliance.toml) - GDPR 和 CCPA 隐私合规专家 - [**penetration-tester**](categories/04-quality-security/penetration-tester.toml) - 道德黑客专家 - [**performance-engineer**](categories/04-quality-security/performance-engineer.toml) - 性能优化专家 - [**powershell-security-hardening**](categories/04-quality-security/powershell-security-hardening.toml) - PowerShell 安全强化和合规专家 - [**qa-expert**](categories/04-quality-security/qa-expert.toml) - 测试自动化专家 - [**reviewer**](categories/04-quality-security/reviewer.toml) - 针对正确性、安全性和回归的 PR 风格审查 - [**security-auditor**](categories/04-quality-security/security-auditor.toml) - 安全漏洞专家 - [**test-automator**](categories/04-quality-security/test-automator.toml) - 测试自动化框架专家 - [**ui-ux-tester**](categories/04-quality-security/ui-ux-tester.toml) - 详尽的 UI/UX 功能测试专家05. 数据与 AI — 数据工程、机器学习和 AI 专家(13 个 agent)
### [05. 数据与 AI](_URL_86/>) - [**ai-engineer**](categories/05-data-ai/ai-engineer.toml) - AI 系统设计和部署专家 - [**data-analyst**](categories/05-data-ai/data-analyst.toml) - 数据洞察和可视化专家 - [**data-engineer**](categories/05-data-ai/data-engineer.toml) - 数据 pipeline 架构师 - [**data-scientist**](categories/05-data-ai/data-scientist.toml) - 分析和洞察专家 - [**database-optimizer**](categories/05-data-ai/database-optimizer.toml) - 数据库性能专家 - [**llm-architect**](categories/05-data-ai/llm-architect.toml) - 大语言模型架构师 - [**machine-learning-engineer**](categories/05-data-ai/machine-learning-engineer.toml) - 机器学习系统专家 - [**ml-engineer**](categories/05-data-ai/ml-engineer.toml) - 机器学习专家 - [**mlops-engineer**](categories/05-data-ai/mlops-engineer.toml) - MLOps 和模型部署专家 - [**nlp-engineer**](categories/05-data-ai/nlp-engineer.toml) - 自然语言处理专家 - [**postgres-pro**](categories/05-data-ai/postgres-pro.toml) - PostgreSQL 数据库专家 - [**prompt-engineer**](categories/05-data-ai/prompt-engineer.toml) - prompt 优化专家 - [**reinforcement-learning-engineer**](categories/05-data-ai/reinforcement-learning-engineer.toml) - 强化学习和决策系统专家06. 开发者体验 — 工具和开发者生产力专家(14 个 agent)
### [06. 开发者体验](categories/06-developer-experience/) - [**build-engineer**](categories/06-developer-experience/build-engineer.toml) - 构建系统专家 - [**cli-developer**](categories/06-developer-experience/cli-developer.toml) - 命令行工具创建者 - [**dependency-manager**](categories/06-developer-experience/dependency-manager.toml) - 包和依赖专家 - [**documentation-engineer**](categories/06-developer-experience/documentation-engineer.toml) - 技术文档专家 - [**dx-optimizer**](categories/06-developer-experience/dx-optimizer.toml) - 开发者体验优化专家 - [**git-workflow-manager**](categories/06-developer-experience/git-workflow-manager.toml) - Git 工作流和分支专家 - [**legacy-modernizer**](categories/06-developer-experience/legacy-modernizer.toml) - 遗留代码现代化专家 - [**mcp-developer**](categories/06-developer-experience/mcp-developer.toml) - Model Context Protocol 专家 - [**powershell-module-architect**](categories/06-developer-experience/powershell-module-architect.toml) - PowerShell 模块和配置架构专家 - [**powershell-ui-architect**](categories/06-developer-experience/powershell-ui-architect.toml) - 适用 WinForms、WPF、Metro 框架和 TUIs 的 PowerShell UI/UX 专家 - [**readme-generator**](categories/06-developer-experience/readme-generator.toml) - 零幻觉、可直接维护的 README 生成器 - [**refactoring-specialist**](categories/06-developer-experience/refactoring-specialist.toml) - 代码重构专家 - [**slack-expert**](categories/06-developer-experience/slack-expert.toml) - Slack 平台和 @slack/bolt 专家 - [**tooling-engineer**](categories/06-developer-experience/tooling-engineer.toml) - 开发者工具专家07. 专业领域 — 特定领域的技术专家(13 个 agent)
### [07. 专业领域](categories/07-specialized-domains/) - [**api-documenter**](categories/07-specialized-domains/api-documenter.toml) - API 文档专家 - [**blockchain-developer**](categories/07-specialized-domains/blockchain-developer.toml) - Web3 和加密货币专家 - [**embedded-systems**](categories/07-specialized-domains/embedded-systems.toml) - 嵌入式和实时系统专家 - [**fintech-engineer**](categories/07-specialized-domains/fintech-engineer.toml) - 金融科技专家 - [**game-developer**](categories/07-specialized-domains/game-developer.toml) - 游戏开发专家 - [**hipaa-compliance**](categories/07-specialized-domains/hipaa-compliance.toml) - 面向医疗保健 SaaS 供应商的 HIPAA 合规专家 - [**iot-engineer**](categories/07-specialized-domains/iot-engineer.toml) - IoT 系统开发者 - [**m365-admin**](categories/07-specialized-domains/m365-admin.toml) - Microsoft 365、Exchange Online、Teams 和 SharePoint 管理专家 - [**mobile-app-developer**](categories/07-specialized-domains/mobile-app-developer.toml) - 移动应用专家 - [**payment-integration**](categories/07-specialized-domains/payment-integration.toml) - 支付系统专家 - [**quant-analyst**](categories/07-specialized-domains/quant-analyst.toml) - 量化分析专家 - [**risk-manager**](categories/07-specialized-domains/risk-manager.toml) - 风险评估和管理专家 - [**seo-specialist**](categories/07-specialized-domains/seo-specialist.toml) - 搜索引擎优化专家08. 商业与产品 — 产品管理和业务分析(16 个 agent)
### [08. 商业与产品](categories/08-business-product/) - [**assumption-mapping**](categories/08-business-product/assumption-mapping.toml) - 产品假设风险与验证专家 - [**backlog-grooming**](categories/08-business-product/backlog-grooming.toml) - 敏捷 backlog 整理专家 - [**business-analyst**](categories/08-business-product/business-analyst.toml) - 需求专家 - [**content-marketer**](categories/08-business-product/content-marketer.toml) - 内容营销专家 - [**content-quality-editor**](categories/08-business-product/content-quality-editor.toml) - AI 内容质量与人文化专家 - [**customer-success-manager**](categories/08-business-product/customer-success-manager.toml) - 客户成功专家 - [**growth-loops**](categories/08-business-product/growth-loops.toml) - 增长循环和 PLG 机制专家 - [**legal-advisor**](categories/08-business-product/legal-advisor.toml) - 法律和合规专家 - [**license-engineer**](categories/08-business-product/license-engineer.toml) - 软件许可和合规系统专家 - [**product-manager**](categories/08-business-product/product-manager.toml) - 产品战略专家 - [**project-manager**](categories/08-business-product/project-manager.toml) - 项目管理专家 - [**sales-engineer**](categories/08-business-product/sales-engineer.toml) - 技术销售专家 - [**scrum-master**](categories/08-business-product/scrum-master.toml) - 敏捷方法专家 - [**technical-writer**](categories/08-business-product/technical-writer.toml) - 技术文档专家 - [**ux-researcher**](categories/08-business-product/ux-researcher.toml) - 用户研究专家 - [**wordpress-master**](categories/08-business-product/wordpress-master.toml) - WordPress 开发和优化专家09. 元与编排 — Agent 协调和元编程(12 个 agent)
### [09. 元与编排](categories/09-meta-orchestration/) - [**agent-installer**](categories/09-meta-orchestration/agent-installer.toml) - 通过 GitHub 浏览并安装此仓库的 agent - [**agent-organizer**](categories/09-meta-orchestration/agent-organizer.toml) - 多 agent 协调器 - [**codebase-orchestrator**](categories/09-meta-orchestration/codebase-orchestrator.toml) - 带有批准机制的仓库级重构治理 - [**context-manager**](categories/09-meta-orchestration/context-manager.toml) - context 优化专家 - [**error-coordinator**](categories/09-meta-orchestration/error-coordinator.toml) - 错误处理和恢复专家 - [**it-ops-orchestrator**](categories/09-meta-orchestration/it-ops-orchestrator.toml) - IT 运维工作流编排专家 - [**knowledge-synthesizer**](categories/09-meta-orchestration/knowledge-synthesizer.toml) - 知识聚合专家 - [**multi-agent-coordinator**](categories/09-meta-orchestration/multi-agent-coordinator.toml) - 高级多 agent 编排 - [**performance-monitor**](categories/09-meta-orchestration/performance-monitor.toml) - Agent 性能优化 - [**pied-piper**](https://github.com/sathish316/pied-piper/) - 为重复性 SDLC 工作流编排 AI subagent 团队 - [**task-distributor**](categories/09-meta-orchestration/task-distributor.toml) - 任务分配专家 - [**workflow-orchestrator**](categories/09-meta-orchestration/workflow-orchestrator.toml) - 复杂工作流自动化10. 研究与分析 — 研究、搜索和分析专家(9 个 agent)
### [10. 研究与分析](categories/10-research-analysis/) - [**competitive-analyst**](categories/10-research-analysis/competitive-analyst.toml) - 竞争情报专家 - [**data-researcher**](categories/10-research-analysis/data-researcher.toml) - 数据发现和分析专家 - [**docs-researcher**](categories/10-research-analysis/docs-researcher.toml) - 基于文档的 API 和框架验证 - [**market-researcher**](categories/10-research-analysis/market-researcher.toml) - 市场分析和消费者洞察 - [**project-idea-validator**](categories/10-research-analysis/project-idea-validator.toml) - 严苛的创意压力测试者和决定是否推进的战略家 - [**research-analyst**](categories/10-research-analysis/research-analyst.toml) - 综合研究专家 - [**scientific-literature-researcher**](categories/10-research-analysis/scientific-literature-researcher.toml) - 基于已发表科学研究的证据导向研究 - [**search-specialist**](categories/10-research-analysis/search-specialist.toml) - 高级信息检索专家 - [**trend-analyst**](categories/10-research-analysis/trend-analyst.toml) - 新兴趋势和预测专家11. AI 治理与安全 - 治理、护栏和可信赖 AI 专家(4 个 agent)
### [11. AI 治理与安全](categories/11-ai-governance-safety/) - [**ai-governance-auditor**](categories/11-ai-governance-safety/ai-governance-auditor.toml) - AI 治理控制和部署就绪度审查员 - [**model-risk-manager**](categories/11-ai-governance-safety/model-risk-manager.toml) - 模型故障模式优先级排序和缓解专家 - [**policy-guardrail-designer**](categories/11-ai-governance-safety/policy-guardrail-designer.toml) - prompt、工具和工作流护栏设计师 - [**responsible-ai-reviewer**](categories/11-ai-governance-safety/responsible-ai-reviewer.toml) - 公平性、误用、透明度和监督审查员12. 平台工程与 IDP - 内部开发者平台和黄金路径专家(4 个 agent)
### [12. 平台工程与 IDP](categories/12-platform-engineering-idp/) - [**backstage-specialist**](categories/12-platform-engineering-idp/backstage-specialist.toml) - Backstage 目录、模板和门户专家 - [**golden-path-designer**](categories/12-platform-engineering-idp/golden-path-designer.toml) - 固执己见的自服务工作流设计师 - [**idp-architect**](categories/12-platform-engineering-idp/idp-architect.toml) - 内部开发者平台架构专家 - [**platform-product-manager**](categories/12-platform-engineering-idp/platform-product-manager.toml) - 平台路线图、采用率和成功指标专家13. LLMOps、评估与可观测性 - 生产级 AI 质量和运行时可见性专家(4 个 agent)
### [13. LLMOps、评估与可观测性](categories/13-llmops-evals-observability/) - [**ai-observability-engineer**](categories/13-llmops-evals-observability/ai-observability-engineer.toml) - 原生 AI 的 traces、metrics 和 logging 专家 - [**eval-engineer**](categories/13-llmops-evals-observability/eval-engineer.toml) - prompt、工具和工作流评估专家 - [**hallucination-investigator**](categories/13-llmops-evals-observability/hallucination-investigator.toml) - 事实性和 context 崩溃的根本原因调查员 - [**prompt-regression-tester**](categories/13-llmops-evals-observability/prompt-regression-tester.toml) - 针对 AI 行为变更的回归测试套件设计师标签:AI智能体, AI辅助开发, Codex, Python安全, SOC Prime, 开发工具, 提示词工程, 策略决策点