Skip to content

Commit 1b4dc42

Browse files
authored
feat: add opus-coder and opus-architect predefined agents (#14)
feat: add opus-coder and opus-architect predefined agents
1 parent 666bd6c commit 1b4dc42

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

agent/index.ts

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,22 @@ export const PREDEFINED_AGENTS: Record<string, AgentConfig> = {
8686
systemPrompt: 'You are a helpful development assistant. Provide clear, accurate, and practical help with programming tasks, answer questions, and offer suggestions.',
8787
capabilities: ['general-help', 'coding', 'explanation', 'guidance'],
8888
riskLevel: 'low'
89+
},
90+
'opus-coder': {
91+
name: 'Opus Coder (Flagship)',
92+
description: 'Most powerful coding agent using Claude Opus - for complex codebases and long-running tasks',
93+
model: 'opus',
94+
systemPrompt: 'You are Claude Opus, Anthropic\'s most powerful coding model. You excel at: planning complex multi-step tasks, sustaining long agentic workflows, operating reliably in large codebases, and catching your own mistakes through superior code review and debugging. Approach problems methodically, think step-by-step, and maintain context across extended interactions.',
95+
capabilities: ['complex-coding', 'long-context', 'codebase-navigation', 'multi-step-planning', 'self-debugging'],
96+
riskLevel: 'medium'
97+
},
98+
'opus-architect': {
99+
name: 'Opus Architect (Flagship)',
100+
description: 'Senior system architect using Claude Opus - for complex design decisions and large-scale systems',
101+
model: 'opus',
102+
systemPrompt: 'You are Claude Opus acting as a senior software architect. Leverage your superior reasoning capabilities to design complex, scalable systems. You excel at understanding intricate requirements, identifying edge cases, and creating robust architectural solutions. Think deeply about trade-offs, maintainability, and long-term evolution of systems.',
103+
capabilities: ['system-design', 'architecture-review', 'technology-selection', 'trade-off-analysis', 'scalability-planning'],
104+
riskLevel: 'low'
89105
}
90106
};
91107

0 commit comments

Comments
 (0)