You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .agents/templates/brainstormer.ts
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -6,14 +6,14 @@ export default {
6
6
version: '1.0.0',
7
7
override: false,
8
8
9
-
name: 'Brian the Brainstormer',
10
-
purpose:
9
+
displayName: 'Brian the Brainstormer',
10
+
parentPrompt:
11
11
'Acts as a creative thought partner, generating ideas and exploring alternative viewpoints to help think through problems.',
12
12
model: 'anthropic/claude-4-sonnet-20250522',
13
13
outputMode: 'last_message',
14
14
includeMessageHistory: true,
15
15
toolNames: ['end_turn'],
16
-
spawnableAgents: ['thinker','researcher'],
16
+
subagents: ['thinker','researcher'],
17
17
parentInstructions: {
18
18
base: 'Spawn brainstormer when you need creative alternatives, want to challenge assumptions, or explore different approaches to implementation problems',
19
19
base_lite:
@@ -27,7 +27,7 @@ export default {
27
27
reviewer:
28
28
'Engage brainstormer for creative problem-solving approaches to code review and innovative improvement suggestions',
29
29
},
30
-
promptSchema: {
30
+
inputSchema: {
31
31
prompt: z.toJSONSchema(
32
32
z.string().describe('The problem or topic to brainstorm about.')
33
33
),
@@ -37,8 +37,8 @@ export default {
37
37
path: '.agents/templates/brainstormer-system.md',
38
38
},
39
39
40
-
userInputPrompt:
40
+
instructionsPrompt:
41
41
'Act as a creative thought partner. Generate multiple perspectives, challenge assumptions, explore alternatives, and ask probing questions to help think through problems more thoroughly.',
42
-
agentStepPrompt:
42
+
stepPrompt:
43
43
"Continue brainstorming and exploring ideas. When you're done, use the end_turn tool: ",
Copy file name to clipboardExpand all lines: .agents/templates/git-committer.ts
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -4,10 +4,10 @@ export default {
4
4
id: 'CodebuffAI/git-committer',
5
5
version: '0.0.1',
6
6
model: 'anthropic/claude-sonnet-4',
7
-
name: 'Git Committer',
8
-
purpose:
7
+
displayName: 'Git Committer',
8
+
parentPrompt:
9
9
'A git committer agent specialized to commit current changes with an appropriate commit message.',
10
-
promptSchema: {
10
+
inputSchema: {
11
11
prompt: {
12
12
type: 'string',
13
13
description: 'What changes to commit',
@@ -24,9 +24,9 @@ export default {
24
24
],
25
25
systemPrompt:
26
26
'You are an expert software developer. Your job is to create a git commit with a really good commit message.',
27
-
userInputPrompt: {
27
+
instructionsPrompt: {
28
28
path: './git-committer-user-prompt.md',
29
29
},
30
-
agentStepPrompt:
30
+
stepPrompt:
31
31
'Make sure to end your response by using set_output to output a structured summary of what you committed and whether it was successful. Finally, use end_turn to end your turn.',
Copy file name to clipboardExpand all lines: .agents/templates/knowledge-keeper.ts
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -4,8 +4,8 @@ export default {
4
4
id: 'knowledge-keeper',
5
5
version: '1.0.0',
6
6
override: false,
7
-
name: 'Kendra the Knowledge Keeper',
8
-
purpose:
7
+
displayName: 'Kendra the Knowledge Keeper',
8
+
parentPrompt:
9
9
'Expert at gathering, organizing, and maintaining project knowledge files and documentation.',
10
10
model: 'anthropic/claude-4-sonnet-20250522',
11
11
outputMode: 'last_message',
@@ -19,8 +19,8 @@ export default {
19
19
'spawn_agents',
20
20
'end_turn',
21
21
],
22
-
spawnableAgents: ['file_picker','researcher'],
23
-
promptSchema: {
22
+
subagents: ['file_picker','researcher'],
23
+
inputSchema: {
24
24
prompt: {
25
25
type: 'string',
26
26
description: 'A request to gather, organize, or update project knowledge',
@@ -43,8 +43,8 @@ export default {
43
43
},
44
44
systemPrompt:
45
45
'You are Kendra the Knowledge Keeper, a specialized agent focused on gathering, organizing, and maintaining project knowledge. Your mission is to ensure that important information about the codebase, patterns, decisions, and institutional memory is properly documented and accessible.\n\nYour core responsibilities:\n1. Knowledge Discovery: Find and analyze existing knowledge files, documentation, and code patterns\n2. Knowledge Organization: Structure information logically and maintain consistency\n3. Knowledge Creation: Create new knowledge files when gaps are identified\n4. Knowledge Maintenance: Update existing knowledge files with new insights\n5. Knowledge Synthesis: Combine information from multiple sources into coherent documentation\n\nAlways start by reading existing knowledge.md files and documentation. Focus on actionable insights that help developers work more effectively. End your response with the end_turn tool.',
46
-
userInputPrompt:
46
+
instructionsPrompt:
47
47
'Analyze the current state of project knowledge and provide recommendations for improvements. Focus on knowledge gaps, quality issues, organization problems, and actionable improvements. Then implement the most important changes.',
48
-
agentStepPrompt:
48
+
stepPrompt:
49
49
'Continue your knowledge management work. Focus on the most impactful improvements and always end with the end_turn tool.',
0 commit comments