codesmith has two related concepts:
- TUI mode: what kind of visible interaction you're in (Plan/Agent/YOLO).
- Approval mode: how aggressively the UI asks before executing tools.
On top of both sits the named mode layer: one command (/mode minimal)
that bundles every dial below — tools, thinking, memory, approvals,
sub-agents, model — into a shareable TOML file.
Model selection is separate. --model auto and /model auto route each turn to
a concrete model and thinking level; they are not TUI modes and are not part of
the Tab cycle.
A mode is a delta bundle of dials in a single TOML file. Anything the file leaves out keeps its current value, so a mode composes with your existing config instead of replacing it.
codesmith --mode minimal # tiny surface, thinking off, no memory
codesmith --mode maximal # everything on
/mode list # see every mode visible to this workspace
/mode plan # switch mid-session (hot)
/mode export my-setup # snapshot current dials to a shareable file
/mode off # drop the mode layer, keep current dialsBuilt-in modes:
| Mode | Thinking | Tools | Memory | Sub-agents |
|---|---|---|---|---|
minimal |
off | core file + shell only (tools.include) |
goldfish (none) | off |
balanced |
inherits | inherits | inherits | inherits |
maximal |
max | full surface | elephant (auto + decay) | 20 |
plan |
inherits | read-only + plan tooling | notebook (explicit only) | inherits |
Mode files live in two scanned directories, later layers overriding built-ins by name:
~/.codesmith/modes/*.toml— your modes, everywhere<workspace>/.codesmith/modes/*.toml— project modes (commit these)
A mode file's full schema (every field optional):
name = "review"
description = "Read-only code review posture"
app_mode = "agent" # agent | yolo | plan | coordinator
reasoning_effort = "high" # off | low | medium | high | max | auto
approval_policy = "never" # suggest | auto | never
sandbox_mode = "read-only" # read-only | workspace-write | danger-full-access
memory_level = "notebook" # goldfish | notebook | elephant
max_subagents = 2
model = "deepseek-v4-pro"
provider = "deepseek" # startup-only; needs a restart to change
[tools]
include = ["read_file", "grep_files", "list_dir"] # allowlist when set
exclude = ["exec_shell"] # trimmed after include
[features]
subagents = false
web_search = falseMemory dials (memory_level) map onto the existing multi-layer memory
system (docs/MEMORY.md): goldfish disables cross-session
memory, notebook keeps only what you explicitly save (# note,
/remember), elephant turns on Knowledge On Demand with budget and decay.
Hot vs. restart. App mode, thinking, approvals, tool allow/denylists, sub-agent cap, and model switch on the next turn. Provider, feature flags, and memory injection are read at engine startup — switching to a mode that sets them prints what will apply after restart.
Precedence for the active mode: --mode name (CLI) > mode = "name" in
config.toml > the last mode picked in the TUI (persisted in settings.toml).
Unsetting is /mode off.
Press Tab to complete composer menus, queue a draft as a next-turn follow-up
while a turn is running, or cycle through the visible modes when the composer is
otherwise idle: Plan → Agent → YOLO → Plan.
Press Shift+Tab to cycle reasoning effort.
Run /mode to open the mode picker, or switch directly with /mode agent,
/mode plan, /mode yolo, /mode 1, /mode 2, or /mode 3.
- Plan: design-first prompting. Read-only investigation tools stay available; shell and patch execution stay off. Use this when you want to think out loud and produce a plan to hand to a human (yourself later, or a reviewer).
- Agent: multi-step tool use. Shell execution (
exec_shell,task_shell_start,task_shell_wait) requiresallow_shell = truein config; approval prompts gate each call. File writes are allowed without a prompt. - YOLO: enables shell + trust mode and auto-approves all tools. Use only in trusted repos.
All action-capable modes have access to persistent RLM sessions through rlm_open, rlm_eval, rlm_configure, and rlm_close. Inside an RLM Python REPL, sub_query_batch fans out 1-16 cheap parallel child calls pinned to deepseek-v4-flash. The model reaches for it when work is too large or repetitive for the parent transcript.
The fast deepseek-v4-flash / thinking-off path is called Fin in the product
language. Fin is a seam for routing, summaries, cheap child calls, and
coordination work; it does not change approval behavior.
/goal sets a session objective with an optional token budget and keeps that
objective visible as Work context. It does not change the active TUI mode,
approval mode, or model route. This remains distinct from --model auto, which
only controls model and thinking selection.
Use codesmith --model auto or /model auto when you want codesmith to decide how much model and reasoning power a turn needs.
Auto mode controls two settings together:
- Model:
deepseek-v4-flashordeepseek-v4-pro - Thinking:
off,high, ormax
Before the real turn is sent, the app makes a small deepseek-v4-flash routing call with thinking off. That router looks at the latest request and recent context, then selects a concrete model and thinking level for the real request. Short/simple turns can stay on Flash with thinking off; coding, debugging, release work, architecture, security review, or ambiguous multi-step tasks can move up to Pro and/or higher thinking.
auto is local to codesmith. The upstream API never receives model: "auto"; it receives the concrete model and thinking setting chosen for that turn. The TUI shows the selected route, and cost tracking is charged against the model that actually ran. If the router call fails or returns an invalid answer, the app falls back to a local heuristic. Sub-agents inherit auto mode unless you assign them an explicit model.
Use a fixed model or fixed thinking level when you want repeatable benchmarking, a strict cost ceiling, or a specific provider/model mapping.
- Older settings files with
default_mode = "normal"still load asagent; saving rewrites the normalized value.
Esc is a cancel stack, not a mode switch.
- Close slash menus or transient UI first.
- Cancel the active request if a turn is running.
- Discard a queued draft if the composer is empty.
- Clear the current input if text is present.
- Otherwise it is a no-op.
You can override approval behavior at runtime:
/config
# edit the approval_mode row to: suggest | auto | never
Legacy note: /set approval_mode ... was retired in favor of /config.
suggest(default): uses the per-mode rules above.auto: auto-approves all tools (similar to YOLO approval behavior, but without forcing YOLO mode).never: blocks any tool that isn't considered safe/read-only.
When terminal height is constrained, the status area compacts first so header/chat/composer/footer remain visible:
- Loading and queued status rows are budgeted by available height.
- Queued previews collapse to compact summaries when full previews do not fit.
/queueworkflows remain available; compact status only affects rendering density.
By default, file tools are restricted to the --workspace directory. Enable trust mode to allow file access outside the workspace:
/trust
YOLO mode enables trust mode automatically.
MCP tools are exposed as mcp__<server>__<tool> (double underscore; the old single-underscore mcp_<server>_<tool> spelling is still accepted as a legacy alias) and use the same approval flow as built-in tools. Read-only MCP helpers may auto-run in suggestive approval modes; MCP tools with possible side effects require approval.
See MCP.md.
Run codesmith --help for the canonical list. Common flags:
-p, --prompt <TEXT>: one-shot prompt mode (prints and exits)codesmith exec --auto --output-format stream-json <PROMPT>: run the tool-backed non-interactive agent and emit one JSON object per line for harnesses and backend wrapperscodesmith exec --resume <ID|PREFIX> <PROMPT>/--session-id <ID|PREFIX>: continue a saved session non-interactivelycodesmith exec --continue <PROMPT>: continue the most recent saved session for this workspace non-interactivelycodesmith swebench run --instance-id <ID> --issue-file <PATH>: run the tool-backed agent on one SWE-bench task and write/update a prediction JSONL rowcodesmith fork <ID|PREFIX>/codesmith fork --last: copy a saved session into a new sibling session; forked sessions retain additive parent-session metadata and show that lineage in session listings--model <MODEL>: when using thecodesmithfacade, forward a model override to the TUI--workspace <DIR>: workspace root for file tools--yolo: start in YOLO mode-r, --resume <ID|PREFIX|latest>: resume a saved session-c, --continue: resume the most recent session in this workspace--max-subagents <N>: clamp to1..=20--mouse-capture/--no-mouse-capture: opt in or out of internal mouse scrolling, transcript selection, right-click context actions, and transcript scrollbar dragging. Mouse capture is enabled by default on non-Windows terminals and on Windows Terminal/ConEmu/Cmder so drag selection copies only transcript text, removes visual wrap-column line breaks from paragraphs, and stays scoped to the transcript pane; hold Shift while dragging or use--no-mouse-capturefor raw terminal selection. It defaults off on legacy Windows console (CMD withoutWT_SESSION/ConEmuPID) and inside JetBrains JediTerm — PyCharm/IDEA/CLion/etc. — where the terminal advertises mouse support but forwards SGR mouse events as raw text (#878, #898). Use--mouse-captureto opt in anywhere it's defaulted off. Raw terminal selection may cross the right sidebar and include visual wraps because the terminal, not the TUI, owns the selection.--profile <NAME>: select config profile--mode <NAME>: apply a named mode (minimal | balanced | maximal | plan | custom); see Named Modes--config <PATH>: config file path-v, --verbose: verbose logging
CodeSmith has three related but intentionally separate recovery paths:
codesmith fork <ID>creates a new saved session from an existing saved conversation and records the source session id. This is the safe way to explore a different answer path without overwriting the original session.- Esc-Esc backtrack rewinds the live transcript to a previous user prompt and restores that prompt into the composer for editing.
/restoreand therevert_turntool restore workspace files from side-git snapshots. They do not rewrite conversation history.
A Pi-style in-file tree browser is a larger UI/data-model project. v0.8.40 ships the bounded fork/backtrack primitives and explicit lineage metadata.