Skip to content

Commit bd4e8be

Browse files
committed
Clean up plan mode docs
1 parent 6951336 commit bd4e8be

File tree

1 file changed

+17
-29
lines changed

1 file changed

+17
-29
lines changed

web/src/content/tips/modes.mdx

Lines changed: 17 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,16 @@ order: 2
77

88
# Modes
99

10-
Codebuff has four modes. Start with `--lite` or `--max` flags, or switch during a session with `Ctrl+M` or `/mode:` commands.
10+
Codebuff has four modes. Switch during a session with `Shift+Tab` or `/mode:` commands.
11+
12+
<MarkdownTable>
13+
| Mode | Model | Editor Agent | Code Review |
14+
| --- | --- | --- | --- | --- |
15+
| Default | Claude Opus 4.5 | editor | Yes |
16+
| Lite | Grok 4.1 Fast | editor-gpt-5 | No |
17+
| Max | Claude Opus 4.5 | editor-multi-prompt | Yes |
18+
| Plan | Claude Opus 4.5 | None | No |
19+
</MarkdownTable>
1120

1221
## Default
1322

@@ -23,22 +32,22 @@ Standard mode with Claude Opus 4.5:
2332
codebuff # no flag needed
2433
```
2534

26-
## Lite (`--lite`)
35+
## Lite
2736

2837
Faster and cheaper with Grok 4.1 Fast:
2938

3039
- Reduced file context gathering
31-
- Uses `editor-gpt-5` for code changes
40+
- Uses GPT-5 for code change with the `editor-gpt-5` agent
3241
- Skips code review
33-
- No todo tracking or followup suggestions
42+
- No todo tracking
3443

3544
Best for quick fixes and simple questions.
3645

3746
```bash
3847
codebuff --lite
3948
```
4049

41-
## Max (`--max`)
50+
## Max
4251

4352
Uses Claude Opus 4.5 with more context gathering:
4453

@@ -54,9 +63,9 @@ Best for complex features and refactors.
5463
codebuff --max
5564
```
5665

57-
## Plan (`/mode:plan`)
66+
## Plan
5867

59-
Planning mode. No file writes. Only available via slash command during a session.
68+
Planning mode. No file writes.
6069

6170
- Gathers context about your codebase
6271
- Asks clarifying questions using `ask_user`
@@ -65,28 +74,7 @@ Planning mode. No file writes. Only available via slash command during a session
6574

6675
Use this to scope out work before implementing, or to discuss approaches without making changes.
6776

68-
```
69-
/mode:plan
70-
```
71-
72-
## Mode Comparison
73-
74-
<MarkdownTable>
75-
| Mode | How to activate | Model | Editor Agent | Code Review |
76-
| --- | --- | --- | --- | --- |
77-
| Default | `codebuff` | Claude Opus 4.5 | `editor` | Yes |
78-
| Lite | `codebuff --lite` | Grok 4.1 Fast | `editor-gpt-5` | No |
79-
| Max | `codebuff --max` | Claude Opus 4.5 | `editor-multi-prompt` | Yes |
80-
| Plan | `/mode:plan` | Claude Opus 4.5 | None | No |
81-
</MarkdownTable>
82-
83-
## Switching Modes
84-
85-
**At startup:**
8677
```bash
87-
codebuff --lite
88-
codebuff --max
78+
codebuff --plan
8979
```
9080

91-
**During a session:**
92-
Press `Ctrl+M` to cycle through modes, or type `/mode:default`, `/mode:lite`, `/mode:max`, or `/mode:plan`.

0 commit comments

Comments
 (0)