A Claude Code skill that enables effective use of Every Code CLI (just-every/code) as a powerful multi-agent orchestration tool.
This skill teaches Claude Code how to wield Every Code CLI for:
- Multi-Agent Consensus - Orchestrate Claude, Gemini, and GPT together
- Code Generation - Create apps, components, and modules with AI collaboration
- Problem Solving - Race multiple AIs to find solutions fastest
- Browser Integration - Chrome DevTools automation via CDP
- Auto-Drive Mode - Hands-off multi-step task coordination
- Code Review - Get alternative AI perspectives on code
- Every Code CLI installed and available as
codeon PATH - Configured with valid credentials (OpenAI API key or ChatGPT login)
- For multi-agent features: Claude CLI and Gemini CLI configured
# Verify installation
code --version| File | Purpose |
|---|---|
SKILL.md |
Main skill definition - when to use, core instructions |
reference.md |
Complete CLI command and flag reference |
templates.md |
Reusable prompt templates for common tasks |
patterns.md |
Integration patterns and workflows |
tools.md |
Built-in tools and subagent commands |
Once installed, Claude Code automatically uses this skill when appropriate. Just ask:
"Use Every Code to plan this feature with multiple AIs"
"Have code review this module from a different perspective"
"Use /solve to figure out why this test is failing"
"Run /auto to refactor and add tests"
/plan- Consensus planning (Claude + Gemini + GPT collaborate)/solve- Racing problem solving (fastest AI wins)/code- Multi-agent code generation/auto- Auto-drive for multi-step tasks
/chrome- Connect to external Chrome via CDP/browser- Use internal headless browserCtrl+B- ASCII preview in terminal
| Mode | Use Case |
|---|---|
read-only |
Analysis, review, research |
workspace-write |
Apply local edits |
danger-full-access |
Network access, broad permissions |
# Multi-agent planning
/plan "implement OAuth authentication"
# Racing problem solver
/solve "why does the memory usage spike?"
# Code generation with consensus
/code "add rate limiting to API"
# Read-only analysis
code --sandbox read-only "review security"
# Full-auto code generation
code --full-auto --sandbox workspace-write "create user module"
# Browser testing
/browserConfig file: ~/.code/config.toml
model = "gpt-5.2-codex"
approval_policy = "on-request"
sandbox_mode = "workspace-write"
[[subagents.commands]]
name = "plan"
agents = ["claude-opus-4.5", "gemini", "gpt-5.2-codex"]| Use Case | Benefit |
|---|---|
| Multi-agent consensus | Claude + Gemini + GPT collaborate |
| Second opinion | Different AI perspective on code |
| Browser testing | Chrome DevTools integration |
| Auto-drive | Hands-off multi-step workflows |
| Parallel work | Offload tasks while continuing |
MIT