- Codex installed
- Recommended: install Codex via Homebrew for easy updates
- GitHub CLI authenticated (
gh auth login) - Copy config.toml to
~/.codex/config.toml
- Create AGENTS.md at your repo root with project rules and collaboration preferences
- Add reusable skills in
.codex/skills/
your-repo/
├── AGENTS.md # Repository rules and working conventions
└── .codex/
└── skills/
├── pr/
│ └── SKILL.md # PR workflow
└── review/
└── SKILL.md # Review workflow
Codex skills are workflow playbooks stored at .codex/skills/<name>/SKILL.md.
Starter skills:
Use skills for process/checklists; keep policy in AGENTS.md.
Use plan mode for larger changes that benefit from explicit steps before implementation.
Work on multiple branches in parallel:
git worktree add ../your-repo-2 feat/other-taskRun a separate Codex session in each worktree.