/coder mode is specialized for software engineering tasks with a read, modify, and feedback cycle.
It provides more rigor than /agent, because the assistant follows an output contract so that ChatCLI can execute actions safely (with rollback semantics).
When to Use
Use /coder for...
Use /agent for...
Engineering Flow
Multi-Agent Orchestration
/coder includes multi-agent orchestration enabled by default. The orchestrator LLM dispatches specialized agents in parallel:
CHATCLI_AGENT_MAX_WORKERS).
CHATCLI_AGENT_PARALLEL_MODE=false if needed. See the full documentation.Output Contract
The assistant’s response format in/coder is mandatory:
Reasoning
reasoning block (2 to 6 lines).Tool Call
tool_call name="@coder" args="..." with JSON in the args.No direct commands
@coder.Contract Validation and Enforcement
When the AI violates the output contract, ChatCLI automatically detects it and injects a format correction feedback message. The turn is reprocessed until the format is correct. The enforcement rules are:agent_coder_validation.go — a dedicated module that inspects each AI response before executing any tool_call. The sequence is:
- Parse the response — extract
<reasoning>,<tool_call>, code blocks, and loose text - Reasoning check — if
<tool_call>exists but<reasoning>does not, reject - Tool name check — if the
tool_callnameis not@coder, reject - Code block check — if code blocks (
```) are present in the response, reject - Shell pattern check — detect patterns like
$ cmd,> cmd,run: cmd - If any check fails, inject feedback and retry the turn (up to 3 attempts)
Internal Difference Between /coder and /agent
Both modes use the same ReAct loop (processAIResponseAndAct). The difference is in configuration, not architecture:
/coder is /agent with additional guardrails. If you switch from /agent to /coder mid-conversation, the history is preserved — only the validation rules and system prompt change.isCoderMode flag is what activates all the differences. When true:
- The contract validator runs on every response
- The tool context is reduced to save tokens
- The format anchor is specific to
@coder - The system prompt includes base64 encoding rules
Task Tracker and Progress
When the AI includes a<reasoning> block with numbered tasks (e.g., “1. Read files\n2. Apply patch\n3. Run tests”), the TaskTracker automatically parses this and creates a TaskPlan:
How it works
- Parse: Each numbered line becomes a
Taskwith initial statusPending - Tracking: As tool_calls are executed, the current task’s status is updated
- Rendering: Progress appears below the reasoning as compact status lines
Task status
Automatic replanning
If 3 or more tasks fail consecutively, the TaskTracker signalsNeedsReplan = true. ChatCLI then injects a system message asking the AI to reformulate its plan before continuing.
The TaskTracker also computes a signature (hash) of the plan. If the AI changes its plan between turns (e.g., adds or removes tasks), the tracker detects the change and restarts tracking with the new plan.
TodoWrite parity — @todo plugin
Beyond the TaskTracker (which automatically extracts tasks from the <reasoning> block), agent mode also exposes an atomic plugin @todo with parity to Claude Code’s TodoWrite. The AI can explicitly emit:
liveTodoAdapter, so the checkbox UI renders the same plan that appears in <reasoning>. Details in Atomic Tools.
Base64 Encoding Requirements
For write and patch operations, the/coder system prompt mandates base64 encoding:
Why base64?
Source code frequently contains characters that conflict with the JSON format of args:- Double and single quotes
- Line breaks
- Backslashes (escapes)
- Indentation with tabs vs. spaces
Encoding rules
The --encoding flag
The --encoding flag controls content interpretation:
text(default): content is interpreted as literal textbase64: content is decoded from base64 before being written
System Prompt Composition in /coder
The system prompt is assembled in layers, in the following order:Layer 1: Persona or CoderSystemPrompt
--persona senior-go), the persona prompt is used as the base. Otherwise, the default CoderSystemPrompt is used.Layer 2: CoderFormatInstructions
CoderFormatInstructions are appended to the persona prompt. This ensures the persona respects the /coder output contract. When no persona is active, the instructions are already embedded in the CoderSystemPrompt.Layer 3: Workspace Context
contextBuilder:SOUL.md— personality and global guidelinesUSER.md— user preferencesRULES.md— project-specific rules
Layer 4: Tool Context
@coder schema is included: list of subcommands, required flags, and 1-2 examples per subcommand. In /coder mode, this context is reduced compared to /agent to save tokens.Layer 5: Multi-Agent Orchestrator Prompt
CHATCLI_AGENT_PARALLEL_MODE=true), the multi-agent orchestrator prompt is appended with the list of available agents and dispatch instructions.Format Anchor (Per-Turn Reminder)
At each turn of the ReAct loop, a short format reminder is appended to the message history. This prevents the AI from “forgetting” the format rules in long conversations.In /coder mode
The anchor reminds about:- Mandatory format:
<reasoning>followed by<tool_call name="@coder"> - Prohibition of code blocks and direct commands
- Base64 encoding requirement for file writes
In /agent mode
The anchor reminds about:tool_callandexecuteblock format- Tools available in the current turn
Tools and Dependency
The/coder mode uses the @coder plugin, which comes built into ChatCLI — no additional installation required.
Supported Subcommands
Example Flow
List the tree
tree --dir .Search for occurrences
search --term "FAIL" --dir .Read relevant files
read --file cli/agent_mode.goApply patch
patch --file cli/agent_mode.go --search "..." --replace "..."Run tests
exec --cmd "go test ./..."Operation Parallelization
/coder maximizes parallelism by emitting multiple tool_calls in a single response when operations are independent. For example, when needing to read 3 files, the AI emits 3 tool_call tags at once instead of one per turn.
For complex tasks with 3+ independent operations, the AI uses <agent_call> to dispatch specialized agents in parallel via goroutines.
User Interaction (Ask When Needed)
The AI doesn’t always have all the information needed to execute a task. When it needs data that only the user can provide (database choice, framework, credentials, options), the AI asks directly instead of guessing.How It Works
When the AI responds without emitting anytool_call (just text with a question), ChatCLI detects this and:
- Displays the AI’s question normally
- Shows a
Waiting for your response...prompt instead of ending the session - Waits for the user to type a response
- Adds the response to the history and continues the ReAct cycle
<reasoning> + <tool_call> as usual.
Multiline Responses
For complex responses, use multiline mode with--- (``` is also accepted as a fence opener):
Coder-mode prompt UX (parity with chat)
The input that appears while/coder is waiting for your reply uses the same readline engine as chat mode (go-prompt + BracketedPasteParser). That means:
Exiting the Session
To end the session when the AI is waiting, type:exit,quit, orsair- Or press
Ctrl+C
/coder system prompt. The AI is instructed not to emit tool_calls when it needs user-provided information, but instead ask the question directly. This ensures ChatCLI detects the question and waits for the response.FAQ
Can I use JSON in args?
Can I use JSON in args?
tool_call name="@coder" args='{"cmd":"read","args":{"file":"main.go"}}'When should I use patch --diff?
When should I use patch --diff?
text or base64.Do I need to install @coder separately?
Do I need to install @coder separately?
@coder is a builtin plugin — it comes embedded in the binary. If you install a custom version in ~/.chatcli/plugins/, it will take precedence over the builtin.Is exec safe?
Is exec safe?
@coder exec blocks dangerous patterns by default. For sensitive commands, prefer using the Git subcommands and test.Is there a read limit?
Is there a read limit?
read --max-bytes, --head, or --tail to control the output size.How does /coder handle AI format errors?
How does /coder handle AI format errors?
Can I use /coder with a custom persona?
Can I use /coder with a custom persona?
--persona senior-go), the persona prompt is used as the base and CoderFormatInstructions are automatically appended. This ensures the persona respects the /coder output contract without losing its custom personality.What is the Task Tracker?
What is the Task Tracker?
<reasoning> block (e.g., “1. Read files\n2. Apply patch”). Each task receives a status (Pending, InProgress, Completed, Failed) that is updated as tool_calls are executed. Progress is displayed in the interface. If 3+ tasks fail, ChatCLI asks the AI to reformulate its plan.Why is base64 required for write?
Why is base64 required for write?