Setup Guide
June 30, 2026 ยท View on GitHub
Prerequisites
- Python 3.10+ (pre-installed on macOS and most Linux systems)
- PyYAML and toml Python packages
- Codex CLI or Codex App
Installation
One-Line Install
curl -fsSL https://raw.githubusercontent.com/yimwoo/codex-agenteam/main/install.sh | bash
This clones the repo, installs Python dependencies, and registers the plugin in the Codex marketplace.
Update
curl -fsSL https://raw.githubusercontent.com/yimwoo/codex-agenteam/main/update.sh | bash
Local Install (for contributors)
git clone https://github.com/yimwoo/codex-agenteam.git
cd codex-agenteam
bash install.sh --local
After Installation
- Restart Codex
- Go to Plugins > Local Plugins and install AgenTeam
- Navigate to your project and run
@ATeam build my team
Check the local Codex/runtime compatibility after installation:
agenteam-rt doctor
The command reports the Codex version, relevant local feature stages,
structured-output support, hook availability, effective role model pins, and
deprecation warnings. It does not require an AgenTeam config. When
structured_handoffs: true, doctor treats missing --output-schema or
--output-last-message support as a readiness error. Use
agenteam-rt doctor --strict in CI when warnings should also fail the check.
If the role picker still does not show the new roles, confirm the project now
contains .codex/agents/*.toml, then open a new thread or restart Codex so it
reloads workspace agents from that folder.
For teams: If your repo already has .agenteam.team/config.yaml (committed
by a teammate), AgenTeam detects it automatically โ no init needed. Your team's
pipeline, roles, and stages are shared. Create .agenteam/config.yaml only if
you need personal overrides (e.g., different model preferences).
Next Steps
- Optional: scaffold governed-delivery foundations if your team wants
lightweight decision tracking and tripwire checks for larger work
agenteam-rt governed-bootstrap- optional validation helpers:
agenteam-rt decision render-logagenteam-rt tripwire check --path src/auth/login.py
- Configuration Reference -- customize roles, isolation, and pipeline
- Pipeline & Profiles -- stages, gates, and task-sized profiles
- CLI Reference -- all commands and skills
- HOTL Integration -- structured execution with the HOTL plugin