From cc31520f3ffbab9688154c1c5c844992f0884292 Mon Sep 17 00:00:00 2001 From: Joe Danziger Date: Wed, 4 Jun 2025 19:49:13 -0400 Subject: [PATCH] restore comments --- scripts/init.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/scripts/init.js b/scripts/init.js index 19725c2a..993ecb38 100755 --- a/scripts/init.js +++ b/scripts/init.js @@ -308,6 +308,12 @@ async function initializeProject(options = {}) { console.log('SKIPPING PROMPTS - Using defaults or provided values'); } + // Use provided options or defaults + const projectName = options.name || 'task-master-project'; + const projectDescription = + options.description || 'A project managed with Task Master AI'; + const projectVersion = options.version || '0.1.0'; + const authorName = options.author || 'Vibe coder'; const dryRun = options.dryRun || false; const addAliases = options.aliases || false;