Fast, local coding agent with multi-agent orchestration, browser integration, auto-review, and theming. Community-driven fork focused on real developer ergonomics.
Every Code (Code for short) is a fast, local coding agent for your terminal. It's a community-driven fork focused on real developer ergonomics: browser integration, multi-agents, theming, and reasoning control.
This skill helps you install, configure, and use Every Code CLI to orchestrate AI-powered coding workflows with multi-agent support, automated code reviews, and browser integration.
1. **Install Every Code globally**
```bash
npm install -g @just-every/code
```
Note: If another tool provides a `code` command (e.g. VS Code), use `coder` instead.
2. **Authenticate** (choose one method)
**Option A: Sign in with ChatGPT** (Plus/Pro/Team)
```bash
code
```
**Option B: API key** (usage-based)
```bash
export OPENAI_API_KEY=your_key_here
code
```
3. **Install companion CLIs (optional but recommended)**
```bash
npm install -g n
export N_PREFIX="$HOME/.n"
export PATH="$N_PREFIX/bin:$PATH"
n 20.18.1
export npm_config_prefix="${npm_config_prefix:-$HOME/.npm-global}"
mkdir -p "$npm_config_prefix/bin"
export PATH="$npm_config_prefix/bin:$PATH"
npm install -g @anthropic-ai/claude-code @google/gemini-cli @qwen-code/qwen-code
claude --version
gemini --version
qwen --version
```
Add these exports to your shell profile (.bashrc, .zshrc) for persistence:
```bash
export N_PREFIX="$HOME/.n"
export PATH="$N_PREFIX/bin:$PATH"
export npm_config_prefix="${npm_config_prefix:-$HOME/.npm-global}"
export PATH="$npm_config_prefix/bin:$PATH"
```
```bash
code /auto "Refactor the auth flow and add device login"
code /auto status
```
```bash
code /plan "Stop the AI from ordering pizza at 3AM"
code /solve "Why does deleting one user drop the whole database?"
code /code "Show dark mode when I feel cranky"
```
```bash
code /chrome # Auto-detect port
code /chrome 9222 # Specific port
code /browser
code /browser https://example.com
```
```bash
code /themes
code /reasoning low|medium|high
code /model
code /new
```
```bash
code [options] [prompt]
Options:
--model <name> Override model (e.g. gpt-5.1)
--read-only Prevent file modifications
--no-approval Skip approval prompts (caution!)
--config <key=val> Override config values
--oss Use local open source models
--sandbox <mode> Set sandbox level
--debug Log API requests/responses
--help Show help
--version Show version
```
Create `AGENTS.md` or `CLAUDE.md` in your project root:
```markdown
This is a React TypeScript application with:
```
Main config: `~/.code/config.toml`
```toml
model = "gpt-5.1"
model_provider = "openai"
approval_policy = "on-request" # untrusted | on-failure | on-request | never
model_reasoning_effort = "medium" # low | medium | high
sandbox_mode = "workspace-write"
[tui.theme]
name = "light-photon"
[profiles.gpt-5]
model = "gpt-5.1"
model_provider = "openai"
approval_policy = "never"
model_reasoning_effort = "high"
```
Extend capabilities with Model Context Protocol. Add to `~/.code/config.toml`:
```toml
[mcp_servers.filesystem]
command = "npx"
args = ["-y", "@modelcontextprotocol/server-filesystem", "/path/to/project"]
[mcp_servers.database]
command = "npx"
args = ["-y", "@modelcontextprotocol/server-postgres", "postgresql://localhost/mydb"]
```
```bash
code --no-approval "run tests and fix any failures"
code --read-only "analyze code quality and generate report"
code --config output_format=json "list all TODO comments"
```
**Example 1: Auto Drive multi-step task**
```bash
code /auto "Add user profile page with avatar upload and bio editing"
```
**Example 2: Multi-agent problem solving**
```bash
code /solve "Memory leak in the WebSocket connection handler"
```
**Example 3: Browser-integrated debugging**
```bash
code /chrome 9222
```
**Example 4: Code review workflow**
```bash
code /auto "Implement payment processing with Stripe"
```
```bash
npm install -g @just-every/code
export OPENAI_API_KEY=your_key
cat > AGENTS.md << 'EOF'
[Describe your project architecture and key files]
EOF
code /auto "Add health check endpoint to the API"
```
Leave a review
No reviews yet. Be the first to review this skill!
# Download SKILL.md from killerskills.ai/api/skills/every-code-ai-agent/raw