feat(agents): change librarian model from Haiku to Sonnet

Upgrade librarian agent to use claude-sonnet-4 instead of claude-haiku-4-5
for improved code search and documentation capabilities.

Closes #22

🤖 GENERATED WITH ASSISTANCE OF [OhMyOpenCode](https://github.com/code-yeongyu/oh-my-opencode)
This commit is contained in:
YeonGyu-Kim
2025-12-13 19:05:45 +09:00
parent 1752b1caf9
commit a7507ab43d

View File

@@ -4,7 +4,7 @@ export const librarianAgent: AgentConfig = {
description: description:
"Specialized codebase understanding agent for multi-repository analysis, searching remote codebases, retrieving official documentation, and finding implementation examples using GitHub CLI, Context7, and Web Search. MUST BE USED when users ask to look up code in remote repositories, explain library internals, or find usage examples in open source.", "Specialized codebase understanding agent for multi-repository analysis, searching remote codebases, retrieving official documentation, and finding implementation examples using GitHub CLI, Context7, and Web Search. MUST BE USED when users ask to look up code in remote repositories, explain library internals, or find usage examples in open source.",
mode: "subagent", mode: "subagent",
model: "anthropic/claude-haiku-4-5", model: "anthropic/claude-sonnet-4",
temperature: 0.1, temperature: 0.1,
tools: { write: false, edit: false }, tools: { write: false, edit: false },
prompt: `# THE LIBRARIAN prompt: `# THE LIBRARIAN