-
Notifications
You must be signed in to change notification settings - Fork 24
✨ Interactive diagnostic issue selection UX #647
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
cb48aba
c4c2946
29fcd07
c7d9787
8611964
494407e
5ba2520
22fc266
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @@ -1,12 +1,14 @@ | ||||||||||||||||||||||||||||||
| import { basename } from "path"; | ||||||||||||||||||||||||||||||
| import { TasksList } from "./types"; | ||||||||||||||||||||||||||||||
| import { DiagnosticIssue, DiagnosticSummary } from "@editor-extensions/shared"; | ||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||
| /** | ||||||||||||||||||||||||||||||
| * Summarizes the tasks into a string to be displayed to the user. | ||||||||||||||||||||||||||||||
| * Summarizes the tasks into structured data for interactive display. | ||||||||||||||||||||||||||||||
| * @param tasks - The tasks to summarize. | ||||||||||||||||||||||||||||||
| */ | ||||||||||||||||||||||||||||||
| export function summarizeTasks(tasks: TasksList): string { | ||||||||||||||||||||||||||||||
| export function summarizeTasksStructured(tasks: TasksList): DiagnosticSummary { | ||||||||||||||||||||||||||||||
| const uriToTasksMap = new Map<string, string[]>(); | ||||||||||||||||||||||||||||||
| const issuesByFile: Record<string, DiagnosticIssue[]> = {}; | ||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||
| tasks.currentTasks.forEach((task) => { | ||||||||||||||||||||||||||||||
| const uri = task.getUri(); | ||||||||||||||||||||||||||||||
|
|
@@ -18,8 +20,21 @@ export function summarizeTasks(tasks: TasksList): string { | |||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||
| let summary = "### New issues:\n"; | ||||||||||||||||||||||||||||||
| uriToTasksMap.forEach((taskList, uri) => { | ||||||||||||||||||||||||||||||
| summary += `- ${taskList.length} new issues in **${basename(uri)}**.\n`; | ||||||||||||||||||||||||||||||
| const filename = basename(uri); | ||||||||||||||||||||||||||||||
| summary += `- ${taskList.length} new issues in **${filename}**.\n`; | ||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||
| // Create structured issues for this file | ||||||||||||||||||||||||||||||
| const uniqueTasks = Array.from(new Set(taskList)); | ||||||||||||||||||||||||||||||
| const fileIssues: DiagnosticIssue[] = uniqueTasks.map((task) => ({ | ||||||||||||||||||||||||||||||
| id: `${uri}-${task}`, | ||||||||||||||||||||||||||||||
| message: task.length > 200 ? task.slice(0, 197) + "..." : task, | ||||||||||||||||||||||||||||||
| uri, | ||||||||||||||||||||||||||||||
| filename, | ||||||||||||||||||||||||||||||
| })); | ||||||||||||||||||||||||||||||
|
Comment on lines
22
to
+33
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🛠️ Refactor suggestion Improve ID generation for diagnostic issues The current ID generation using
Consider using a more robust approach: - const fileIssues: DiagnosticIssue[] = uniqueTasks.map((task) => ({
- id: `${uri}-${task}`,
+ const fileIssues: DiagnosticIssue[] = uniqueTasks.map((task, index) => ({
+ id: `${filename}-issue-${index}`,
message: task.length > 200 ? task.slice(0, 197) + "..." : task,
uri,
filename,
}));📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||
| issuesByFile[filename] = fileIssues; | ||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||
| // Show first 2 issues in summary | ||||||||||||||||||||||||||||||
| uniqueTasks.slice(0, Math.min(2, uniqueTasks.length)).forEach((task) => { | ||||||||||||||||||||||||||||||
| summary += ` - ${task.length > 200 ? task.slice(0, 197) + "..." : task}\n`; | ||||||||||||||||||||||||||||||
| }); | ||||||||||||||||||||||||||||||
|
|
@@ -37,7 +52,19 @@ export function summarizeTasks(tasks: TasksList): string { | |||||||||||||||||||||||||||||
| }); | ||||||||||||||||||||||||||||||
| } | ||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||
| return summary; | ||||||||||||||||||||||||||||||
| return { | ||||||||||||||||||||||||||||||
| summary, | ||||||||||||||||||||||||||||||
| issuesByFile, | ||||||||||||||||||||||||||||||
| totalIssues: tasks.currentTasks.length, | ||||||||||||||||||||||||||||||
| }; | ||||||||||||||||||||||||||||||
| } | ||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||
| /** | ||||||||||||||||||||||||||||||
| * Summarizes the tasks into a string to be displayed to the user. | ||||||||||||||||||||||||||||||
| * @param tasks - The tasks to summarize. | ||||||||||||||||||||||||||||||
| */ | ||||||||||||||||||||||||||||||
| export function summarizeTasks(tasks: TasksList): string { | ||||||||||||||||||||||||||||||
| return summarizeTasksStructured(tasks).summary; | ||||||||||||||||||||||||||||||
| } | ||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||
| /** | ||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -7,11 +7,12 @@ import { | |||||||||||||||||||||||||||||||||||||||||
| KaiWorkflowMessageType, | ||||||||||||||||||||||||||||||||||||||||||
| KaiUserInteraction, | ||||||||||||||||||||||||||||||||||||||||||
| } from "@editor-extensions/agentic"; | ||||||||||||||||||||||||||||||||||||||||||
| import { flattenCurrentTasks, summarizeTasks, type TasksList } from "../../taskManager"; | ||||||||||||||||||||||||||||||||||||||||||
| import { flattenCurrentTasks, type TasksList } from "../../taskManager"; | ||||||||||||||||||||||||||||||||||||||||||
| import { ExtensionState } from "../../extensionState"; | ||||||||||||||||||||||||||||||||||||||||||
| import { ChatMessageType, ToolMessageValue } from "@editor-extensions/shared"; | ||||||||||||||||||||||||||||||||||||||||||
| import { handleModifiedFileMessage } from "./handleModifiedFile"; | ||||||||||||||||||||||||||||||||||||||||||
| import { MessageQueueManager, handleUserInteractionComplete } from "./queueManager"; | ||||||||||||||||||||||||||||||||||||||||||
| import { summarizeTasksStructured } from "../../taskManager/utils"; | ||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||
| // Helper function to wait for analysis completion with timeout | ||||||||||||||||||||||||||||||||||||||||||
| const waitForAnalysisCompletion = async (state: ExtensionState): Promise<void> => { | ||||||||||||||||||||||||||||||||||||||||||
|
|
@@ -47,8 +48,16 @@ const resetStuckAnalysisFlags = (state: ExtensionState): void => { | |||||||||||||||||||||||||||||||||||||||||
| }; | ||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||
| // Helper function to create tasks message | ||||||||||||||||||||||||||||||||||||||||||
| const createTasksMessage = (tasks: TasksList): string => { | ||||||||||||||||||||||||||||||||||||||||||
| return `It appears that my fixes caused following issues:\n\n${summarizeTasks(tasks)}\n\nDo you want me to continue fixing them?`; | ||||||||||||||||||||||||||||||||||||||||||
| const createTasksMessage = (tasks: TasksList): { message: string; diagnosticSummary: any } => { | ||||||||||||||||||||||||||||||||||||||||||
| const diagnosticSummary = summarizeTasksStructured(tasks); | ||||||||||||||||||||||||||||||||||||||||||
| return { | ||||||||||||||||||||||||||||||||||||||||||
| message: `It appears that my fixes caused following issues. Please review the issues below and select which ones you'd like me to fix. `, | ||||||||||||||||||||||||||||||||||||||||||
| diagnosticSummary: { | ||||||||||||||||||||||||||||||||||||||||||
| summary: diagnosticSummary.summary, | ||||||||||||||||||||||||||||||||||||||||||
| issuesByFile: diagnosticSummary.issuesByFile, | ||||||||||||||||||||||||||||||||||||||||||
| totalIssues: diagnosticSummary.totalIssues, | ||||||||||||||||||||||||||||||||||||||||||
| }, | ||||||||||||||||||||||||||||||||||||||||||
| }; | ||||||||||||||||||||||||||||||||||||||||||
| }; | ||||||||||||||||||||||||||||||||||||||||||
|
Comment on lines
+51
to
61
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🛠️ Refactor suggestion | 🟠 Major Use proper type instead of The return type uses Apply this diff: +import { DiagnosticSummary } from "@editor-extensions/shared";
+
-const createTasksMessage = (tasks: TasksList): { message: string; diagnosticSummary: any } => {
+const createTasksMessage = (tasks: TasksList): { message: string; diagnosticSummary: DiagnosticSummary } => {
const diagnosticSummary = summarizeTasksStructured(tasks);
return {
message: `It appears that my fixes caused following issues. Please review the issues below and select which ones you'd like me to fix. `,
- diagnosticSummary: {
- summary: diagnosticSummary.summary,
- issuesByFile: diagnosticSummary.issuesByFile,
- totalIssues: diagnosticSummary.totalIssues,
- },
+ diagnosticSummary,
};
};📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||
| // Helper function to handle user interaction promises uniformly | ||||||||||||||||||||||||||||||||||||||||||
|
|
@@ -111,12 +120,14 @@ const handleTasksInteraction = async ( | |||||||||||||||||||||||||||||||||||||||||
| } | ||||||||||||||||||||||||||||||||||||||||||
| // Show tasks to user and wait for response | ||||||||||||||||||||||||||||||||||||||||||
| state.mutateData((draft) => { | ||||||||||||||||||||||||||||||||||||||||||
| const tasksMessage = createTasksMessage(rawTasks); | ||||||||||||||||||||||||||||||||||||||||||
| draft.chatMessages.push({ | ||||||||||||||||||||||||||||||||||||||||||
| kind: ChatMessageType.String, | ||||||||||||||||||||||||||||||||||||||||||
| messageToken: msg.id, | ||||||||||||||||||||||||||||||||||||||||||
| timestamp: new Date().toISOString(), | ||||||||||||||||||||||||||||||||||||||||||
| value: { | ||||||||||||||||||||||||||||||||||||||||||
| message: createTasksMessage(rawTasks), | ||||||||||||||||||||||||||||||||||||||||||
| message: tasksMessage.message, | ||||||||||||||||||||||||||||||||||||||||||
| diagnosticSummary: tasksMessage.diagnosticSummary, | ||||||||||||||||||||||||||||||||||||||||||
| tasksData: flattenCurrentTasks(rawTasks), | ||||||||||||||||||||||||||||||||||||||||||
| }, | ||||||||||||||||||||||||||||||||||||||||||
| quickResponses: [ | ||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||
Uh oh!
There was an error while loading. Please reload this page.