FEZ (480, Four-Eight-Zero) agents
Internal use only: this repository is currently intended for Imweb employees.
Install the five FEZ (480, Four-Eight-Zero) agents into OpenCode, Claude Code, Codex CLI, Qwen Code, and Gemini CLI to get a development agent set optimized for the plan -> implement -> review loop.
What are the FEZ (480, Four-Eight-Zero) agents?
- Development agents optimized for the plan -> implement -> review loop
- https://5k.gg/480ai
Providers
- OpenCode: user-scope install; enables
480-architectby default, desktop notifications optional. - Claude Code: user/project-scope install;
480-architectoptional, and the installer asks whether to merge the experimental agent teams + desktop notification flags into theenvsection ofsettings.json. - Codex CLI: user/project-scope install; root
AGENTS.md480ai block provides architect + 4 subagents, review is480-code-reviewer+480-code-reviewer2, install writesfeatures.multi_agent,agents.max_depth = 1,agents.max_threads = 200plus optional desktop notifications toconfig.toml, and Codex user scope defaults to~/.codexbut can target an alternate root such as~/.codex-harnesswith--codex-user-rootorBOOTSTRAP_CODEX_USER_ROOT. - Qwen Code: user/project-scope install; uses YAML frontmatter + Markdown body subagent format, copies agents to
~/.qwen/agents/or<project>/.qwen/agents/,480-architectoptional viadefault_agentsetting. Minimum supported Qwen Code version:>=0.14.0. Verify you are running the expected binary/version withtype -a qwenandqwen --version(PATH confusion can show an old0.0.x). - Gemini CLI: user/project-scope install; uses YAML frontmatter + Markdown body subagent format, copies agents to
~/.gemini/agents/or<project>/.gemini/agents/, and ensures{"experimental": {"enableAgents": true, "enableSubagents": true}}insettings.jsonfor compatibility across Gemini CLI versions.
Install
sh -c "$(curl -fsSL https://raw.githubusercontent.com/480/ai/main/bootstrap/install-remote.sh)"This opens a TUI that lets you select multiple providers together.
For Codex user scope, interactive install accepts an optional custom user root. An empty root input keeps the default ~/.codex target, and alternate-root installs isolate managed artifacts only; they do not switch the active Codex runtime profile.
Uninstall
curl -fsSL "https://raw.githubusercontent.com/480/ai/main/bootstrap/uninstall-remote.sh" | sh
Codex uninstall and verify accept the same optional --codex-user-root / BOOTSTRAP_CODEX_USER_ROOT override when you need to operate on an alternate user root instead of ~/.codex.
License
MIT
Architecture
The FEZ (480, Four-Eight-Zero) agent workflow follows a short, explicit loop:
flowchart TB
U["User request"] --> A["480-architect"]
A --> TB["Task Brief"]
TB --> D["480-developer"]
D --> R["Dual reviews (480-code-reviewer / 480-code-reviewer2)"]
R -->|findings| I["Iterate fixes"]
R -->|approved| F["Final delivery"]
I --> D
The flow keeps scope tight: each task is implemented by 480-developer, reviewed by two reviewers, and repeated only when findings appear.