Skip to content

Commit 2c0e9aa

Browse files
committed
fix types
1 parent 2ff6368 commit 2c0e9aa

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.agents/factory/superagent.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ export const superagent = (
99
allAvailableAgents?: string[],
1010
): Omit<SecretAgentDefinition, 'id'> => ({
1111
model,
12-
displayName: AGENT_PERSONAS.superagent.displayName,
13-
spawnerPrompt: AGENT_PERSONAS.superagent.purpose,
12+
displayName: 'Superagent',
13+
spawnerPrompt: 'Superagent that can spawn multiple code editing agents to complete a task.',
1414
inputSchema: {
1515
prompt: {
1616
type: 'string',

.agents/factory/thinking-base.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ export const thinkingBase = (
3838
allAvailableAgents?: string[],
3939
): Omit<SecretAgentDefinition, 'id'> => ({
4040
model,
41-
displayName: AGENT_PERSONAS['base-lite'].displayName,
42-
spawnerPrompt: AGENT_PERSONAS['base-lite'].purpose,
41+
displayName: 'Buffy the Lite Base Agent',
42+
spawnerPrompt: 'Lite base agent that orchestrates the full response.',
4343
inputSchema: {
4444
prompt: {
4545
type: 'string',

0 commit comments

Comments
 (0)