fix(agents): include custom agents in orchestrator delegation prompt (#1623)

This commit is contained in:
YeonGyu-Kim
2026-02-08 13:34:47 +09:00
parent 71ac54c33e
commit f035be842d
5 changed files with 165 additions and 25 deletions
+2 -2
View File
@@ -1,8 +1,8 @@
import type { AgentPromptMetadata, BuiltinAgentName } from "./types"
import type { AgentPromptMetadata } from "./types"
import { truncateDescription } from "../shared/truncate-description"
export interface AvailableAgent {
name: BuiltinAgentName
name: string
description: string
metadata: AgentPromptMetadata
}