Skip to content

Commit 21619ed

Browse files
committed
docs: update model references to Claude Opus 4.7
Align docs with the models actually wired up in the agents: - Opus 4.6 -> Opus 4.7 across modes, what-models, faq, how-does-it-work, and claude-code-comparison pages - Correct Thinker/Editor/Reviewer model lists in how-does-it-work.mdx to match the current agent definitions - Replace stale GPT-5.1 / Grok 4.1 / Relace mentions in faq.mdx with the Opus 4.7, GPT-5.4, and Gemini 3.1 Flash Lite setup currently in use Made-with: Cursor
1 parent 14d3e60 commit 21619ed

File tree

5 files changed

+17
-17
lines changed

5 files changed

+17
-17
lines changed

web/src/content/advanced/claude-code-comparison.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Both tools:
1414
- Run in your terminal
1515
- Understand your entire codebase context
1616
- Can edit files and execute terminal commands
17-
- Use Claude models (Codebuff uses Claude Opus 4.6 as its orchestrator)
17+
- Use Claude models (Codebuff uses Claude Opus 4.7 as its orchestrator)
1818

1919
## When to Choose Codebuff
2020

web/src/content/advanced/how-does-it-work.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Codebuff runs multiple agents, each tuned for a specific task.
1111

1212
## The Orchestrator
1313

14-
The main agent ("Buffy") runs on Claude Opus 4.6. It reads your prompt, gathers context, and spawns subagents. The orchestrator is available in several variants:
14+
The main agent ("Buffy") runs on Claude Opus 4.7. It reads your prompt, gathers context, and spawns subagents. The orchestrator is available in several variants:
1515

1616
- [`base2`](/publishers/codebuff/agents/base2) - Default mode orchestrator
1717
- [`base2-lite`](/publishers/codebuff/agents/base2-lite) - Lite mode (faster, cheaper)
@@ -23,9 +23,9 @@ The main agent ("Buffy") runs on Claude Opus 4.6. It reads your prompt, gathers
2323
- [**File Picker**](/publishers/codebuff/agents/file-picker) (Gemini 2.0 Flash) - finds relevant files
2424
- [**Code Searcher**](/publishers/codebuff/agents/code-searcher) - grep-style pattern matching
2525
- [**Researcher**](/publishers/codebuff/agents/researcher) (Grok 4 Fast) - web and docs lookup
26-
- [**Thinker**](/publishers/codebuff/agents/thinker) (GPT-5.1, Gemini 2.5 Pro) - works through hard problems
27-
- [**Editor**](/publishers/codebuff/agents/editor) (GPT-5.1, Claude Opus 4.6) - writes and modifies code
28-
- [**Reviewer**](/publishers/codebuff/agents/reviewer) (Claude Opus 4.6, GLM 5.1 in Lite mode) - catches bugs and style issues
26+
- [**Thinker**](/publishers/codebuff/agents/thinker) (Claude Opus 4.7, GPT-5.4) - works through hard problems
27+
- [**Editor**](/publishers/codebuff/agents/editor) (Claude Opus 4.7, GPT-5.1, GLM 5.1) - writes and modifies code
28+
- [**Reviewer**](/publishers/codebuff/agents/reviewer) (Claude Opus 4.7, GLM 5.1 in Lite mode) - catches bugs and style issues
2929
- [**Basher**](/publishers/codebuff/agents/basher) (Gemini 3.1 Flash Lite) - runs terminal commands
3030

3131
## Best-of-N Selection (Max Mode)

web/src/content/advanced/what-models.mdx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ The main agent ("Buffy") coordinates everything:
1616
<MarkdownTable>
1717
| Mode | Model |
1818
|------|-------|
19-
| Default | Opus 4.6 |
20-
| Plan | Opus 4.6 |
21-
| Max | Opus 4.6 |
19+
| Default | Opus 4.7 |
20+
| Plan | Opus 4.7 |
21+
| Max | Opus 4.7 |
2222
| Free | GLM 5.1 |
2323
</MarkdownTable>
2424

@@ -29,9 +29,9 @@ The orchestrator spawns these for specific jobs:
2929
<MarkdownTable>
3030
| Task | Models |
3131
|------|--------|
32-
| Code editing | Claude Opus 4.6, GLM 5.1 |
33-
| Thinking/reasoning | Claude Opus 4.6, GPT-5.4 |
34-
| Code review | Claude Opus 4.6, GPT-5.4 |
32+
| Code editing | Claude Opus 4.7, GLM 5.1 |
33+
| Thinking/reasoning | Claude Opus 4.7, GPT-5.4 |
34+
| Code review | Claude Opus 4.7, GPT-5.4 |
3535
| File discovery | Gemini 3.1 Flash Lite, Gemini 2.5 Flash Lite |
3636
| Terminal commands | Gemini 3.1 Flash Lite |
3737
| Web/docs research | Gemini 3.1 Flash Lite |

web/src/content/help/faq.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Software development: Writing features, tests, and scripts across common languag
1313

1414
## What model does Codebuff use?
1515

16-
Multiple. The orchestrator uses Claude Opus 4.6 in Default and Max modes, or GLM 5.1 in Free mode. Subagents are matched to their tasks: Claude Opus 4.6 for code editing, GPT-5.1 for deep reasoning, Grok 4.1 Fast for terminal commands and research, and Relace AI for fast file rewrites. Free mode includes code review support. See [What models do you use?](/docs/advanced/what-models) for the full breakdown.
16+
Multiple. The orchestrator uses Claude Opus 4.7 in Default and Max modes, or GLM 5.1 in Free mode. Subagents are matched to their tasks: Claude Opus 4.7 (with GLM 5.1 as a lighter option) for code editing, Claude Opus 4.7 and GPT-5.4 for deep reasoning and code review, and Gemini 3.1 Flash Lite for terminal commands, file discovery, and web/docs research. Free mode includes code review support. See [What models do you use?](/docs/advanced/what-models) for the full breakdown.
1717

1818
## Can I use my Claude Pro or Max subscription with Codebuff?
1919

web/src/content/tips/modes.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ Codebuff has four modes. Switch during a session with `Shift+Tab` or `/mode:` co
1212
<MarkdownTable>
1313
| Mode | Model | Editor Agent | Code Review |
1414
| --- | --- | --- | --- | --- |
15-
| Default | Claude Opus 4.6 | editor | Yes |
16-
| Max | Claude Opus 4.6 | editor-multi-prompt | Yes |
17-
| Plan | Claude Opus 4.6 | None | No |
15+
| Default | Claude Opus 4.7 | editor | Yes |
16+
| Max | Claude Opus 4.7 | editor-multi-prompt | Yes |
17+
| Plan | Claude Opus 4.7 | None | No |
1818
| Lite | GLM 5.1 | None | No |
1919
</MarkdownTable>
2020

2121
## Default
2222

23-
Standard mode with Claude Opus 4.6:
23+
Standard mode with Claude Opus 4.7:
2424

2525
- Spawns [file pickers](/publishers/codebuff/agents/file-picker) and [code searchers](/publishers/codebuff/agents/code-searcher) to gather context
2626
- Uses the [`editor`](/publishers/codebuff/agents/editor) agent for code changes
@@ -32,7 +32,7 @@ Switch to this mode with `/mode:default`.
3232

3333
## Max
3434

35-
Claude Opus 4.6 with best-of-N selection:
35+
Claude Opus 4.7 with best-of-N selection:
3636

3737
- Reads 12-20+ files per task
3838
- Spawns multiple [editor](/publishers/codebuff/agents/editor) agents in parallel, each with a different strategy

0 commit comments

Comments
 (0)