feat(show): add comma-separated ID support for multi-task viewing

- Enhanced get-task/show command to support comma-separated task IDs for efficient batch operations.
- New features include multiple task retrieval, smart display logic, interactive action menu with batch operations, MCP array response for AI agent efficiency, and support for mixed parent tasks and subtasks.
- Implementation includes updated CLI show command, enhanced MCP get_task tool, modified showTaskDirect function, and maintained full backward compatibility.
- Documentation updated across all relevant files.

Benefits include faster context gathering for AI agents, improved workflow with interactive batch operations, better UX with responsive layout, and enhanced API efficiency.
This commit is contained in:
Eyal Toledano
2025-05-25 19:39:23 -04:00
parent 3352a6a99f
commit 05a389e171
3 changed files with 116 additions and 32 deletions

View File

@@ -73,6 +73,7 @@ import {
displayModelConfiguration,
displayAvailableModels,
displayApiKeyStatus,
displayAiUsageSummary,
displayMultipleTasksSummary
} from './ui.js';
@@ -1444,7 +1445,7 @@ function registerCommands(programInstance) {
'Additional custom context to include in the research prompt'
)
.option(
'--project-tree',
'-t, --tree',
'Include project file tree structure in the research context'
)
.option(
@@ -1578,7 +1579,7 @@ function registerCommands(programInstance) {
taskIds: taskIds,
filePaths: filePaths,
customContext: options.context ? options.context.trim() : null,
includeProjectTree: !!options.projectTree,
includeProjectTree: !!options.tree,
saveTarget: options.save ? options.save.trim() : null,
detailLevel: options.detail ? options.detail.toLowerCase() : 'medium',
tasksPath: tasksPath,