Compare commits
4 Commits
feat.247
...
fix/211-li
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
36cc324dc3 | ||
|
|
d75a6f3d00 | ||
|
|
d99fa00980 | ||
|
|
b2ccd60526 |
6
.changeset/moody-pugs-grab.md
Normal file
6
.changeset/moody-pugs-grab.md
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
---
|
||||||
|
'task-master-ai': patch
|
||||||
|
---
|
||||||
|
|
||||||
|
- Fix `task-master init` polluting codebase with new packages inside `package.json` and modifying project `README`
|
||||||
|
- Now only initializes with cursor rules, windsurf rules, mcp.json, scripts/example_prd.txt, .gitignore modifications, and `README-task-master.md`
|
||||||
5
.changeset/polite-candles-follow.md
Normal file
5
.changeset/polite-candles-follow.md
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
'task-master-ai': minor
|
||||||
|
---
|
||||||
|
|
||||||
|
Add `npx task-master-ai` that runs mcp instead of using `task-master-mcp``
|
||||||
5
.changeset/true-adults-build.md
Normal file
5
.changeset/true-adults-build.md
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
'task-master-ai': patch
|
||||||
|
---
|
||||||
|
|
||||||
|
Fixed a bug that prevented the task-master from running in a Linux container
|
||||||
@@ -146,7 +146,7 @@ To enable enhanced task management capabilities directly within Cursor using the
|
|||||||
4. Configure with the following details:
|
4. Configure with the following details:
|
||||||
- Name: "Task Master"
|
- Name: "Task Master"
|
||||||
- Type: "Command"
|
- Type: "Command"
|
||||||
- Command: "npx -y task-master-mcp"
|
- Command: "npx -y task-master-ai"
|
||||||
5. Save the settings
|
5. Save the settings
|
||||||
|
|
||||||
Once configured, you can interact with Task Master's task management commands directly through Cursor's interface, providing a more integrated experience.
|
Once configured, you can interact with Task Master's task management commands directly through Cursor's interface, providing a more integrated experience.
|
||||||
|
|||||||
10
README.md
10
README.md
@@ -20,20 +20,14 @@ A task management system for AI-driven development with Claude, designed to work
|
|||||||
|
|
||||||
MCP (Model Control Protocol) provides the easiest way to get started with Task Master directly in your editor.
|
MCP (Model Control Protocol) provides the easiest way to get started with Task Master directly in your editor.
|
||||||
|
|
||||||
1. **Install the package**
|
1. **Add the MCP config to your editor** (Cursor recommended, but it works with other text editors):
|
||||||
|
|
||||||
```bash
|
|
||||||
npm i -g task-master-ai
|
|
||||||
```
|
|
||||||
|
|
||||||
2. **Add the MCP config to your editor** (Cursor recommended, but it works with other text editors):
|
|
||||||
|
|
||||||
```json
|
```json
|
||||||
{
|
{
|
||||||
"mcpServers": {
|
"mcpServers": {
|
||||||
"taskmaster-ai": {
|
"taskmaster-ai": {
|
||||||
"command": "npx",
|
"command": "npx",
|
||||||
"args": ["-y", "task-master-mcp"],
|
"args": ["-y", "task-master-ai"],
|
||||||
"env": {
|
"env": {
|
||||||
"ANTHROPIC_API_KEY": "YOUR_ANTHROPIC_API_KEY_HERE",
|
"ANTHROPIC_API_KEY": "YOUR_ANTHROPIC_API_KEY_HERE",
|
||||||
"PERPLEXITY_API_KEY": "YOUR_PERPLEXITY_API_KEY_HERE",
|
"PERPLEXITY_API_KEY": "YOUR_PERPLEXITY_API_KEY_HERE",
|
||||||
|
|||||||
@@ -10,20 +10,14 @@ There are two ways to set up Task Master: using MCP (recommended) or via npm ins
|
|||||||
|
|
||||||
MCP (Model Control Protocol) provides the easiest way to get started with Task Master directly in your editor.
|
MCP (Model Control Protocol) provides the easiest way to get started with Task Master directly in your editor.
|
||||||
|
|
||||||
1. **Install the package**
|
1. **Add the MCP config to your editor** (Cursor recommended, but it works with other text editors):
|
||||||
|
|
||||||
```bash
|
|
||||||
npm i -g task-master-ai
|
|
||||||
```
|
|
||||||
|
|
||||||
2. **Add the MCP config to your editor** (Cursor recommended, but it works with other text editors):
|
|
||||||
|
|
||||||
```json
|
```json
|
||||||
{
|
{
|
||||||
"mcpServers": {
|
"mcpServers": {
|
||||||
"taskmaster-ai": {
|
"taskmaster-ai": {
|
||||||
"command": "npx",
|
"command": "npx",
|
||||||
"args": ["-y", "task-master-mcp"],
|
"args": ["-y", "task-master-ai"],
|
||||||
"env": {
|
"env": {
|
||||||
"ANTHROPIC_API_KEY": "YOUR_ANTHROPIC_API_KEY_HERE",
|
"ANTHROPIC_API_KEY": "YOUR_ANTHROPIC_API_KEY_HERE",
|
||||||
"PERPLEXITY_API_KEY": "YOUR_PERPLEXITY_API_KEY_HERE",
|
"PERPLEXITY_API_KEY": "YOUR_PERPLEXITY_API_KEY_HERE",
|
||||||
|
|||||||
44
index.js
44
index.js
@@ -46,22 +46,18 @@ export const initProject = async (options = {}) => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
// Export a function to run init as a CLI command
|
// Export a function to run init as a CLI command
|
||||||
export const runInitCLI = async () => {
|
export const runInitCLI = async (options = {}) => {
|
||||||
// Using spawn to ensure proper handling of stdio and process exit
|
try {
|
||||||
const child = spawn('node', [resolve(__dirname, './scripts/init.js')], {
|
const init = await import('./scripts/init.js');
|
||||||
stdio: 'inherit',
|
const result = await init.initializeProject(options);
|
||||||
cwd: process.cwd()
|
return result;
|
||||||
});
|
} catch (error) {
|
||||||
|
console.error('Initialization failed:', error.message);
|
||||||
return new Promise((resolve, reject) => {
|
if (process.env.DEBUG === 'true') {
|
||||||
child.on('close', (code) => {
|
console.error('Debug stack trace:', error.stack);
|
||||||
if (code === 0) {
|
}
|
||||||
resolve();
|
throw error; // Re-throw to be handled by the command handler
|
||||||
} else {
|
}
|
||||||
reject(new Error(`Init script exited with code ${code}`));
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
};
|
};
|
||||||
|
|
||||||
// Export version information
|
// Export version information
|
||||||
@@ -79,11 +75,21 @@ if (import.meta.url === `file://${process.argv[1]}`) {
|
|||||||
program
|
program
|
||||||
.command('init')
|
.command('init')
|
||||||
.description('Initialize a new project')
|
.description('Initialize a new project')
|
||||||
.action(() => {
|
.option('-y, --yes', 'Skip prompts and use default values')
|
||||||
runInitCLI().catch((err) => {
|
.option('-n, --name <n>', 'Project name')
|
||||||
|
.option('-d, --description <description>', 'Project description')
|
||||||
|
.option('-v, --version <version>', 'Project version', '0.1.0')
|
||||||
|
.option('-a, --author <author>', 'Author name')
|
||||||
|
.option('--skip-install', 'Skip installing dependencies')
|
||||||
|
.option('--dry-run', 'Show what would be done without making changes')
|
||||||
|
.option('--aliases', 'Add shell aliases (tm, taskmaster)')
|
||||||
|
.action(async (cmdOptions) => {
|
||||||
|
try {
|
||||||
|
await runInitCLI(cmdOptions);
|
||||||
|
} catch (err) {
|
||||||
console.error('Init failed:', err.message);
|
console.error('Init failed:', err.message);
|
||||||
process.exit(1);
|
process.exit(1);
|
||||||
});
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
program
|
program
|
||||||
|
|||||||
5
package-lock.json
generated
5
package-lock.json
generated
@@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "task-master-ai",
|
"name": "task-master-ai",
|
||||||
"version": "0.10.1",
|
"version": "0.11.1",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "task-master-ai",
|
"name": "task-master-ai",
|
||||||
"version": "0.10.1",
|
"version": "0.11.1",
|
||||||
"license": "MIT WITH Commons-Clause",
|
"license": "MIT WITH Commons-Clause",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@anthropic-ai/sdk": "^0.39.0",
|
"@anthropic-ai/sdk": "^0.39.0",
|
||||||
@@ -31,6 +31,7 @@
|
|||||||
},
|
},
|
||||||
"bin": {
|
"bin": {
|
||||||
"task-master": "bin/task-master.js",
|
"task-master": "bin/task-master.js",
|
||||||
|
"task-master-ai": "mcp-server/server.js",
|
||||||
"task-master-mcp": "mcp-server/server.js"
|
"task-master-mcp": "mcp-server/server.js"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
|||||||
@@ -1,12 +1,13 @@
|
|||||||
{
|
{
|
||||||
"name": "task-master-ai",
|
"name": "task-master-ai",
|
||||||
"version": "0.11.0",
|
"version": "0.11.1",
|
||||||
"description": "A task management system for ambitious AI-driven development that doesn't overwhelm and confuse Cursor.",
|
"description": "A task management system for ambitious AI-driven development that doesn't overwhelm and confuse Cursor.",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"bin": {
|
"bin": {
|
||||||
"task-master": "bin/task-master.js",
|
"task-master": "bin/task-master.js",
|
||||||
"task-master-mcp": "mcp-server/server.js"
|
"task-master-mcp": "mcp-server/server.js",
|
||||||
|
"task-master-ai": "mcp-server/server.js"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "node --experimental-vm-modules node_modules/.bin/jest",
|
"test": "node --experimental-vm-modules node_modules/.bin/jest",
|
||||||
|
|||||||
249
scripts/init.js
249
scripts/init.js
@@ -15,7 +15,6 @@
|
|||||||
|
|
||||||
import fs from 'fs';
|
import fs from 'fs';
|
||||||
import path from 'path';
|
import path from 'path';
|
||||||
import { execSync } from 'child_process';
|
|
||||||
import readline from 'readline';
|
import readline from 'readline';
|
||||||
import { fileURLToPath } from 'url';
|
import { fileURLToPath } from 'url';
|
||||||
import { dirname } from 'path';
|
import { dirname } from 'path';
|
||||||
@@ -179,9 +178,6 @@ function copyTemplateFile(templateName, targetPath, replacements = {}) {
|
|||||||
|
|
||||||
// Map template names to their actual source paths
|
// Map template names to their actual source paths
|
||||||
switch (templateName) {
|
switch (templateName) {
|
||||||
case 'dev.js':
|
|
||||||
sourcePath = path.join(__dirname, 'dev.js');
|
|
||||||
break;
|
|
||||||
case 'scripts_README.md':
|
case 'scripts_README.md':
|
||||||
sourcePath = path.join(__dirname, '..', 'assets', 'scripts_README.md');
|
sourcePath = path.join(__dirname, '..', 'assets', 'scripts_README.md');
|
||||||
break;
|
break;
|
||||||
@@ -297,61 +293,8 @@ function copyTemplateFile(templateName, targetPath, replacements = {}) {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Handle package.json - merge dependencies
|
|
||||||
if (filename === 'package.json') {
|
|
||||||
log('info', `${targetPath} already exists, merging dependencies...`);
|
|
||||||
try {
|
|
||||||
const existingPackageJson = JSON.parse(
|
|
||||||
fs.readFileSync(targetPath, 'utf8')
|
|
||||||
);
|
|
||||||
const newPackageJson = JSON.parse(content);
|
|
||||||
|
|
||||||
// Merge dependencies, preferring existing versions in case of conflicts
|
|
||||||
existingPackageJson.dependencies = {
|
|
||||||
...newPackageJson.dependencies,
|
|
||||||
...existingPackageJson.dependencies
|
|
||||||
};
|
|
||||||
|
|
||||||
// Add our scripts if they don't already exist
|
|
||||||
existingPackageJson.scripts = {
|
|
||||||
...existingPackageJson.scripts,
|
|
||||||
...Object.fromEntries(
|
|
||||||
Object.entries(newPackageJson.scripts).filter(
|
|
||||||
([key]) => !existingPackageJson.scripts[key]
|
|
||||||
)
|
|
||||||
)
|
|
||||||
};
|
|
||||||
|
|
||||||
// Preserve existing type if present
|
|
||||||
if (!existingPackageJson.type && newPackageJson.type) {
|
|
||||||
existingPackageJson.type = newPackageJson.type;
|
|
||||||
}
|
|
||||||
|
|
||||||
fs.writeFileSync(
|
|
||||||
targetPath,
|
|
||||||
JSON.stringify(existingPackageJson, null, 2)
|
|
||||||
);
|
|
||||||
log(
|
|
||||||
'success',
|
|
||||||
`Updated ${targetPath} with required dependencies and scripts`
|
|
||||||
);
|
|
||||||
} catch (error) {
|
|
||||||
log('error', `Failed to merge package.json: ${error.message}`);
|
|
||||||
// Fallback to writing a backup of the existing file and creating a new one
|
|
||||||
const backupPath = `${targetPath}.backup-${Date.now()}`;
|
|
||||||
fs.copyFileSync(targetPath, backupPath);
|
|
||||||
log('info', `Created backup of existing package.json at ${backupPath}`);
|
|
||||||
fs.writeFileSync(targetPath, content);
|
|
||||||
log(
|
|
||||||
'warn',
|
|
||||||
`Replaced ${targetPath} with new content (due to JSON parsing error)`
|
|
||||||
);
|
|
||||||
}
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Handle README.md - offer to preserve or create a different file
|
// Handle README.md - offer to preserve or create a different file
|
||||||
if (filename === 'README.md') {
|
if (filename === 'README-task-master.md') {
|
||||||
log('info', `${targetPath} already exists`);
|
log('info', `${targetPath} already exists`);
|
||||||
// Create a separate README file specifically for this project
|
// Create a separate README file specifically for this project
|
||||||
const taskMasterReadmePath = path.join(
|
const taskMasterReadmePath = path.join(
|
||||||
@@ -361,7 +304,7 @@ function copyTemplateFile(templateName, targetPath, replacements = {}) {
|
|||||||
fs.writeFileSync(taskMasterReadmePath, content);
|
fs.writeFileSync(taskMasterReadmePath, content);
|
||||||
log(
|
log(
|
||||||
'success',
|
'success',
|
||||||
`Created ${taskMasterReadmePath} (preserved original README.md)`
|
`Created ${taskMasterReadmePath} (preserved original README-task-master.md)`
|
||||||
);
|
);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -396,6 +339,30 @@ async function initializeProject(options = {}) {
|
|||||||
console.log('==================================================');
|
console.log('==================================================');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Try to get project name from package.json if not provided
|
||||||
|
if (!options.name) {
|
||||||
|
const packageJsonPath = path.join(process.cwd(), 'package.json');
|
||||||
|
try {
|
||||||
|
if (fs.existsSync(packageJsonPath)) {
|
||||||
|
const packageJson = JSON.parse(
|
||||||
|
fs.readFileSync(packageJsonPath, 'utf8')
|
||||||
|
);
|
||||||
|
if (packageJson.name) {
|
||||||
|
log(
|
||||||
|
'info',
|
||||||
|
`Found project name '${packageJson.name}' in package.json`
|
||||||
|
);
|
||||||
|
options.name = packageJson.name;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} catch (error) {
|
||||||
|
log(
|
||||||
|
'debug',
|
||||||
|
`Could not read project name from package.json: ${error.message}`
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Determine if we should skip prompts based on the passed options
|
// Determine if we should skip prompts based on the passed options
|
||||||
const skipPrompts = options.yes || (options.name && options.description);
|
const skipPrompts = options.yes || (options.name && options.description);
|
||||||
if (!isSilentMode()) {
|
if (!isSilentMode()) {
|
||||||
@@ -414,7 +381,6 @@ async function initializeProject(options = {}) {
|
|||||||
const projectVersion = options.version || '0.1.0'; // Default from commands.js or here
|
const projectVersion = options.version || '0.1.0'; // Default from commands.js or here
|
||||||
const authorName = options.author || 'Vibe coder'; // Default if not provided
|
const authorName = options.author || 'Vibe coder'; // Default if not provided
|
||||||
const dryRun = options.dryRun || false;
|
const dryRun = options.dryRun || false;
|
||||||
const skipInstall = options.skipInstall || false;
|
|
||||||
const addAliases = options.aliases || false;
|
const addAliases = options.aliases || false;
|
||||||
|
|
||||||
if (dryRun) {
|
if (dryRun) {
|
||||||
@@ -429,9 +395,6 @@ async function initializeProject(options = {}) {
|
|||||||
if (addAliases) {
|
if (addAliases) {
|
||||||
log('info', 'Would add shell aliases for task-master');
|
log('info', 'Would add shell aliases for task-master');
|
||||||
}
|
}
|
||||||
if (!skipInstall) {
|
|
||||||
log('info', 'Would install dependencies');
|
|
||||||
}
|
|
||||||
return {
|
return {
|
||||||
projectName,
|
projectName,
|
||||||
projectDescription,
|
projectDescription,
|
||||||
@@ -447,7 +410,6 @@ async function initializeProject(options = {}) {
|
|||||||
projectDescription,
|
projectDescription,
|
||||||
projectVersion,
|
projectVersion,
|
||||||
authorName,
|
authorName,
|
||||||
skipInstall,
|
|
||||||
addAliases
|
addAliases
|
||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
@@ -514,9 +476,8 @@ async function initializeProject(options = {}) {
|
|||||||
return; // Added return for clarity
|
return; // Added return for clarity
|
||||||
}
|
}
|
||||||
|
|
||||||
// Still respect dryRun/skipInstall if passed initially even when prompting
|
// Still respect dryRun if passed initially even when prompting
|
||||||
const dryRun = options.dryRun || false;
|
const dryRun = options.dryRun || false;
|
||||||
const skipInstall = options.skipInstall || false;
|
|
||||||
|
|
||||||
if (dryRun) {
|
if (dryRun) {
|
||||||
log('info', 'DRY RUN MODE: No files will be modified');
|
log('info', 'DRY RUN MODE: No files will be modified');
|
||||||
@@ -530,9 +491,6 @@ async function initializeProject(options = {}) {
|
|||||||
if (addAliasesPrompted) {
|
if (addAliasesPrompted) {
|
||||||
log('info', 'Would add shell aliases for task-master');
|
log('info', 'Would add shell aliases for task-master');
|
||||||
}
|
}
|
||||||
if (!skipInstall) {
|
|
||||||
log('info', 'Would install dependencies');
|
|
||||||
}
|
|
||||||
return {
|
return {
|
||||||
projectName,
|
projectName,
|
||||||
projectDescription,
|
projectDescription,
|
||||||
@@ -548,7 +506,6 @@ async function initializeProject(options = {}) {
|
|||||||
projectDescription,
|
projectDescription,
|
||||||
projectVersion,
|
projectVersion,
|
||||||
authorName,
|
authorName,
|
||||||
skipInstall, // Use value from initial options
|
|
||||||
addAliasesPrompted // Use value from prompt
|
addAliasesPrompted // Use value from prompt
|
||||||
);
|
);
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
@@ -574,7 +531,6 @@ function createProjectStructure(
|
|||||||
projectDescription,
|
projectDescription,
|
||||||
projectVersion,
|
projectVersion,
|
||||||
authorName,
|
authorName,
|
||||||
skipInstall,
|
|
||||||
addAliases
|
addAliases
|
||||||
) {
|
) {
|
||||||
const targetDir = process.cwd();
|
const targetDir = process.cwd();
|
||||||
@@ -585,105 +541,8 @@ function createProjectStructure(
|
|||||||
ensureDirectoryExists(path.join(targetDir, 'scripts'));
|
ensureDirectoryExists(path.join(targetDir, 'scripts'));
|
||||||
ensureDirectoryExists(path.join(targetDir, 'tasks'));
|
ensureDirectoryExists(path.join(targetDir, 'tasks'));
|
||||||
|
|
||||||
// Define our package.json content
|
|
||||||
const packageJson = {
|
|
||||||
name: projectName.toLowerCase().replace(/\s+/g, '-'),
|
|
||||||
version: projectVersion,
|
|
||||||
description: projectDescription,
|
|
||||||
author: authorName,
|
|
||||||
type: 'module',
|
|
||||||
scripts: {
|
|
||||||
dev: 'node scripts/dev.js',
|
|
||||||
list: 'node scripts/dev.js list',
|
|
||||||
generate: 'node scripts/dev.js generate',
|
|
||||||
'parse-prd': 'node scripts/dev.js parse-prd'
|
|
||||||
},
|
|
||||||
dependencies: {
|
|
||||||
'@anthropic-ai/sdk': '^0.39.0',
|
|
||||||
boxen: '^8.0.1',
|
|
||||||
chalk: '^4.1.2',
|
|
||||||
commander: '^11.1.0',
|
|
||||||
'cli-table3': '^0.6.5',
|
|
||||||
cors: '^2.8.5',
|
|
||||||
dotenv: '^16.3.1',
|
|
||||||
express: '^4.21.2',
|
|
||||||
fastmcp: '^1.20.5',
|
|
||||||
figlet: '^1.8.0',
|
|
||||||
'fuse.js': '^7.0.0',
|
|
||||||
'gradient-string': '^3.0.0',
|
|
||||||
helmet: '^8.1.0',
|
|
||||||
inquirer: '^12.5.0',
|
|
||||||
jsonwebtoken: '^9.0.2',
|
|
||||||
'lru-cache': '^10.2.0',
|
|
||||||
openai: '^4.89.0',
|
|
||||||
ora: '^8.2.0'
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
// Check if package.json exists and merge if it does
|
|
||||||
const packageJsonPath = path.join(targetDir, 'package.json');
|
|
||||||
if (fs.existsSync(packageJsonPath)) {
|
|
||||||
log('info', 'package.json already exists, merging content...');
|
|
||||||
try {
|
|
||||||
const existingPackageJson = JSON.parse(
|
|
||||||
fs.readFileSync(packageJsonPath, 'utf8')
|
|
||||||
);
|
|
||||||
|
|
||||||
// Preserve existing fields but add our required ones
|
|
||||||
const mergedPackageJson = {
|
|
||||||
...existingPackageJson,
|
|
||||||
scripts: {
|
|
||||||
...existingPackageJson.scripts,
|
|
||||||
...Object.fromEntries(
|
|
||||||
Object.entries(packageJson.scripts).filter(
|
|
||||||
([key]) =>
|
|
||||||
!existingPackageJson.scripts ||
|
|
||||||
!existingPackageJson.scripts[key]
|
|
||||||
)
|
|
||||||
)
|
|
||||||
},
|
|
||||||
dependencies: {
|
|
||||||
...(existingPackageJson.dependencies || {}),
|
|
||||||
...Object.fromEntries(
|
|
||||||
Object.entries(packageJson.dependencies).filter(
|
|
||||||
([key]) =>
|
|
||||||
!existingPackageJson.dependencies ||
|
|
||||||
!existingPackageJson.dependencies[key]
|
|
||||||
)
|
|
||||||
)
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
// Ensure type is set if not already present
|
|
||||||
if (!mergedPackageJson.type && packageJson.type) {
|
|
||||||
mergedPackageJson.type = packageJson.type;
|
|
||||||
}
|
|
||||||
|
|
||||||
fs.writeFileSync(
|
|
||||||
packageJsonPath,
|
|
||||||
JSON.stringify(mergedPackageJson, null, 2)
|
|
||||||
);
|
|
||||||
log('success', 'Updated package.json with required fields');
|
|
||||||
} catch (error) {
|
|
||||||
log('error', `Failed to merge package.json: ${error.message}`);
|
|
||||||
// Create a backup before potentially modifying
|
|
||||||
const backupPath = `${packageJsonPath}.backup-${Date.now()}`;
|
|
||||||
fs.copyFileSync(packageJsonPath, backupPath);
|
|
||||||
log('info', `Created backup of existing package.json at ${backupPath}`);
|
|
||||||
fs.writeFileSync(packageJsonPath, JSON.stringify(packageJson, null, 2));
|
|
||||||
log(
|
|
||||||
'warn',
|
|
||||||
'Created new package.json (backup of original file was created)'
|
|
||||||
);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
// If package.json doesn't exist, create it
|
|
||||||
fs.writeFileSync(packageJsonPath, JSON.stringify(packageJson, null, 2));
|
|
||||||
log('success', 'Created package.json');
|
|
||||||
}
|
|
||||||
|
|
||||||
// Setup MCP configuration for integration with Cursor
|
// Setup MCP configuration for integration with Cursor
|
||||||
setupMCPConfiguration(targetDir, packageJson.name);
|
setupMCPConfiguration(targetDir, projectName);
|
||||||
|
|
||||||
// Copy template files with replacements
|
// Copy template files with replacements
|
||||||
const replacements = {
|
const replacements = {
|
||||||
@@ -731,15 +590,6 @@ function createProjectStructure(
|
|||||||
// Copy .windsurfrules
|
// Copy .windsurfrules
|
||||||
copyTemplateFile('windsurfrules', path.join(targetDir, '.windsurfrules'));
|
copyTemplateFile('windsurfrules', path.join(targetDir, '.windsurfrules'));
|
||||||
|
|
||||||
// Copy scripts/dev.js
|
|
||||||
copyTemplateFile('dev.js', path.join(targetDir, 'scripts', 'dev.js'));
|
|
||||||
|
|
||||||
// Copy scripts/README.md
|
|
||||||
copyTemplateFile(
|
|
||||||
'scripts_README.md',
|
|
||||||
path.join(targetDir, 'scripts', 'README.md')
|
|
||||||
);
|
|
||||||
|
|
||||||
// Copy example_prd.txt
|
// Copy example_prd.txt
|
||||||
copyTemplateFile(
|
copyTemplateFile(
|
||||||
'example_prd.txt',
|
'example_prd.txt',
|
||||||
@@ -749,43 +599,13 @@ function createProjectStructure(
|
|||||||
// Create main README.md
|
// Create main README.md
|
||||||
copyTemplateFile(
|
copyTemplateFile(
|
||||||
'README-task-master.md',
|
'README-task-master.md',
|
||||||
path.join(targetDir, 'README.md'),
|
path.join(targetDir, 'README-task-master.md'),
|
||||||
replacements
|
replacements
|
||||||
);
|
);
|
||||||
|
|
||||||
// Initialize git repository if git is available
|
// Add shell aliases if requested
|
||||||
try {
|
if (addAliases) {
|
||||||
if (!fs.existsSync(path.join(targetDir, '.git'))) {
|
addShellAliases();
|
||||||
log('info', 'Initializing git repository...');
|
|
||||||
execSync('git init', { stdio: 'ignore' });
|
|
||||||
log('success', 'Git repository initialized');
|
|
||||||
}
|
|
||||||
} catch (error) {
|
|
||||||
log('warn', 'Git not available, skipping repository initialization');
|
|
||||||
}
|
|
||||||
|
|
||||||
// Run npm install automatically
|
|
||||||
if (!isSilentMode()) {
|
|
||||||
console.log(
|
|
||||||
boxen(chalk.cyan('Installing dependencies...'), {
|
|
||||||
padding: 0.5,
|
|
||||||
margin: 0.5,
|
|
||||||
borderStyle: 'round',
|
|
||||||
borderColor: 'blue'
|
|
||||||
})
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
if (!skipInstall) {
|
|
||||||
execSync('npm install', { stdio: 'inherit', cwd: targetDir });
|
|
||||||
log('success', 'Dependencies installed successfully!');
|
|
||||||
} else {
|
|
||||||
log('info', 'Dependencies installation skipped');
|
|
||||||
}
|
|
||||||
} catch (error) {
|
|
||||||
log('error', 'Failed to install dependencies:', error.message);
|
|
||||||
log('error', 'Please run npm install manually');
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Display success message
|
// Display success message
|
||||||
@@ -807,11 +627,6 @@ function createProjectStructure(
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Add shell aliases if requested
|
|
||||||
if (addAliases) {
|
|
||||||
addShellAliases();
|
|
||||||
}
|
|
||||||
|
|
||||||
// Display next steps in a nice box
|
// Display next steps in a nice box
|
||||||
if (!isSilentMode()) {
|
if (!isSilentMode()) {
|
||||||
console.log(
|
console.log(
|
||||||
|
|||||||
Reference in New Issue
Block a user