Skip to content

Commit 4b76bc0

Browse files
committed
Update .agents and agents-graveyard with new opus
1 parent 9d433a6 commit 4b76bc0

File tree

8 files changed

+16
-18
lines changed

8 files changed

+16
-18
lines changed

.agents/claude-code-cli.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const baseDefinition = createCliAgent({
1010
startCommand: 'claude --dangerously-skip-permissions',
1111
permissionNote:
1212
'Always use `--dangerously-skip-permissions` when testing to avoid permission prompts that would block automated tests.',
13-
model: 'anthropic/claude-opus-4.5',
13+
model: 'anthropic/claude-opus-4.6',
1414
})
1515

1616
// Constants must be inside handleSteps since it gets serialized via .toString()

.agents/codebuff-local-cli.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const baseDefinition = createCliAgent({
1010
startCommand: 'bun --cwd=cli run dev',
1111
permissionNote:
1212
'No permission flags needed for Codebuff local dev server.',
13-
model: 'anthropic/claude-opus-4.5',
13+
model: 'anthropic/claude-opus-4.6',
1414
skipPrepPhase: true,
1515
spawnerPromptExtras: `**Purpose:** E2E visual testing of the Codebuff CLI itself. This agent starts a local dev Codebuff CLI instance and interacts with it to verify UI behavior.
1616

.agents/codex-cli.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ const baseDefinition = createCliAgent({
8181
startCommand: 'codex -a never -s danger-full-access',
8282
permissionNote:
8383
'Always use `-a never -s danger-full-access` when testing to avoid approval prompts that would block automated tests.',
84-
model: 'anthropic/claude-opus-4.5',
84+
model: 'anthropic/claude-opus-4.6',
8585
extraInputParams: {
8686
reviewType: {
8787
type: 'string',

.agents/gemini-cli.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const baseDefinition = createCliAgent({
1010
startCommand: 'gemini --yolo',
1111
permissionNote:
1212
'Always use `--yolo` (or `--approval-mode yolo`) when testing to auto-approve all tool actions and avoid prompts that would block automated tests.',
13-
model: 'anthropic/claude-opus-4.5',
13+
model: 'anthropic/claude-opus-4.6',
1414
cliSpecificDocs: `## Gemini CLI Commands
1515
1616
Gemini CLI uses slash commands for navigation:

agents-graveyard/editor/best-of-n/best-of-n-selector.ts

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export const createBestOfNSelector = (options: {
1717
model: isSonnet
1818
? 'anthropic/claude-sonnet-4.5'
1919
: isOpus
20-
? 'anthropic/claude-opus-4.5'
20+
? 'anthropic/claude-opus-4.6'
2121
: isGemini
2222
? 'google/gemini-3-pro-preview'
2323
: 'openai/gpt-5.1',
@@ -108,13 +108,12 @@ Try to select an implementation that fulfills all the requirements in the user's
108108
109109
## Response Format
110110
111-
${
112-
isSonnet || isOpus
113-
? `Use <think> tags to write out your thoughts about the implementations as needed to pick the best implementation. IMPORTANT: You should think really really hard to make sure you pick the absolute best implementation! As soon as you know for sure which implementation is the best, you should output your choice.
111+
${isSonnet || isOpus
112+
? `Use <think> tags to write out your thoughts about the implementations as needed to pick the best implementation. IMPORTANT: You should think really really hard to make sure you pick the absolute best implementation! As soon as you know for sure which implementation is the best, you should output your choice.
114113
115114
Then, do not write any other explanations AT ALL. You should directly output a single tool call to set_output with the selected implementationId and short reason.`
116-
: `Output a single tool call to set_output with the selected implementationId. Do not write anything else.`
117-
}`,
115+
: `Output a single tool call to set_output with the selected implementationId. Do not write anything else.`
116+
}`,
118117
}
119118
}
120119

agents-graveyard/editor/best-of-n/editor-implementor2.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export const createBestOfNImplementor2 = (options: {
1313
model: isGpt5
1414
? 'openai/gpt-5.2'
1515
: isOpus
16-
? 'anthropic/claude-opus-4.5'
16+
? 'anthropic/claude-opus-4.6'
1717
: 'anthropic/claude-sonnet-4.5',
1818
displayName: isGpt5
1919
? 'GPT-5 Implementation Generator v2'

agents-graveyard/editor/best-of-n/editor-multi-prompt2.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import type { SecretAgentDefinition } from '../../types/secret-agent-definition'
1010
export function createMultiPromptEditor(): Omit<SecretAgentDefinition, 'id'> {
1111
return {
1212
publisher,
13-
model: 'anthropic/claude-opus-4.5',
13+
model: 'anthropic/claude-opus-4.6',
1414
displayName: 'Multi-Prompt Editor',
1515
spawnerPrompt:
1616
'Edits code by spawning multiple implementor agents with different strategy prompts, selects the best implementation, and applies the changes. It also returns further suggested improvements which you should take seriously and act on. Pass as input an array of short prompts specifying different implementation approaches or strategies. Make sure to read any files intended to be edited before spawning this agent.',

agents-graveyard/editor/reviewer-editor.ts

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export const createCodeEditor = (options: {
1212
model:
1313
options.model === 'gpt-5'
1414
? 'openai/gpt-5.1'
15-
: 'anthropic/claude-opus-4.5',
15+
: 'anthropic/claude-opus-4.6',
1616
displayName: 'Code Editor',
1717
spawnerPrompt:
1818
'Expert code reviewer that reviews recent code changes and makes improvements.',
@@ -58,10 +58,9 @@ OR for new files or major rewrites:
5858
}
5959
</codebuff_tool_call>
6060
61-
${
62-
model === 'gpt-5'
63-
? ''
64-
: `Before you start writing your implementation, you should use <think> tags to think about the best way to implement the changes.
61+
${model === 'gpt-5'
62+
? ''
63+
: `Before you start writing your implementation, you should use <think> tags to think about the best way to implement the changes.
6564
6665
You can also use <think> tags interspersed between tool calls to think about the best way to implement the changes.
6766
@@ -88,7 +87,7 @@ You can also use <think> tags interspersed between tool calls to think about the
8887
</codebuff_tool_call>
8988
9089
</example>`
91-
}
90+
}
9291
9392
### Simplify the code.
9493

0 commit comments

Comments
 (0)