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.
- Codex installed
# Generate integration files (required on fresh clone)
./scripts/convert.sh --tool codex
# Install agents
./scripts/install.sh --tool codexThis copies generated agent files to ~/.codex/agents/.
Each generated file lives in:
integrations/codex/agents/<slug>.toml
The mapping is intentionally minimal:
nameis copied from the source frontmatter unchangeddescriptionis copied from the source frontmatter unchangeddeveloper_instructionscontains the full Markdown body unchanged
Source-only metadata such as color, emoji, vibe, and other unsupported
frontmatter fields are omitted.
After installation, reference the custom agent by name in Codex:
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.
After modifying source agents:
./scripts/convert.sh --tool codex
./scripts/install.sh --tool codexGenerate the Codex artifacts before installing:
./scripts/convert.sh --tool codexMake sure codex is in your PATH, or that ~/.codex/ already exists:
which codex
codex --help