chore: commit src/core/prompts/tools/native-tools/index.ts

This commit is contained in:
sumeyaaaa 2026-02-21 13:55:45 +03:00
parent 4e866f64c6
commit f7f2ee2070

View file

@ -21,6 +21,8 @@ import switchMode from "./switch_mode"
import updateTodoList from "./update_todo_list"
import writeToFile from "./write_to_file"
import selectActiveIntent from "./select_active_intent"
import createIntent from "./create_intent"
import recordLesson from "./record_lesson"
export { getMcpServerTools } from "./mcp_server"
export { convertOpenAIToolToAnthropic, convertOpenAIToolsToAnthropic } from "./converters"
@ -49,6 +51,8 @@ export function getNativeTools(options: NativeToolsOptions = {}): OpenAI.Chat.Ch
return [
selectActiveIntent, // Must be first - required before code changes
createIntent, // Create new intents based on prompts
recordLesson, // Record lessons learned to AGENT.md (Phase 4)
accessMcpResource,
apply_diff,
applyPatch,