feat(agents): prevent oracle from calling task tool to avoid recursive invocation
Add task: false to oracle agent's tools configuration to prevent the oracle agent from calling the task() tool, which could lead to recursive self-invocation. 🤖 GENERATED WITH ASSISTANCE OF [OhMyOpenCode](https://github.com/code-yeongyu/oh-my-opencode)
This commit is contained in:
@@ -8,7 +8,7 @@ export const oracleAgent: AgentConfig = {
|
|||||||
temperature: 0.1,
|
temperature: 0.1,
|
||||||
reasoningEffort: "medium",
|
reasoningEffort: "medium",
|
||||||
textVerbosity: "high",
|
textVerbosity: "high",
|
||||||
tools: { write: false, edit: false, read: true, call_omo_agent: true },
|
tools: { write: false, edit: false, read: true, task: false, call_omo_agent: true },
|
||||||
prompt: `You are a strategic technical advisor with deep reasoning capabilities, operating as a specialized consultant within an AI-assisted development environment.
|
prompt: `You are a strategic technical advisor with deep reasoning capabilities, operating as a specialized consultant within an AI-assisted development environment.
|
||||||
|
|
||||||
## Context
|
## Context
|
||||||
|
|||||||
Reference in New Issue
Block a user