From f7f2ee2070012aaf8197591dcfc7e31bd2a242be Mon Sep 17 00:00:00 2001 From: sumeyaaaa Date: Sat, 21 Feb 2026 13:55:45 +0300 Subject: [PATCH] chore: commit src/core/prompts/tools/native-tools/index.ts --- src/core/prompts/tools/native-tools/index.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/core/prompts/tools/native-tools/index.ts b/src/core/prompts/tools/native-tools/index.ts index 82915152b2..dda54abaaa 100644 --- a/src/core/prompts/tools/native-tools/index.ts +++ b/src/core/prompts/tools/native-tools/index.ts @@ -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,