* wip: replace tool parameter inputs with root directory paths * fix: moved path resolving responsibility to tools - made path in parameters to optional for AI - internalised path resolving using session roots * chore: update package-lock.json * chore: fix regressions and fix CI * fix: make projectRoot required * fix: add-task tool * fix: updateTask tool * fix: remove reportProgress * chore: cleanup * fix: expand-task tool * chore: remove usless logs * fix: dependency manager logging in mcp server
133 lines
3.4 KiB
JavaScript
133 lines
3.4 KiB
JavaScript
/**
|
|
* next-task.js
|
|
* Direct function implementation for finding the next task to work on
|
|
*/
|
|
|
|
import { findNextTask } from '../../../../scripts/modules/task-manager.js';
|
|
import { readJSON } from '../../../../scripts/modules/utils.js';
|
|
import { getCachedOrExecute } from '../../tools/utils.js';
|
|
import {
|
|
enableSilentMode,
|
|
disableSilentMode
|
|
} from '../../../../scripts/modules/utils.js';
|
|
|
|
/**
|
|
* Direct function wrapper for finding the next task to work on with error handling and caching.
|
|
*
|
|
* @param {Object} args - Command arguments
|
|
* @param {string} args.tasksJsonPath - Explicit path to the tasks.json file.
|
|
* @param {Object} log - Logger object
|
|
* @returns {Promise<Object>} - Next task result { success: boolean, data?: any, error?: { code: string, message: string }, fromCache: boolean }
|
|
*/
|
|
export async function nextTaskDirect(args, log) {
|
|
// Destructure expected args
|
|
const { tasksJsonPath } = args;
|
|
|
|
if (!tasksJsonPath) {
|
|
log.error('nextTaskDirect called without tasksJsonPath');
|
|
return {
|
|
success: false,
|
|
error: {
|
|
code: 'MISSING_ARGUMENT',
|
|
message: 'tasksJsonPath is required'
|
|
},
|
|
fromCache: false
|
|
};
|
|
}
|
|
|
|
// Generate cache key using the provided task path
|
|
const cacheKey = `nextTask:${tasksJsonPath}`;
|
|
|
|
// Define the action function to be executed on cache miss
|
|
const coreNextTaskAction = async () => {
|
|
try {
|
|
// Enable silent mode to prevent console logs from interfering with JSON response
|
|
enableSilentMode();
|
|
|
|
log.info(`Finding next task from ${tasksJsonPath}`);
|
|
|
|
// Read tasks data using the provided path
|
|
const data = readJSON(tasksJsonPath);
|
|
if (!data || !data.tasks) {
|
|
disableSilentMode(); // Disable before return
|
|
return {
|
|
success: false,
|
|
error: {
|
|
code: 'INVALID_TASKS_FILE',
|
|
message: `No valid tasks found in ${tasksJsonPath}`
|
|
}
|
|
};
|
|
}
|
|
|
|
// Find the next task
|
|
const nextTask = findNextTask(data.tasks);
|
|
|
|
if (!nextTask) {
|
|
log.info(
|
|
'No eligible next task found. All tasks are either completed or have unsatisfied dependencies'
|
|
);
|
|
return {
|
|
success: true,
|
|
data: {
|
|
message:
|
|
'No eligible next task found. All tasks are either completed or have unsatisfied dependencies',
|
|
nextTask: null,
|
|
allTasks: data.tasks
|
|
}
|
|
};
|
|
}
|
|
|
|
// Restore normal logging
|
|
disableSilentMode();
|
|
|
|
// Return the next task data with the full tasks array for reference
|
|
log.info(
|
|
`Successfully found next task ${nextTask.id}: ${nextTask.title}`
|
|
);
|
|
return {
|
|
success: true,
|
|
data: {
|
|
nextTask,
|
|
allTasks: data.tasks
|
|
}
|
|
};
|
|
} catch (error) {
|
|
// Make sure to restore normal logging even if there's an error
|
|
disableSilentMode();
|
|
|
|
log.error(`Error finding next task: ${error.message}`);
|
|
return {
|
|
success: false,
|
|
error: {
|
|
code: 'CORE_FUNCTION_ERROR',
|
|
message: error.message || 'Failed to find next task'
|
|
}
|
|
};
|
|
}
|
|
};
|
|
|
|
// Use the caching utility
|
|
try {
|
|
const result = await getCachedOrExecute({
|
|
cacheKey,
|
|
actionFn: coreNextTaskAction,
|
|
log
|
|
});
|
|
log.info(`nextTaskDirect completed. From cache: ${result.fromCache}`);
|
|
return result; // Returns { success, data/error, fromCache }
|
|
} catch (error) {
|
|
// Catch unexpected errors from getCachedOrExecute itself
|
|
log.error(
|
|
`Unexpected error during getCachedOrExecute for nextTask: ${error.message}`
|
|
);
|
|
return {
|
|
success: false,
|
|
error: {
|
|
code: 'UNEXPECTED_ERROR',
|
|
message: error.message
|
|
},
|
|
fromCache: false
|
|
};
|
|
}
|
|
}
|