File tree Expand file tree Collapse file tree 5 files changed +15
-13
lines changed
Expand file tree Collapse file tree 5 files changed +15
-13
lines changed Original file line number Diff line number Diff line change @@ -37,11 +37,10 @@ import { generateImageTool } from "../tools/GenerateImageTool"
3737import { applyDiffTool as applyDiffToolClass } from "../tools/ApplyDiffTool"
3838import { isValidToolName , validateToolUse } from "../tools/validateToolUse"
3939import { codebaseSearchTool } from "../tools/CodebaseSearchTool"
40- import { selectActiveIntentTool } from "../tools/SelectActiveIntentTool"
41-
4240import { formatResponse } from "../prompts/responses"
4341import { sanitizeToolUseId } from "../../utils/tool-id"
44- import { HookEngine } from "../hooks/HookEngine"
42+ import { HookEngine } from "../../hooks/HookEngine"
43+ import { selectActiveIntentTool } from "../../hooks/SelectActiveIntentTool"
4544
4645/**
4746 * Processes and presents assistant message content to the user interface.
Original file line number Diff line number Diff line change @@ -4,9 +4,9 @@ import * as fs from "fs/promises"
44import * as path from "path"
55import * as os from "os"
66
7- import { selectActiveIntentTool } from "../SelectActiveIntentTool"
7+ import { selectActiveIntentTool } from "../../../hooks/ SelectActiveIntentTool"
88import type { ToolUse } from "../../../shared/tools"
9- import type { AgentTraceEntry } from "../../orchestration /OrchestrationDataModel"
9+ import type { AgentTraceEntry } from "../../../hooks /OrchestrationDataModel"
1010
1111describe ( "SelectActiveIntentTool - Phase 1 End-to-End Test" , ( ) => {
1212 let testWorkspaceDir : string
Original file line number Diff line number Diff line change 1- import { Task } from "../task/Task"
2- import type { ToolUse } from "../../ shared/tools"
1+ import { Task } from "../core/ task/Task"
2+ import type { ToolUse } from "../shared/tools"
33import type { ToolName } from "@roo-code/types"
4- import { OrchestrationDataModel , type ActiveIntent } from "../orchestration /OrchestrationDataModel"
4+ import { OrchestrationDataModel , type ActiveIntent } from "./OrchestrationDataModel"
55import * as vscode from "vscode"
66import * as path from "path"
77import * as fs from "fs/promises"
@@ -339,3 +339,4 @@ export class HookEngine {
339339 }
340340 }
341341}
342+
Original file line number Diff line number Diff line change @@ -257,3 +257,4 @@ This file contains persistent knowledge shared across parallel sessions (Archite
257257 return this . orchestrationDir
258258 }
259259}
260+
Original file line number Diff line number Diff line change 1- import { Task } from "../task/Task"
2- import { formatResponse } from "../prompts/responses"
3- import { BaseTool , ToolCallbacks } from "./BaseTool"
4- import type { ToolUse } from "../../ shared/tools"
5- import { OrchestrationDataModel } from "../orchestration /OrchestrationDataModel"
1+ import { Task } from "../core/ task/Task"
2+ import { formatResponse } from "../core/ prompts/responses"
3+ import { BaseTool , ToolCallbacks } from "../core/tools /BaseTool"
4+ import type { ToolUse } from "../shared/tools"
5+ import { OrchestrationDataModel } from "./OrchestrationDataModel"
66
77interface SelectActiveIntentParams {
88 intent_id : string
@@ -126,3 +126,4 @@ ${recentHistorySection}
126126}
127127
128128export const selectActiveIntentTool = new SelectActiveIntentTool ( )
129+
You can’t perform that action at this time.
0 commit comments