Modes
Codebuff has four modes. Switch during a session with Shift+Tab or /mode: commands.
| Mode | Model | Editor Agent | Code Review | --- | --- | --- | --- | --- | |
|---|---|---|---|---|---|---|---|---|---|
| Yes | Plan | Claude Opus 4.7 | None | No | Lite | ||||
| None | No |
Default
Standard mode with Claude Opus 4.7:
- Spawns file pickers and code searchers to gather context
- Uses the
editoragent for code changes - Spawns
thinkerfor complex problems - Runs code review after changes
- Validates with typechecks and tests
Switch to this mode with /mode:default.
Max
Claude Opus 4.7 with best-of-N selection:
- Reads 12-20+ files per task
- Spawns multiple editor agents in parallel, each with a different strategy
- A selector compares outputs and picks the best one
- Spawns
thinker-best-of-n-opusfor hard problems - Spawns multiple reviewers with different focus areas
- Runs typechecks and tests on both the changed files and the full project
Use for complex features and refactors.
Switch to this mode with /mode:max.
Plan
Planning mode. No file writes.
- Gathers context about your codebase
- Asks clarifying questions using
ask_user - Outputs a spec/plan wrapped in
<PLAN>tags - Includes requirements, constraints, and relevant files
Use this to scope out work before implementing, or to discuss approaches without making changes.
Switch to this mode with /mode:plan.
Lite
Kimi K2.6, cheaper and faster.
An efficient mode for most coding tasks.
Switch to this mode with /mode:lite.