Skip to content

Commit 73bcca5

Browse files
committed
parentPrompt => spawnPurposePrompt
1 parent b1a9f84 commit 73bcca5

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+122
-213
lines changed

.agents/ask.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ const definition: AgentDefinition = {
2828
'think_deeply',
2929
],
3030
spawnableAgents: [`codebuff/file-picker@${version}`],
31-
parentPrompt: 'Base ask-mode agent that orchestrates the full response.',
31+
spawnPurposePrompt:
32+
'Base ask-mode agent that orchestrates the full response.',
3233
systemPrompt: `# Persona: {CODEBUFF_AGENT_NAME}
3334
3435
# Persona: Buffy - The Enthusiastic Coding Assistant

.agents/base-experimental.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ const definition: AgentDefinition = {
3838
`codebuff/thinker@${version}`,
3939
`codebuff/reviewer@${version}`,
4040
],
41-
parentPrompt: 'Base agent that orchestrates the full response.',
41+
spawnPurposePrompt: 'Base agent that orchestrates the full response.',
4242
systemPrompt: `# Persona: {CODEBUFF_AGENT_NAME}
4343
4444
**Your core identity is {CODEBUFF_AGENT_NAME}.** You are an expert coding assistant who is enthusiastic, proactive, and helpful.

.agents/base-lite.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ const definition: AgentDefinition = {
3838
`codebuff/thinker@${version}`,
3939
`codebuff/reviewer@${version}`,
4040
],
41-
parentPrompt: 'Base agent that orchestrates the full response.',
41+
spawnPurposePrompt: 'Base agent that orchestrates the full response.',
4242
systemPrompt: `# Persona: {CODEBUFF_AGENT_NAME}
4343
4444
**Your core identity is {CODEBUFF_AGENT_NAME}.** You are an expert coding assistant who is enthusiastic, proactive, and helpful.

.agents/base-max.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ const definition: AgentDefinition = {
3838
`codebuff/thinker@${version}`,
3939
`codebuff/reviewer@${version}`,
4040
],
41-
parentPrompt: 'Base agent that orchestrates the full response.',
41+
spawnPurposePrompt: 'Base agent that orchestrates the full response.',
4242
systemPrompt: `# Persona: {CODEBUFF_AGENT_NAME}
4343
4444
**Your core identity is {CODEBUFF_AGENT_NAME}.** You are an expert coding assistant who is enthusiastic, proactive, and helpful.

.agents/base.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ const definition: AgentDefinition = {
3838
`codebuff/thinker@${version}`,
3939
`codebuff/reviewer@${version}`,
4040
],
41-
parentPrompt: 'Base agent that orchestrates the full response.',
41+
spawnPurposePrompt: 'Base agent that orchestrates the full response.',
4242
systemPrompt: `# Persona: {CODEBUFF_AGENT_NAME}
4343
4444
**Your core identity is {CODEBUFF_AGENT_NAME}.** You are an expert coding assistant who is enthusiastic, proactive, and helpful.

.agents/brainstormer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ const definition: AgentDefinition = {
2424
`codebuff/researcher@${version}`,
2525
],
2626

27-
parentPrompt:
27+
spawnPurposePrompt:
2828
'Acts as a creative thought partner, generating ideas and exploring alternative viewpoints to help think through problems.',
2929

3030
systemPrompt: `# Persona: Brian the Brainstormer - Creative Thought Partner

.agents/changes-reviewer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const definition: AgentDefinition = {
2525

2626
toolNames: ['read_files', 'run_terminal_command', 'end_turn'],
2727

28-
parentPrompt: 'Spawn when you need to review code changes',
28+
spawnPurposePrompt: 'Spawn when you need to review code changes',
2929

3030
systemPrompt:
3131
'You are an expert software developer. Your job is to review code changes and provide helpful feedback.',

.agents/claude4-gemini-thinking.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ const definition: AgentDefinition = {
3434
},
3535
outputMode: 'last_message',
3636

37-
parentPrompt: 'Base agent that orchestrates the full response.',
37+
spawnPurposePrompt: 'Base agent that orchestrates the full response.',
3838
systemPrompt: `# Persona: {CODEBUFF_AGENT_NAME}
3939
4040
**Your core identity is {CODEBUFF_AGENT_NAME}.** You are an expert coding assistant who is enthusiastic, proactive, and helpful.

.agents/examples/diff-reviewer-1.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ const definition: AgentDefinition = {
77
model: 'openai/gpt-5',
88
toolNames: ['read_files', 'run_terminal_command'],
99

10-
parentPrompt: 'Spawn when you need to review code changes in the git diff',
10+
spawnPurposePrompt:
11+
'Spawn when you need to review code changes in the git diff',
1112

1213
instructionsPrompt: `Execute the following steps:
1314
1. Run git diff

.agents/examples/diff-reviewer-2.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ const definition: AgentDefinition = {
1717
},
1818
toolNames: ['read_files', 'run_terminal_command'],
1919

20-
parentPrompt: 'Spawn when you need to review code changes in the git diff',
20+
spawnPurposePrompt:
21+
'Spawn when you need to review code changes in the git diff',
2122

2223
systemPrompt:
2324
'You are an expert software developer. Your job is to review code changes and provide helpful feedback.',

0 commit comments

Comments
 (0)