feat: add Codex agent conversion and install support (#362)

Adds Codex as a conversion/install target: each agent → `~/.codex/agents/<slug>.toml` with the three required Codex fields (name, description, developer_instructions).

Validated: all 184 agents generate valid, parseable TOML (incl. 21k-char agents with embedded code blocks) via the PR's TOML basic-string escaper. Matches OpenAI's documented custom-agent schema.

Thanks @yunuskilicdev.
This commit is contained in:
Yunus Kılıç
2026-06-04 01:59:48 +02:00
committed by GitHub
parent ab414934e3
commit 620a061a90
7 changed files with 190 additions and 8 deletions
+19
View File
@@ -16,6 +16,7 @@ supported agentic coding tools.
- **[Windsurf](#windsurf)** — `.windsurfrules` in `windsurf/`
- **[Kimi Code](#kimi-code)** — YAML agent specs in `kimi/`
- **[Qwen Code](#qwen-code)** — project-scoped `.md` SubAgents in `.qwen/agents/`
- **[Codex](#codex)** — `.toml` custom agents in `codex/`
## Quick Install
@@ -28,6 +29,7 @@ supported agentic coding tools.
./scripts/install.sh --tool copilot
./scripts/install.sh --tool openclaw
./scripts/install.sh --tool claude-code
./scripts/install.sh --tool codex
# Gemini CLI needs generated integration files on a fresh clone
./scripts/convert.sh --tool gemini-cli
@@ -238,3 +240,20 @@ cd /your/project && /path/to/agency-agents/scripts/install.sh --tool qwen
```
See [qwen/README.md](qwen/README.md) for details.
---
## Codex
Each agent is converted into a standalone Codex custom agent TOML file and
installed to `~/.codex/agents/`.
Because Codex uses generated TOML files rather than the source Markdown
directly, run the converter before installing from a fresh clone:
```bash
./scripts/convert.sh --tool codex
./scripts/install.sh --tool codex
```
See [codex/README.md](codex/README.md) for details.
+79
View File
@@ -0,0 +1,79 @@
# Codex Integration
Converts all Agency agents into Codex custom agent TOML files. Each source
agent becomes one standalone `.toml` file containing the minimal Codex-required
fields: `name`, `description`, and `developer_instructions`.
## Installation
### Prerequisites
- [Codex](https://developers.openai.com/codex/overview) installed
### Convert And Install
```bash
# Generate integration files (required on fresh clone)
./scripts/convert.sh --tool codex
# Install agents
./scripts/install.sh --tool codex
```
This copies generated agent files to `~/.codex/agents/`.
## Generated Format
Each generated file lives in:
```text
integrations/codex/agents/<slug>.toml
```
The mapping is intentionally minimal:
- `name` is copied from the source frontmatter unchanged
- `description` is copied from the source frontmatter unchanged
- `developer_instructions` contains the full Markdown body unchanged
Source-only metadata such as `color`, `emoji`, `vibe`, and other unsupported
frontmatter fields are omitted.
## Usage
After installation, reference the custom agent by name in Codex:
```text
Use the Frontend Developer agent to review this component.
```
Codex uses the `name` field inside the TOML file as the source of truth, so the
generated filename slug is only for filesystem safety.
## Regenerate
After modifying source agents:
```bash
./scripts/convert.sh --tool codex
./scripts/install.sh --tool codex
```
## Troubleshooting
### Codex integration not found
Generate the Codex artifacts before installing:
```bash
./scripts/convert.sh --tool codex
```
### Codex not detected
Make sure `codex` is in your PATH, or that `~/.codex/` already exists:
```bash
which codex
codex --help
```