fix: models setup command not working (#952)

* fix: models command not working

* chore: re-order supported models to something that makes more sense

* chore: format
This commit is contained in:
Ralph Khreish
2025-07-10 12:56:41 +03:00
committed by GitHub
parent 0253f3ed87
commit 4312d3bd67
2 changed files with 323 additions and 323 deletions

View File

@@ -3455,7 +3455,7 @@ Examples:
.action(async (options) => {
// Initialize TaskMaster
const taskMaster = initTaskMaster({
tasksPath: options.file || true
tasksPath: options.file || false
});
// Validate flags: cannot use multiple provider flags simultaneously
const providerFlags = [
@@ -3485,7 +3485,7 @@ Examples:
// Action 1: Run Interactive Setup
console.log(chalk.blue('Starting interactive model setup...')); // Added feedback
try {
await runInteractiveSetup(projectRoot);
await runInteractiveSetup(taskMaster.getProjectRoot());
// runInteractiveSetup logs its own completion/error messages
} catch (setupError) {
console.error(