Removes unused import statements identified after the major refactoring of the AI service layer and other components. This cleanup improves code clarity and removes unnecessary dependencies.
Unused imports removed from:
- **`mcp-server/src/core/direct-functions/analyze-task-complexity.js`:**
- Removed `path`
- **`mcp-server/src/core/direct-functions/complexity-report.js`:**
- Removed `path`
- **`mcp-server/src/core/direct-functions/expand-all-tasks.js`:**
- Removed `path`, `fs`
- **`mcp-server/src/core/direct-functions/generate-task-files.js`:**
- Removed `path`
- **`mcp-server/src/core/direct-functions/parse-prd.js`:**
- Removed `os`, `findTasksJsonPath`
- **`mcp-server/src/core/direct-functions/update-tasks.js`:**
- Removed `isSilentMode`
- **`mcp-server/src/tools/add-task.js`:**
- Removed `createContentResponse`, `executeTaskMasterCommand`
- **`mcp-server/src/tools/analyze.js`:**
- Removed `getProjectRootFromSession` (as `projectRoot` is now required in args)
- **`mcp-server/src/tools/expand-task.js`:**
- Removed `path`
- **`mcp-server/src/tools/initialize-project.js`:**
- Removed `createContentResponse`
- **`mcp-server/src/tools/parse-prd.js`:**
- Removed `findPRDDocumentPath`, `resolveTasksOutputPath` (logic moved or handled by `resolveProjectPaths`)
- **`mcp-server/src/tools/update.js`:**
- Removed `getProjectRootFromSession` (as `projectRoot` is now required in args)
- **`scripts/modules/commands.js`:**
- Removed `exec`, `readline`
- Removed AI config getters (`getMainModelId`, etc.)
- Removed MCP helpers (`getMcpApiKeyStatus`)
- **`scripts/modules/config-manager.js`:**
- Removed `ZodError`, `readJSON`, `writeJSON`
- **`scripts/modules/task-manager/analyze-task-complexity.js`:**
- Removed AI config getters (`getMainModelId`, etc.)
- **`scripts/modules/task-manager/expand-all-tasks.js`:**
- Removed `fs`, `path`, `writeJSON`
- **`scripts/modules/task-manager/models.js`:**
- Removed `VALID_PROVIDERS`
- **`scripts/modules/task-manager/update-subtask-by-id.js`:**
- Removed AI config getters (`getMainModelId`, etc.)
- **`scripts/modules/task-manager/update-tasks.js`:**
- Removed AI config getters (`getMainModelId`, etc.)
- **`scripts/modules/ui.js`:**
- Removed `getDebugFlag`
- **`scripts/modules/utils.js`:**
- Removed `ZodError`
130 lines
3.3 KiB
JavaScript
130 lines
3.3 KiB
JavaScript
/**
|
|
* complexity-report.js
|
|
* Direct function implementation for displaying complexity analysis report
|
|
*/
|
|
|
|
import {
|
|
readComplexityReport,
|
|
enableSilentMode,
|
|
disableSilentMode
|
|
} from '../../../../scripts/modules/utils.js';
|
|
import { getCachedOrExecute } from '../../tools/utils.js';
|
|
|
|
/**
|
|
* Direct function wrapper for displaying the complexity report with error handling and caching.
|
|
*
|
|
* @param {Object} args - Command arguments containing reportPath.
|
|
* @param {string} args.reportPath - Explicit path to the complexity report file.
|
|
* @param {Object} log - Logger object
|
|
* @returns {Promise<Object>} - Result object with success status and data/error information
|
|
*/
|
|
export async function complexityReportDirect(args, log) {
|
|
// Destructure expected args
|
|
const { reportPath } = args;
|
|
try {
|
|
log.info(`Getting complexity report with args: ${JSON.stringify(args)}`);
|
|
|
|
// Check if reportPath was provided
|
|
if (!reportPath) {
|
|
log.error('complexityReportDirect called without reportPath');
|
|
return {
|
|
success: false,
|
|
error: { code: 'MISSING_ARGUMENT', message: 'reportPath is required' },
|
|
fromCache: false
|
|
};
|
|
}
|
|
|
|
// Use the provided report path
|
|
log.info(`Looking for complexity report at: ${reportPath}`);
|
|
|
|
// Generate cache key based on report path
|
|
const cacheKey = `complexityReport:${reportPath}`;
|
|
|
|
// Define the core action function to read the report
|
|
const coreActionFn = async () => {
|
|
try {
|
|
// Enable silent mode to prevent console logs from interfering with JSON response
|
|
enableSilentMode();
|
|
|
|
const report = readComplexityReport(reportPath);
|
|
|
|
// Restore normal logging
|
|
disableSilentMode();
|
|
|
|
if (!report) {
|
|
log.warn(`No complexity report found at ${reportPath}`);
|
|
return {
|
|
success: false,
|
|
error: {
|
|
code: 'FILE_NOT_FOUND_ERROR',
|
|
message: `No complexity report found at ${reportPath}. Run 'analyze-complexity' first.`
|
|
}
|
|
};
|
|
}
|
|
|
|
return {
|
|
success: true,
|
|
data: {
|
|
report,
|
|
reportPath
|
|
}
|
|
};
|
|
} catch (error) {
|
|
// Make sure to restore normal logging even if there's an error
|
|
disableSilentMode();
|
|
|
|
log.error(`Error reading complexity report: ${error.message}`);
|
|
return {
|
|
success: false,
|
|
error: {
|
|
code: 'READ_ERROR',
|
|
message: error.message
|
|
}
|
|
};
|
|
}
|
|
};
|
|
|
|
// Use the caching utility
|
|
try {
|
|
const result = await getCachedOrExecute({
|
|
cacheKey,
|
|
actionFn: coreActionFn,
|
|
log
|
|
});
|
|
log.info(
|
|
`complexityReportDirect completed. From cache: ${result.fromCache}`
|
|
);
|
|
return result; // Returns { success, data/error, fromCache }
|
|
} catch (error) {
|
|
// Catch unexpected errors from getCachedOrExecute itself
|
|
// Ensure silent mode is disabled
|
|
disableSilentMode();
|
|
|
|
log.error(
|
|
`Unexpected error during getCachedOrExecute for complexityReport: ${error.message}`
|
|
);
|
|
return {
|
|
success: false,
|
|
error: {
|
|
code: 'UNEXPECTED_ERROR',
|
|
message: error.message
|
|
},
|
|
fromCache: false
|
|
};
|
|
}
|
|
} catch (error) {
|
|
// Ensure silent mode is disabled if an outer error occurs
|
|
disableSilentMode();
|
|
|
|
log.error(`Error in complexityReportDirect: ${error.message}`);
|
|
return {
|
|
success: false,
|
|
error: {
|
|
code: 'UNEXPECTED_ERROR',
|
|
message: error.message
|
|
},
|
|
fromCache: false
|
|
};
|
|
}
|
|
}
|