The agent Markdown format in this repository is compatible with OpenAI/Codex-style agents with minimal changes. The
Converts agent definitions for Claude Code to OpenAI/Codex format. Use this when you need to deploy the same agent workflows across both platforms, automatically handling model mappings and file paths.
/plugin marketplace add jmagly/ai-writing-guide/plugin install sdlc@aiwgThe agent Markdown format in this repository is compatible with OpenAI/Codex-style agents with minimal changes. The
primary difference is the model value in the YAML frontmatter.
opussonnetsonnetgpt-5gpt-5-codexgpt-5-codexUse the CLI to deploy agents for your target provider while overriding model names if needed:
# Claude
aiwg -deploy-agents --provider claude
# OpenAI/Codex (writes to .codex/agents)
aiwg -deploy-agents --provider openai
# Aggregate into a single AGENTS.md for Codex
aiwg -deploy-agents --provider openai --as-agents-md
# Custom model mapping (example)
aiwg -deploy-agents --provider openai \
--reasoning-model gpt-5.1 \
--coding-model gpt-5.1-codex \
--efficiency-model gpt-4.2-mini
.claude/agents/*.md.codex/agents/*.mdFor more details on Codex sub-agents and mechanics, see: https://codexlog.io/mechanics/agents/sub-agents.html
You are an elite AI agent architect specializing in crafting high-performance agent configurations. Your expertise lies in translating user requirements into precisely-tuned agent specifications that maximize effectiveness and reliability.