Compare commits
4 Commits
feat/add.c
...
crunchyman
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b2ac3a4ef4 | ||
|
|
b2396fd8fe | ||
|
|
a99b2b20b3 | ||
|
|
4136ef5679 |
@@ -2,9 +2,7 @@
|
|||||||
"mcpServers": {
|
"mcpServers": {
|
||||||
"taskmaster-ai": {
|
"taskmaster-ai": {
|
||||||
"command": "node",
|
"command": "node",
|
||||||
"args": [
|
"args": ["./mcp-server/server.js"]
|
||||||
"./mcp-server/server.js"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
60
.github/workflows/ci.yml
vendored
60
.github/workflows/ci.yml
vendored
@@ -14,7 +14,7 @@ permissions:
|
|||||||
contents: read
|
contents: read
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
setup:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
@@ -24,21 +24,55 @@ jobs:
|
|||||||
- uses: actions/setup-node@v4
|
- uses: actions/setup-node@v4
|
||||||
with:
|
with:
|
||||||
node-version: 20
|
node-version: 20
|
||||||
cache: "npm"
|
cache: 'npm'
|
||||||
|
|
||||||
|
- name: Install Dependencies
|
||||||
|
id: install
|
||||||
|
run: npm ci
|
||||||
|
timeout-minutes: 2
|
||||||
|
|
||||||
- name: Cache node_modules
|
- name: Cache node_modules
|
||||||
uses: actions/cache@v4
|
uses: actions/cache@v4
|
||||||
with:
|
with:
|
||||||
path: |
|
path: node_modules
|
||||||
node_modules
|
key: ${{ runner.os }}-node-modules-${{ hashFiles('**/package-lock.json') }}
|
||||||
*/*/node_modules
|
|
||||||
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
|
|
||||||
restore-keys: |
|
|
||||||
${{ runner.os }}-node-
|
|
||||||
|
|
||||||
- name: Install Dependencies
|
format-check:
|
||||||
run: npm ci
|
needs: setup
|
||||||
timeout-minutes: 2
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- uses: actions/setup-node@v4
|
||||||
|
with:
|
||||||
|
node-version: 20
|
||||||
|
|
||||||
|
- name: Restore node_modules
|
||||||
|
uses: actions/cache@v4
|
||||||
|
with:
|
||||||
|
path: node_modules
|
||||||
|
key: ${{ runner.os }}-node-modules-${{ hashFiles('**/package-lock.json') }}
|
||||||
|
|
||||||
|
- name: Format Check
|
||||||
|
run: npm run format-check
|
||||||
|
env:
|
||||||
|
FORCE_COLOR: 1
|
||||||
|
|
||||||
|
test:
|
||||||
|
needs: setup
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- uses: actions/setup-node@v4
|
||||||
|
with:
|
||||||
|
node-version: 20
|
||||||
|
|
||||||
|
- name: Restore node_modules
|
||||||
|
uses: actions/cache@v4
|
||||||
|
with:
|
||||||
|
path: node_modules
|
||||||
|
key: ${{ runner.os }}-node-modules-${{ hashFiles('**/package-lock.json') }}
|
||||||
|
|
||||||
- name: Run Tests
|
- name: Run Tests
|
||||||
run: |
|
run: |
|
||||||
@@ -47,13 +81,13 @@ jobs:
|
|||||||
NODE_ENV: test
|
NODE_ENV: test
|
||||||
CI: true
|
CI: true
|
||||||
FORCE_COLOR: 1
|
FORCE_COLOR: 1
|
||||||
timeout-minutes: 15
|
timeout-minutes: 10
|
||||||
|
|
||||||
- name: Upload Test Results
|
- name: Upload Test Results
|
||||||
if: always()
|
if: always()
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: test-results-node
|
name: test-results
|
||||||
path: |
|
path: |
|
||||||
test-results
|
test-results
|
||||||
coverage
|
coverage
|
||||||
|
|||||||
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
@@ -14,7 +14,7 @@ jobs:
|
|||||||
- uses: actions/setup-node@v4
|
- uses: actions/setup-node@v4
|
||||||
with:
|
with:
|
||||||
node-version: 20
|
node-version: 20
|
||||||
cache: "npm"
|
cache: 'npm'
|
||||||
|
|
||||||
- name: Cache node_modules
|
- name: Cache node_modules
|
||||||
uses: actions/cache@v4
|
uses: actions/cache@v4
|
||||||
|
|||||||
6
.prettierignore
Normal file
6
.prettierignore
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
# Ignore artifacts:
|
||||||
|
build
|
||||||
|
coverage
|
||||||
|
.changeset
|
||||||
|
tasks
|
||||||
|
package-lock.json
|
||||||
11
.prettierrc
Normal file
11
.prettierrc
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"printWidth": 80,
|
||||||
|
"tabWidth": 2,
|
||||||
|
"useTabs": true,
|
||||||
|
"semi": true,
|
||||||
|
"singleQuote": true,
|
||||||
|
"trailingComma": "none",
|
||||||
|
"bracketSpacing": true,
|
||||||
|
"arrowParens": "always",
|
||||||
|
"endOfLine": "lf"
|
||||||
|
}
|
||||||
@@ -21,9 +21,11 @@ In an AI-driven development process—particularly with tools like [Cursor](http
|
|||||||
The script can be configured through environment variables in a `.env` file at the root of the project:
|
The script can be configured through environment variables in a `.env` file at the root of the project:
|
||||||
|
|
||||||
### Required Configuration
|
### Required Configuration
|
||||||
|
|
||||||
- `ANTHROPIC_API_KEY`: Your Anthropic API key for Claude
|
- `ANTHROPIC_API_KEY`: Your Anthropic API key for Claude
|
||||||
|
|
||||||
### Optional Configuration
|
### Optional Configuration
|
||||||
|
|
||||||
- `MODEL`: Specify which Claude model to use (default: "claude-3-7-sonnet-20250219")
|
- `MODEL`: Specify which Claude model to use (default: "claude-3-7-sonnet-20250219")
|
||||||
- `MAX_TOKENS`: Maximum tokens for model responses (default: 4000)
|
- `MAX_TOKENS`: Maximum tokens for model responses (default: 4000)
|
||||||
- `TEMPERATURE`: Temperature for model responses (default: 0.7)
|
- `TEMPERATURE`: Temperature for model responses (default: 0.7)
|
||||||
@@ -39,6 +41,7 @@ The script can be configured through environment variables in a `.env` file at t
|
|||||||
## How It Works
|
## How It Works
|
||||||
|
|
||||||
1. **`tasks.json`**:
|
1. **`tasks.json`**:
|
||||||
|
|
||||||
- A JSON file at the project root containing an array of tasks (each with `id`, `title`, `description`, `status`, etc.).
|
- A JSON file at the project root containing an array of tasks (each with `id`, `title`, `description`, `status`, etc.).
|
||||||
- The `meta` field can store additional info like the project's name, version, or reference to the PRD.
|
- The `meta` field can store additional info like the project's name, version, or reference to the PRD.
|
||||||
- Tasks can have `subtasks` for more detailed implementation steps.
|
- Tasks can have `subtasks` for more detailed implementation steps.
|
||||||
@@ -111,6 +114,7 @@ task-master update --file=custom-tasks.json --from=5 --prompt="Change database f
|
|||||||
```
|
```
|
||||||
|
|
||||||
Notes:
|
Notes:
|
||||||
|
|
||||||
- The `--prompt` parameter is required and should explain the changes or new context
|
- The `--prompt` parameter is required and should explain the changes or new context
|
||||||
- Only tasks that aren't marked as 'done' will be updated
|
- Only tasks that aren't marked as 'done' will be updated
|
||||||
- Tasks with ID >= the specified --from value will be updated
|
- Tasks with ID >= the specified --from value will be updated
|
||||||
@@ -134,6 +138,7 @@ task-master set-status --id=1,2,3 --status=done
|
|||||||
```
|
```
|
||||||
|
|
||||||
Notes:
|
Notes:
|
||||||
|
|
||||||
- When marking a parent task as "done", all of its subtasks will automatically be marked as "done" as well
|
- When marking a parent task as "done", all of its subtasks will automatically be marked as "done" as well
|
||||||
- Common status values are 'done', 'pending', and 'deferred', but any string is accepted
|
- Common status values are 'done', 'pending', and 'deferred', but any string is accepted
|
||||||
- You can specify multiple task IDs by separating them with commas
|
- You can specify multiple task IDs by separating them with commas
|
||||||
@@ -183,6 +188,7 @@ task-master clear-subtasks --all
|
|||||||
```
|
```
|
||||||
|
|
||||||
Notes:
|
Notes:
|
||||||
|
|
||||||
- After clearing subtasks, task files are automatically regenerated
|
- After clearing subtasks, task files are automatically regenerated
|
||||||
- This is useful when you want to regenerate subtasks with a different approach
|
- This is useful when you want to regenerate subtasks with a different approach
|
||||||
- Can be combined with the `expand` command to immediately generate new subtasks
|
- Can be combined with the `expand` command to immediately generate new subtasks
|
||||||
@@ -198,6 +204,7 @@ The script integrates with two AI services:
|
|||||||
The Perplexity integration uses the OpenAI client to connect to Perplexity's API, which provides enhanced research capabilities for generating more informed subtasks. If the Perplexity API is unavailable or encounters an error, the script will automatically fall back to using Anthropic's Claude.
|
The Perplexity integration uses the OpenAI client to connect to Perplexity's API, which provides enhanced research capabilities for generating more informed subtasks. If the Perplexity API is unavailable or encounters an error, the script will automatically fall back to using Anthropic's Claude.
|
||||||
|
|
||||||
To use the Perplexity integration:
|
To use the Perplexity integration:
|
||||||
|
|
||||||
1. Obtain a Perplexity API key
|
1. Obtain a Perplexity API key
|
||||||
2. Add `PERPLEXITY_API_KEY` to your `.env` file
|
2. Add `PERPLEXITY_API_KEY` to your `.env` file
|
||||||
3. Optionally specify `PERPLEXITY_MODEL` in your `.env` file (default: "sonar-medium-online")
|
3. Optionally specify `PERPLEXITY_MODEL` in your `.env` file (default: "sonar-medium-online")
|
||||||
@@ -206,6 +213,7 @@ To use the Perplexity integration:
|
|||||||
## Logging
|
## Logging
|
||||||
|
|
||||||
The script supports different logging levels controlled by the `LOG_LEVEL` environment variable:
|
The script supports different logging levels controlled by the `LOG_LEVEL` environment variable:
|
||||||
|
|
||||||
- `debug`: Detailed information, typically useful for troubleshooting
|
- `debug`: Detailed information, typically useful for troubleshooting
|
||||||
- `info`: Confirmation that things are working as expected (default)
|
- `info`: Confirmation that things are working as expected (default)
|
||||||
- `warn`: Warning messages that don't prevent execution
|
- `warn`: Warning messages that don't prevent execution
|
||||||
@@ -228,17 +236,20 @@ task-master remove-dependency --id=<id> --depends-on=<id>
|
|||||||
These commands:
|
These commands:
|
||||||
|
|
||||||
1. **Allow precise dependency management**:
|
1. **Allow precise dependency management**:
|
||||||
|
|
||||||
- Add dependencies between tasks with automatic validation
|
- Add dependencies between tasks with automatic validation
|
||||||
- Remove dependencies when they're no longer needed
|
- Remove dependencies when they're no longer needed
|
||||||
- Update task files automatically after changes
|
- Update task files automatically after changes
|
||||||
|
|
||||||
2. **Include validation checks**:
|
2. **Include validation checks**:
|
||||||
|
|
||||||
- Prevent circular dependencies (a task depending on itself)
|
- Prevent circular dependencies (a task depending on itself)
|
||||||
- Prevent duplicate dependencies
|
- Prevent duplicate dependencies
|
||||||
- Verify that both tasks exist before adding/removing dependencies
|
- Verify that both tasks exist before adding/removing dependencies
|
||||||
- Check if dependencies exist before attempting to remove them
|
- Check if dependencies exist before attempting to remove them
|
||||||
|
|
||||||
3. **Provide clear feedback**:
|
3. **Provide clear feedback**:
|
||||||
|
|
||||||
- Success messages confirm when dependencies are added/removed
|
- Success messages confirm when dependencies are added/removed
|
||||||
- Error messages explain why operations failed (if applicable)
|
- Error messages explain why operations failed (if applicable)
|
||||||
|
|
||||||
@@ -263,6 +274,7 @@ task-master validate-dependencies --file=custom-tasks.json
|
|||||||
```
|
```
|
||||||
|
|
||||||
This command:
|
This command:
|
||||||
|
|
||||||
- Scans all tasks and subtasks for non-existent dependencies
|
- Scans all tasks and subtasks for non-existent dependencies
|
||||||
- Identifies potential self-dependencies (tasks referencing themselves)
|
- Identifies potential self-dependencies (tasks referencing themselves)
|
||||||
- Reports all found issues without modifying files
|
- Reports all found issues without modifying files
|
||||||
@@ -284,6 +296,7 @@ task-master fix-dependencies --file=custom-tasks.json
|
|||||||
```
|
```
|
||||||
|
|
||||||
This command:
|
This command:
|
||||||
|
|
||||||
1. **Validates all dependencies** across tasks and subtasks
|
1. **Validates all dependencies** across tasks and subtasks
|
||||||
2. **Automatically removes**:
|
2. **Automatically removes**:
|
||||||
- References to non-existent tasks and subtasks
|
- References to non-existent tasks and subtasks
|
||||||
@@ -321,6 +334,7 @@ task-master analyze-complexity --research
|
|||||||
```
|
```
|
||||||
|
|
||||||
Notes:
|
Notes:
|
||||||
|
|
||||||
- The command uses Claude to analyze each task's complexity (or Perplexity with --research flag)
|
- The command uses Claude to analyze each task's complexity (or Perplexity with --research flag)
|
||||||
- Tasks are scored on a scale of 1-10
|
- Tasks are scored on a scale of 1-10
|
||||||
- Each task receives a recommended number of subtasks based on DEFAULT_SUBTASKS configuration
|
- Each task receives a recommended number of subtasks based on DEFAULT_SUBTASKS configuration
|
||||||
@@ -345,12 +359,14 @@ task-master expand --id=8 --num=5 --prompt="Custom prompt"
|
|||||||
```
|
```
|
||||||
|
|
||||||
When a complexity report exists:
|
When a complexity report exists:
|
||||||
|
|
||||||
- The `expand` command will use the recommended subtask count from the report (unless overridden)
|
- The `expand` command will use the recommended subtask count from the report (unless overridden)
|
||||||
- It will use the tailored expansion prompt from the report (unless a custom prompt is provided)
|
- It will use the tailored expansion prompt from the report (unless a custom prompt is provided)
|
||||||
- When using `--all`, tasks are sorted by complexity score (highest first)
|
- When using `--all`, tasks are sorted by complexity score (highest first)
|
||||||
- The `--research` flag is preserved from the complexity analysis to expansion
|
- The `--research` flag is preserved from the complexity analysis to expansion
|
||||||
|
|
||||||
The output report structure is:
|
The output report structure is:
|
||||||
|
|
||||||
```json
|
```json
|
||||||
{
|
{
|
||||||
"meta": {
|
"meta": {
|
||||||
@@ -369,7 +385,7 @@ The output report structure is:
|
|||||||
"expansionPrompt": "Create subtasks that handle detecting...",
|
"expansionPrompt": "Create subtasks that handle detecting...",
|
||||||
"reasoning": "This task requires sophisticated logic...",
|
"reasoning": "This task requires sophisticated logic...",
|
||||||
"expansionCommand": "task-master expand --id=8 --num=6 --prompt=\"Create subtasks...\" --research"
|
"expansionCommand": "task-master expand --id=8 --num=6 --prompt=\"Create subtasks...\" --research"
|
||||||
},
|
}
|
||||||
// More tasks sorted by complexity score (highest first)
|
// More tasks sorted by complexity score (highest first)
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -49,7 +49,13 @@ function runDevScript(args) {
|
|||||||
console.error('\nDEBUG - CLI Wrapper Analysis:');
|
console.error('\nDEBUG - CLI Wrapper Analysis:');
|
||||||
console.error('- Original command: ' + process.argv.join(' '));
|
console.error('- Original command: ' + process.argv.join(' '));
|
||||||
console.error('- Transformed args: ' + args.join(' '));
|
console.error('- Transformed args: ' + args.join(' '));
|
||||||
console.error('- dev.js will receive: node ' + devScriptPath + ' ' + args.join(' ') + '\n');
|
console.error(
|
||||||
|
'- dev.js will receive: node ' +
|
||||||
|
devScriptPath +
|
||||||
|
' ' +
|
||||||
|
args.join(' ') +
|
||||||
|
'\n'
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
// For testing: If TEST_MODE is set, just print args and exit
|
// For testing: If TEST_MODE is set, just print args and exit
|
||||||
@@ -86,11 +92,13 @@ function createDevScriptAction(commandName) {
|
|||||||
// If camelCase flags were found, show error and exit
|
// If camelCase flags were found, show error and exit
|
||||||
if (camelCaseFlags.length > 0) {
|
if (camelCaseFlags.length > 0) {
|
||||||
console.error('\nError: Please use kebab-case for CLI flags:');
|
console.error('\nError: Please use kebab-case for CLI flags:');
|
||||||
camelCaseFlags.forEach(flag => {
|
camelCaseFlags.forEach((flag) => {
|
||||||
console.error(` Instead of: --${flag.original}`);
|
console.error(` Instead of: --${flag.original}`);
|
||||||
console.error(` Use: --${flag.kebabCase}`);
|
console.error(` Use: --${flag.kebabCase}`);
|
||||||
});
|
});
|
||||||
console.error('\nExample: task-master parse-prd --num-tasks=5 instead of --numTasks=5\n');
|
console.error(
|
||||||
|
'\nExample: task-master parse-prd --num-tasks=5 instead of --numTasks=5\n'
|
||||||
|
);
|
||||||
process.exit(1);
|
process.exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -113,9 +121,11 @@ function createDevScriptAction(commandName) {
|
|||||||
// It's a flag - pass through as is
|
// It's a flag - pass through as is
|
||||||
commandArgs.push(arg);
|
commandArgs.push(arg);
|
||||||
// Skip the next arg if this is a flag with a value (not --flag=value format)
|
// Skip the next arg if this is a flag with a value (not --flag=value format)
|
||||||
if (!arg.includes('=') &&
|
if (
|
||||||
|
!arg.includes('=') &&
|
||||||
i + 1 < process.argv.length &&
|
i + 1 < process.argv.length &&
|
||||||
!process.argv[i+1].startsWith('--')) {
|
!process.argv[i + 1].startsWith('--')
|
||||||
|
) {
|
||||||
commandArgs.push(process.argv[++i]);
|
commandArgs.push(process.argv[++i]);
|
||||||
}
|
}
|
||||||
} else if (!positionals.has(arg)) {
|
} else if (!positionals.has(arg)) {
|
||||||
@@ -143,7 +153,9 @@ function createDevScriptAction(commandName) {
|
|||||||
userOptions.add(kebabName);
|
userOptions.add(kebabName);
|
||||||
|
|
||||||
// Add the camelCase version as well
|
// Add the camelCase version as well
|
||||||
const camelName = kebabName.replace(/-([a-z])/g, (_, letter) => letter.toUpperCase());
|
const camelName = kebabName.replace(/-([a-z])/g, (_, letter) =>
|
||||||
|
letter.toUpperCase()
|
||||||
|
);
|
||||||
userOptions.add(camelName);
|
userOptions.add(camelName);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -167,7 +179,10 @@ function createDevScriptAction(commandName) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Skip built-in Commander properties and options the user provided
|
// Skip built-in Commander properties and options the user provided
|
||||||
if (['parent', 'commands', 'options', 'rawArgs'].includes(key) || userOptions.has(key)) {
|
if (
|
||||||
|
['parent', 'commands', 'options', 'rawArgs'].includes(key) ||
|
||||||
|
userOptions.has(key)
|
||||||
|
) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -224,9 +239,17 @@ function registerInitCommand(program) {
|
|||||||
.option('--dry-run', 'Show what would be done without making changes')
|
.option('--dry-run', 'Show what would be done without making changes')
|
||||||
.action((options) => {
|
.action((options) => {
|
||||||
// Pass through any options to the init script
|
// Pass through any options to the init script
|
||||||
const args = ['--yes', 'name', 'description', 'version', 'author', 'skip-install', 'dry-run']
|
const args = [
|
||||||
.filter(opt => options[opt])
|
'--yes',
|
||||||
.map(opt => {
|
'name',
|
||||||
|
'description',
|
||||||
|
'version',
|
||||||
|
'author',
|
||||||
|
'skip-install',
|
||||||
|
'dry-run'
|
||||||
|
]
|
||||||
|
.filter((opt) => options[opt])
|
||||||
|
.map((opt) => {
|
||||||
if (opt === 'yes' || opt === 'skip-install' || opt === 'dry-run') {
|
if (opt === 'yes' || opt === 'skip-install' || opt === 'dry-run') {
|
||||||
return `--${opt}`;
|
return `--${opt}`;
|
||||||
}
|
}
|
||||||
@@ -279,24 +302,18 @@ const tempProgram = new Command();
|
|||||||
registerCommands(tempProgram);
|
registerCommands(tempProgram);
|
||||||
|
|
||||||
// For each command in the temp instance, add a modified version to our actual program
|
// For each command in the temp instance, add a modified version to our actual program
|
||||||
tempProgram.commands.forEach(cmd => {
|
tempProgram.commands.forEach((cmd) => {
|
||||||
if (['init', 'dev'].includes(cmd.name())) {
|
if (['init', 'dev'].includes(cmd.name())) {
|
||||||
// Skip commands we've already defined specially
|
// Skip commands we've already defined specially
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Create a new command with the same name and description
|
// Create a new command with the same name and description
|
||||||
const newCmd = program
|
const newCmd = program.command(cmd.name()).description(cmd.description());
|
||||||
.command(cmd.name())
|
|
||||||
.description(cmd.description());
|
|
||||||
|
|
||||||
// Copy all options
|
// Copy all options
|
||||||
cmd.options.forEach(opt => {
|
cmd.options.forEach((opt) => {
|
||||||
newCmd.option(
|
newCmd.option(opt.flags, opt.description, opt.defaultValue);
|
||||||
opt.flags,
|
|
||||||
opt.description,
|
|
||||||
opt.defaultValue
|
|
||||||
);
|
|
||||||
});
|
});
|
||||||
|
|
||||||
// Set the action to proxy to dev.js
|
// Set the action to proxy to dev.js
|
||||||
@@ -311,14 +328,21 @@ process.on('uncaughtException', (err) => {
|
|||||||
// Check if this is a commander.js unknown option error
|
// Check if this is a commander.js unknown option error
|
||||||
if (err.code === 'commander.unknownOption') {
|
if (err.code === 'commander.unknownOption') {
|
||||||
const option = err.message.match(/'([^']+)'/)?.[1];
|
const option = err.message.match(/'([^']+)'/)?.[1];
|
||||||
const commandArg = process.argv.find(arg => !arg.startsWith('-') &&
|
const commandArg = process.argv.find(
|
||||||
|
(arg) =>
|
||||||
|
!arg.startsWith('-') &&
|
||||||
arg !== 'task-master' &&
|
arg !== 'task-master' &&
|
||||||
!arg.includes('/') &&
|
!arg.includes('/') &&
|
||||||
arg !== 'node');
|
arg !== 'node'
|
||||||
|
);
|
||||||
const command = commandArg || 'unknown';
|
const command = commandArg || 'unknown';
|
||||||
|
|
||||||
console.error(chalk.red(`Error: Unknown option '${option}'`));
|
console.error(chalk.red(`Error: Unknown option '${option}'`));
|
||||||
console.error(chalk.yellow(`Run 'task-master ${command} --help' to see available options for this command`));
|
console.error(
|
||||||
|
chalk.yellow(
|
||||||
|
`Run 'task-master ${command} --help' to see available options for this command`
|
||||||
|
)
|
||||||
|
);
|
||||||
process.exit(1);
|
process.exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -327,7 +351,9 @@ process.on('uncaughtException', (err) => {
|
|||||||
const command = err.message.match(/'([^']+)'/)?.[1];
|
const command = err.message.match(/'([^']+)'/)?.[1];
|
||||||
|
|
||||||
console.error(chalk.red(`Error: Unknown command '${command}'`));
|
console.error(chalk.red(`Error: Unknown command '${command}'`));
|
||||||
console.error(chalk.yellow(`Run 'task-master --help' to see available commands`));
|
console.error(
|
||||||
|
chalk.yellow(`Run 'task-master --help' to see available commands`)
|
||||||
|
);
|
||||||
process.exit(1);
|
process.exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -90,13 +90,13 @@ export const simpleFunction = adaptForMcp(originalFunction);
|
|||||||
// Split implementation - completely different code paths for CLI vs MCP
|
// Split implementation - completely different code paths for CLI vs MCP
|
||||||
export const complexFunction = sourceSplitFunction(
|
export const complexFunction = sourceSplitFunction(
|
||||||
// CLI version with UI
|
// CLI version with UI
|
||||||
function(param1, param2) {
|
function (param1, param2) {
|
||||||
displayBanner();
|
displayBanner();
|
||||||
console.log(`Processing ${param1}...`);
|
console.log(`Processing ${param1}...`);
|
||||||
// ... CLI implementation
|
// ... CLI implementation
|
||||||
},
|
},
|
||||||
// MCP version with structured return
|
// MCP version with structured return
|
||||||
function(param1, param2, options = {}) {
|
function (param1, param2, options = {}) {
|
||||||
// ... MCP implementation
|
// ... MCP implementation
|
||||||
return { success: true, data };
|
return { success: true, data };
|
||||||
}
|
}
|
||||||
@@ -186,22 +186,22 @@ const commandMap = {
|
|||||||
|
|
||||||
```javascript
|
```javascript
|
||||||
// In mcp-server/src/tools/newFeature.js
|
// In mcp-server/src/tools/newFeature.js
|
||||||
import { z } from "zod";
|
import { z } from 'zod';
|
||||||
import {
|
import {
|
||||||
executeTaskMasterCommand,
|
executeTaskMasterCommand,
|
||||||
createContentResponse,
|
createContentResponse,
|
||||||
createErrorResponse,
|
createErrorResponse
|
||||||
} from "./utils.js";
|
} from './utils.js';
|
||||||
|
|
||||||
export function registerNewFeatureTool(server) {
|
export function registerNewFeatureTool(server) {
|
||||||
server.addTool({
|
server.addTool({
|
||||||
name: "newFeature",
|
name: 'newFeature',
|
||||||
description: "Run the new feature",
|
description: 'Run the new feature',
|
||||||
parameters: z.object({
|
parameters: z.object({
|
||||||
param1: z.string().describe("First parameter"),
|
param1: z.string().describe('First parameter'),
|
||||||
param2: z.number().optional().describe("Second parameter"),
|
param2: z.number().optional().describe('Second parameter'),
|
||||||
file: z.string().optional().describe("Path to the tasks file"),
|
file: z.string().optional().describe('Path to the tasks file'),
|
||||||
projectRoot: z.string().describe("Root directory of the project")
|
projectRoot: z.string().describe('Root directory of the project')
|
||||||
}),
|
}),
|
||||||
execute: async (args, { log }) => {
|
execute: async (args, { log }) => {
|
||||||
try {
|
try {
|
||||||
@@ -216,7 +216,7 @@ export function registerNewFeatureTool(server) {
|
|||||||
|
|
||||||
// Execute the command
|
// Execute the command
|
||||||
const result = await executeTaskMasterCommand(
|
const result = await executeTaskMasterCommand(
|
||||||
"new-feature",
|
'new-feature',
|
||||||
log,
|
log,
|
||||||
cmdArgs,
|
cmdArgs,
|
||||||
projectRoot
|
projectRoot
|
||||||
@@ -231,7 +231,7 @@ export function registerNewFeatureTool(server) {
|
|||||||
log.error(`Error in new feature: ${error.message}`);
|
log.error(`Error in new feature: ${error.message}`);
|
||||||
return createErrorResponse(`Error in new feature: ${error.message}`);
|
return createErrorResponse(`Error in new feature: ${error.message}`);
|
||||||
}
|
}
|
||||||
},
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
@@ -240,7 +240,7 @@ export function registerNewFeatureTool(server) {
|
|||||||
|
|
||||||
```javascript
|
```javascript
|
||||||
// In mcp-server/src/tools/index.js
|
// In mcp-server/src/tools/index.js
|
||||||
import { registerNewFeatureTool } from "./newFeature.js";
|
import { registerNewFeatureTool } from './newFeature.js';
|
||||||
|
|
||||||
export function registerTaskMasterTools(server) {
|
export function registerTaskMasterTools(server) {
|
||||||
// ... existing registrations
|
// ... existing registrations
|
||||||
|
|||||||
@@ -41,11 +41,7 @@
|
|||||||
"type": "string"
|
"type": "string"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": ["data", "mimeType", "type"],
|
||||||
"data",
|
|
||||||
"mimeType",
|
|
||||||
"type"
|
|
||||||
],
|
|
||||||
"type": "object"
|
"type": "object"
|
||||||
},
|
},
|
||||||
"BlobResourceContents": {
|
"BlobResourceContents": {
|
||||||
@@ -65,10 +61,7 @@
|
|||||||
"type": "string"
|
"type": "string"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": ["blob", "uri"],
|
||||||
"blob",
|
|
||||||
"uri"
|
|
||||||
],
|
|
||||||
"type": "object"
|
"type": "object"
|
||||||
},
|
},
|
||||||
"CallToolRequest": {
|
"CallToolRequest": {
|
||||||
@@ -88,16 +81,11 @@
|
|||||||
"type": "string"
|
"type": "string"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": ["name"],
|
||||||
"name"
|
|
||||||
],
|
|
||||||
"type": "object"
|
"type": "object"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": ["method", "params"],
|
||||||
"method",
|
|
||||||
"params"
|
|
||||||
],
|
|
||||||
"type": "object"
|
"type": "object"
|
||||||
},
|
},
|
||||||
"CallToolResult": {
|
"CallToolResult": {
|
||||||
@@ -132,9 +120,7 @@
|
|||||||
"type": "boolean"
|
"type": "boolean"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": ["content"],
|
||||||
"content"
|
|
||||||
],
|
|
||||||
"type": "object"
|
"type": "object"
|
||||||
},
|
},
|
||||||
"CancelledNotification": {
|
"CancelledNotification": {
|
||||||
@@ -155,16 +141,11 @@
|
|||||||
"description": "The ID of the request to cancel.\n\nThis MUST correspond to the ID of a request previously issued in the same direction."
|
"description": "The ID of the request to cancel.\n\nThis MUST correspond to the ID of a request previously issued in the same direction."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": ["requestId"],
|
||||||
"requestId"
|
|
||||||
],
|
|
||||||
"type": "object"
|
"type": "object"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": ["method", "params"],
|
||||||
"method",
|
|
||||||
"params"
|
|
||||||
],
|
|
||||||
"type": "object"
|
"type": "object"
|
||||||
},
|
},
|
||||||
"ClientCapabilities": {
|
"ClientCapabilities": {
|
||||||
@@ -288,10 +269,7 @@
|
|||||||
"type": "string"
|
"type": "string"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": ["name", "value"],
|
||||||
"name",
|
|
||||||
"value"
|
|
||||||
],
|
|
||||||
"type": "object"
|
"type": "object"
|
||||||
},
|
},
|
||||||
"ref": {
|
"ref": {
|
||||||
@@ -305,17 +283,11 @@
|
|||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": ["argument", "ref"],
|
||||||
"argument",
|
|
||||||
"ref"
|
|
||||||
],
|
|
||||||
"type": "object"
|
"type": "object"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": ["method", "params"],
|
||||||
"method",
|
|
||||||
"params"
|
|
||||||
],
|
|
||||||
"type": "object"
|
"type": "object"
|
||||||
},
|
},
|
||||||
"CompleteResult": {
|
"CompleteResult": {
|
||||||
@@ -344,15 +316,11 @@
|
|||||||
"type": "array"
|
"type": "array"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": ["values"],
|
||||||
"values"
|
|
||||||
],
|
|
||||||
"type": "object"
|
"type": "object"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": ["completion"],
|
||||||
"completion"
|
|
||||||
],
|
|
||||||
"type": "object"
|
"type": "object"
|
||||||
},
|
},
|
||||||
"CreateMessageRequest": {
|
"CreateMessageRequest": {
|
||||||
@@ -366,11 +334,7 @@
|
|||||||
"properties": {
|
"properties": {
|
||||||
"includeContext": {
|
"includeContext": {
|
||||||
"description": "A request to include context from one or more MCP servers (including the caller), to be attached to the prompt. The client MAY ignore this request.",
|
"description": "A request to include context from one or more MCP servers (including the caller), to be attached to the prompt. The client MAY ignore this request.",
|
||||||
"enum": [
|
"enum": ["allServers", "none", "thisServer"],
|
||||||
"allServers",
|
|
||||||
"none",
|
|
||||||
"thisServer"
|
|
||||||
],
|
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
"maxTokens": {
|
"maxTokens": {
|
||||||
@@ -407,17 +371,11 @@
|
|||||||
"type": "number"
|
"type": "number"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": ["maxTokens", "messages"],
|
||||||
"maxTokens",
|
|
||||||
"messages"
|
|
||||||
],
|
|
||||||
"type": "object"
|
"type": "object"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": ["method", "params"],
|
||||||
"method",
|
|
||||||
"params"
|
|
||||||
],
|
|
||||||
"type": "object"
|
"type": "object"
|
||||||
},
|
},
|
||||||
"CreateMessageResult": {
|
"CreateMessageResult": {
|
||||||
@@ -453,11 +411,7 @@
|
|||||||
"type": "string"
|
"type": "string"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": ["content", "model", "role"],
|
||||||
"content",
|
|
||||||
"model",
|
|
||||||
"role"
|
|
||||||
],
|
|
||||||
"type": "object"
|
"type": "object"
|
||||||
},
|
},
|
||||||
"Cursor": {
|
"Cursor": {
|
||||||
@@ -486,10 +440,7 @@
|
|||||||
"type": "string"
|
"type": "string"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": ["resource", "type"],
|
||||||
"resource",
|
|
||||||
"type"
|
|
||||||
],
|
|
||||||
"type": "object"
|
"type": "object"
|
||||||
},
|
},
|
||||||
"EmptyResult": {
|
"EmptyResult": {
|
||||||
@@ -516,16 +467,11 @@
|
|||||||
"type": "string"
|
"type": "string"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": ["name"],
|
||||||
"name"
|
|
||||||
],
|
|
||||||
"type": "object"
|
"type": "object"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": ["method", "params"],
|
||||||
"method",
|
|
||||||
"params"
|
|
||||||
],
|
|
||||||
"type": "object"
|
"type": "object"
|
||||||
},
|
},
|
||||||
"GetPromptResult": {
|
"GetPromptResult": {
|
||||||
@@ -547,9 +493,7 @@
|
|||||||
"type": "array"
|
"type": "array"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": ["messages"],
|
||||||
"messages"
|
|
||||||
],
|
|
||||||
"type": "object"
|
"type": "object"
|
||||||
},
|
},
|
||||||
"ImageContent": {
|
"ImageContent": {
|
||||||
@@ -573,11 +517,7 @@
|
|||||||
"type": "string"
|
"type": "string"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": ["data", "mimeType", "type"],
|
||||||
"data",
|
|
||||||
"mimeType",
|
|
||||||
"type"
|
|
||||||
],
|
|
||||||
"type": "object"
|
"type": "object"
|
||||||
},
|
},
|
||||||
"Implementation": {
|
"Implementation": {
|
||||||
@@ -590,10 +530,7 @@
|
|||||||
"type": "string"
|
"type": "string"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": ["name", "version"],
|
||||||
"name",
|
|
||||||
"version"
|
|
||||||
],
|
|
||||||
"type": "object"
|
"type": "object"
|
||||||
},
|
},
|
||||||
"InitializeRequest": {
|
"InitializeRequest": {
|
||||||
@@ -616,18 +553,11 @@
|
|||||||
"type": "string"
|
"type": "string"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": ["capabilities", "clientInfo", "protocolVersion"],
|
||||||
"capabilities",
|
|
||||||
"clientInfo",
|
|
||||||
"protocolVersion"
|
|
||||||
],
|
|
||||||
"type": "object"
|
"type": "object"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": ["method", "params"],
|
||||||
"method",
|
|
||||||
"params"
|
|
||||||
],
|
|
||||||
"type": "object"
|
"type": "object"
|
||||||
},
|
},
|
||||||
"InitializeResult": {
|
"InitializeResult": {
|
||||||
@@ -653,11 +583,7 @@
|
|||||||
"$ref": "#/definitions/Implementation"
|
"$ref": "#/definitions/Implementation"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": ["capabilities", "protocolVersion", "serverInfo"],
|
||||||
"capabilities",
|
|
||||||
"protocolVersion",
|
|
||||||
"serverInfo"
|
|
||||||
],
|
|
||||||
"type": "object"
|
"type": "object"
|
||||||
},
|
},
|
||||||
"InitializedNotification": {
|
"InitializedNotification": {
|
||||||
@@ -679,9 +605,7 @@
|
|||||||
"type": "object"
|
"type": "object"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": ["method"],
|
||||||
"method"
|
|
||||||
],
|
|
||||||
"type": "object"
|
"type": "object"
|
||||||
},
|
},
|
||||||
"JSONRPCBatchRequest": {
|
"JSONRPCBatchRequest": {
|
||||||
@@ -729,10 +653,7 @@
|
|||||||
"type": "string"
|
"type": "string"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": ["code", "message"],
|
||||||
"code",
|
|
||||||
"message"
|
|
||||||
],
|
|
||||||
"type": "object"
|
"type": "object"
|
||||||
},
|
},
|
||||||
"id": {
|
"id": {
|
||||||
@@ -743,11 +664,7 @@
|
|||||||
"type": "string"
|
"type": "string"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": ["error", "id", "jsonrpc"],
|
||||||
"error",
|
|
||||||
"id",
|
|
||||||
"jsonrpc"
|
|
||||||
],
|
|
||||||
"type": "object"
|
"type": "object"
|
||||||
},
|
},
|
||||||
"JSONRPCMessage": {
|
"JSONRPCMessage": {
|
||||||
@@ -817,10 +734,7 @@
|
|||||||
"type": "object"
|
"type": "object"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": ["jsonrpc", "method"],
|
||||||
"jsonrpc",
|
|
||||||
"method"
|
|
||||||
],
|
|
||||||
"type": "object"
|
"type": "object"
|
||||||
},
|
},
|
||||||
"JSONRPCRequest": {
|
"JSONRPCRequest": {
|
||||||
@@ -852,11 +766,7 @@
|
|||||||
"type": "object"
|
"type": "object"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": ["id", "jsonrpc", "method"],
|
||||||
"id",
|
|
||||||
"jsonrpc",
|
|
||||||
"method"
|
|
||||||
],
|
|
||||||
"type": "object"
|
"type": "object"
|
||||||
},
|
},
|
||||||
"JSONRPCResponse": {
|
"JSONRPCResponse": {
|
||||||
@@ -873,11 +783,7 @@
|
|||||||
"$ref": "#/definitions/Result"
|
"$ref": "#/definitions/Result"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": ["id", "jsonrpc", "result"],
|
||||||
"id",
|
|
||||||
"jsonrpc",
|
|
||||||
"result"
|
|
||||||
],
|
|
||||||
"type": "object"
|
"type": "object"
|
||||||
},
|
},
|
||||||
"ListPromptsRequest": {
|
"ListPromptsRequest": {
|
||||||
@@ -897,9 +803,7 @@
|
|||||||
"type": "object"
|
"type": "object"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": ["method"],
|
||||||
"method"
|
|
||||||
],
|
|
||||||
"type": "object"
|
"type": "object"
|
||||||
},
|
},
|
||||||
"ListPromptsResult": {
|
"ListPromptsResult": {
|
||||||
@@ -921,9 +825,7 @@
|
|||||||
"type": "array"
|
"type": "array"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": ["prompts"],
|
||||||
"prompts"
|
|
||||||
],
|
|
||||||
"type": "object"
|
"type": "object"
|
||||||
},
|
},
|
||||||
"ListResourceTemplatesRequest": {
|
"ListResourceTemplatesRequest": {
|
||||||
@@ -943,9 +845,7 @@
|
|||||||
"type": "object"
|
"type": "object"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": ["method"],
|
||||||
"method"
|
|
||||||
],
|
|
||||||
"type": "object"
|
"type": "object"
|
||||||
},
|
},
|
||||||
"ListResourceTemplatesResult": {
|
"ListResourceTemplatesResult": {
|
||||||
@@ -967,9 +867,7 @@
|
|||||||
"type": "array"
|
"type": "array"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": ["resourceTemplates"],
|
||||||
"resourceTemplates"
|
|
||||||
],
|
|
||||||
"type": "object"
|
"type": "object"
|
||||||
},
|
},
|
||||||
"ListResourcesRequest": {
|
"ListResourcesRequest": {
|
||||||
@@ -989,9 +887,7 @@
|
|||||||
"type": "object"
|
"type": "object"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": ["method"],
|
||||||
"method"
|
|
||||||
],
|
|
||||||
"type": "object"
|
"type": "object"
|
||||||
},
|
},
|
||||||
"ListResourcesResult": {
|
"ListResourcesResult": {
|
||||||
@@ -1013,9 +909,7 @@
|
|||||||
"type": "array"
|
"type": "array"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": ["resources"],
|
||||||
"resources"
|
|
||||||
],
|
|
||||||
"type": "object"
|
"type": "object"
|
||||||
},
|
},
|
||||||
"ListRootsRequest": {
|
"ListRootsRequest": {
|
||||||
@@ -1041,9 +935,7 @@
|
|||||||
"type": "object"
|
"type": "object"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": ["method"],
|
||||||
"method"
|
|
||||||
],
|
|
||||||
"type": "object"
|
"type": "object"
|
||||||
},
|
},
|
||||||
"ListRootsResult": {
|
"ListRootsResult": {
|
||||||
@@ -1061,9 +953,7 @@
|
|||||||
"type": "array"
|
"type": "array"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": ["roots"],
|
||||||
"roots"
|
|
||||||
],
|
|
||||||
"type": "object"
|
"type": "object"
|
||||||
},
|
},
|
||||||
"ListToolsRequest": {
|
"ListToolsRequest": {
|
||||||
@@ -1083,9 +973,7 @@
|
|||||||
"type": "object"
|
"type": "object"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": ["method"],
|
||||||
"method"
|
|
||||||
],
|
|
||||||
"type": "object"
|
"type": "object"
|
||||||
},
|
},
|
||||||
"ListToolsResult": {
|
"ListToolsResult": {
|
||||||
@@ -1107,9 +995,7 @@
|
|||||||
"type": "array"
|
"type": "array"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": ["tools"],
|
||||||
"tools"
|
|
||||||
],
|
|
||||||
"type": "object"
|
"type": "object"
|
||||||
},
|
},
|
||||||
"LoggingLevel": {
|
"LoggingLevel": {
|
||||||
@@ -1147,17 +1033,11 @@
|
|||||||
"type": "string"
|
"type": "string"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": ["data", "level"],
|
||||||
"data",
|
|
||||||
"level"
|
|
||||||
],
|
|
||||||
"type": "object"
|
"type": "object"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": ["method", "params"],
|
||||||
"method",
|
|
||||||
"params"
|
|
||||||
],
|
|
||||||
"type": "object"
|
"type": "object"
|
||||||
},
|
},
|
||||||
"ModelHint": {
|
"ModelHint": {
|
||||||
@@ -1218,9 +1098,7 @@
|
|||||||
"type": "object"
|
"type": "object"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": ["method"],
|
||||||
"method"
|
|
||||||
],
|
|
||||||
"type": "object"
|
"type": "object"
|
||||||
},
|
},
|
||||||
"PaginatedRequest": {
|
"PaginatedRequest": {
|
||||||
@@ -1238,9 +1116,7 @@
|
|||||||
"type": "object"
|
"type": "object"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": ["method"],
|
||||||
"method"
|
|
||||||
],
|
|
||||||
"type": "object"
|
"type": "object"
|
||||||
},
|
},
|
||||||
"PaginatedResult": {
|
"PaginatedResult": {
|
||||||
@@ -1280,9 +1156,7 @@
|
|||||||
"type": "object"
|
"type": "object"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": ["method"],
|
||||||
"method"
|
|
||||||
],
|
|
||||||
"type": "object"
|
"type": "object"
|
||||||
},
|
},
|
||||||
"ProgressNotification": {
|
"ProgressNotification": {
|
||||||
@@ -1311,25 +1185,16 @@
|
|||||||
"type": "number"
|
"type": "number"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": ["progress", "progressToken"],
|
||||||
"progress",
|
|
||||||
"progressToken"
|
|
||||||
],
|
|
||||||
"type": "object"
|
"type": "object"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": ["method", "params"],
|
||||||
"method",
|
|
||||||
"params"
|
|
||||||
],
|
|
||||||
"type": "object"
|
"type": "object"
|
||||||
},
|
},
|
||||||
"ProgressToken": {
|
"ProgressToken": {
|
||||||
"description": "A progress token, used to associate progress notifications with the original request.",
|
"description": "A progress token, used to associate progress notifications with the original request.",
|
||||||
"type": [
|
"type": ["string", "integer"]
|
||||||
"string",
|
|
||||||
"integer"
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
"Prompt": {
|
"Prompt": {
|
||||||
"description": "A prompt or prompt template that the server offers.",
|
"description": "A prompt or prompt template that the server offers.",
|
||||||
@@ -1350,9 +1215,7 @@
|
|||||||
"type": "string"
|
"type": "string"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": ["name"],
|
||||||
"name"
|
|
||||||
],
|
|
||||||
"type": "object"
|
"type": "object"
|
||||||
},
|
},
|
||||||
"PromptArgument": {
|
"PromptArgument": {
|
||||||
@@ -1371,9 +1234,7 @@
|
|||||||
"type": "boolean"
|
"type": "boolean"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": ["name"],
|
||||||
"name"
|
|
||||||
],
|
|
||||||
"type": "object"
|
"type": "object"
|
||||||
},
|
},
|
||||||
"PromptListChangedNotification": {
|
"PromptListChangedNotification": {
|
||||||
@@ -1395,9 +1256,7 @@
|
|||||||
"type": "object"
|
"type": "object"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": ["method"],
|
||||||
"method"
|
|
||||||
],
|
|
||||||
"type": "object"
|
"type": "object"
|
||||||
},
|
},
|
||||||
"PromptMessage": {
|
"PromptMessage": {
|
||||||
@@ -1423,10 +1282,7 @@
|
|||||||
"$ref": "#/definitions/Role"
|
"$ref": "#/definitions/Role"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": ["content", "role"],
|
||||||
"content",
|
|
||||||
"role"
|
|
||||||
],
|
|
||||||
"type": "object"
|
"type": "object"
|
||||||
},
|
},
|
||||||
"PromptReference": {
|
"PromptReference": {
|
||||||
@@ -1441,10 +1297,7 @@
|
|||||||
"type": "string"
|
"type": "string"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": ["name", "type"],
|
||||||
"name",
|
|
||||||
"type"
|
|
||||||
],
|
|
||||||
"type": "object"
|
"type": "object"
|
||||||
},
|
},
|
||||||
"ReadResourceRequest": {
|
"ReadResourceRequest": {
|
||||||
@@ -1462,16 +1315,11 @@
|
|||||||
"type": "string"
|
"type": "string"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": ["uri"],
|
||||||
"uri"
|
|
||||||
],
|
|
||||||
"type": "object"
|
"type": "object"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": ["method", "params"],
|
||||||
"method",
|
|
||||||
"params"
|
|
||||||
],
|
|
||||||
"type": "object"
|
"type": "object"
|
||||||
},
|
},
|
||||||
"ReadResourceResult": {
|
"ReadResourceResult": {
|
||||||
@@ -1496,9 +1344,7 @@
|
|||||||
"type": "array"
|
"type": "array"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": ["contents"],
|
||||||
"contents"
|
|
||||||
],
|
|
||||||
"type": "object"
|
"type": "object"
|
||||||
},
|
},
|
||||||
"Request": {
|
"Request": {
|
||||||
@@ -1522,17 +1368,12 @@
|
|||||||
"type": "object"
|
"type": "object"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": ["method"],
|
||||||
"method"
|
|
||||||
],
|
|
||||||
"type": "object"
|
"type": "object"
|
||||||
},
|
},
|
||||||
"RequestId": {
|
"RequestId": {
|
||||||
"description": "A uniquely identifying ID for a request in JSON-RPC.",
|
"description": "A uniquely identifying ID for a request in JSON-RPC.",
|
||||||
"type": [
|
"type": ["string", "integer"]
|
||||||
"string",
|
|
||||||
"integer"
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
"Resource": {
|
"Resource": {
|
||||||
"description": "A known resource that the server is capable of reading.",
|
"description": "A known resource that the server is capable of reading.",
|
||||||
@@ -1559,10 +1400,7 @@
|
|||||||
"type": "string"
|
"type": "string"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": ["name", "uri"],
|
||||||
"name",
|
|
||||||
"uri"
|
|
||||||
],
|
|
||||||
"type": "object"
|
"type": "object"
|
||||||
},
|
},
|
||||||
"ResourceContents": {
|
"ResourceContents": {
|
||||||
@@ -1578,9 +1416,7 @@
|
|||||||
"type": "string"
|
"type": "string"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": ["uri"],
|
||||||
"uri"
|
|
||||||
],
|
|
||||||
"type": "object"
|
"type": "object"
|
||||||
},
|
},
|
||||||
"ResourceListChangedNotification": {
|
"ResourceListChangedNotification": {
|
||||||
@@ -1602,9 +1438,7 @@
|
|||||||
"type": "object"
|
"type": "object"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": ["method"],
|
||||||
"method"
|
|
||||||
],
|
|
||||||
"type": "object"
|
"type": "object"
|
||||||
},
|
},
|
||||||
"ResourceReference": {
|
"ResourceReference": {
|
||||||
@@ -1620,10 +1454,7 @@
|
|||||||
"type": "string"
|
"type": "string"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": ["type", "uri"],
|
||||||
"type",
|
|
||||||
"uri"
|
|
||||||
],
|
|
||||||
"type": "object"
|
"type": "object"
|
||||||
},
|
},
|
||||||
"ResourceTemplate": {
|
"ResourceTemplate": {
|
||||||
@@ -1651,10 +1482,7 @@
|
|||||||
"type": "string"
|
"type": "string"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": ["name", "uriTemplate"],
|
||||||
"name",
|
|
||||||
"uriTemplate"
|
|
||||||
],
|
|
||||||
"type": "object"
|
"type": "object"
|
||||||
},
|
},
|
||||||
"ResourceUpdatedNotification": {
|
"ResourceUpdatedNotification": {
|
||||||
@@ -1672,16 +1500,11 @@
|
|||||||
"type": "string"
|
"type": "string"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": ["uri"],
|
||||||
"uri"
|
|
||||||
],
|
|
||||||
"type": "object"
|
"type": "object"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": ["method", "params"],
|
||||||
"method",
|
|
||||||
"params"
|
|
||||||
],
|
|
||||||
"type": "object"
|
"type": "object"
|
||||||
},
|
},
|
||||||
"Result": {
|
"Result": {
|
||||||
@@ -1697,10 +1520,7 @@
|
|||||||
},
|
},
|
||||||
"Role": {
|
"Role": {
|
||||||
"description": "The sender or recipient of messages and data in a conversation.",
|
"description": "The sender or recipient of messages and data in a conversation.",
|
||||||
"enum": [
|
"enum": ["assistant", "user"],
|
||||||
"assistant",
|
|
||||||
"user"
|
|
||||||
],
|
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
"Root": {
|
"Root": {
|
||||||
@@ -1716,9 +1536,7 @@
|
|||||||
"type": "string"
|
"type": "string"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": ["uri"],
|
||||||
"uri"
|
|
||||||
],
|
|
||||||
"type": "object"
|
"type": "object"
|
||||||
},
|
},
|
||||||
"RootsListChangedNotification": {
|
"RootsListChangedNotification": {
|
||||||
@@ -1740,9 +1558,7 @@
|
|||||||
"type": "object"
|
"type": "object"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": ["method"],
|
||||||
"method"
|
|
||||||
],
|
|
||||||
"type": "object"
|
"type": "object"
|
||||||
},
|
},
|
||||||
"SamplingMessage": {
|
"SamplingMessage": {
|
||||||
@@ -1765,10 +1581,7 @@
|
|||||||
"$ref": "#/definitions/Role"
|
"$ref": "#/definitions/Role"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": ["content", "role"],
|
||||||
"content",
|
|
||||||
"role"
|
|
||||||
],
|
|
||||||
"type": "object"
|
"type": "object"
|
||||||
},
|
},
|
||||||
"ServerCapabilities": {
|
"ServerCapabilities": {
|
||||||
@@ -1915,16 +1728,11 @@
|
|||||||
"description": "The level of logging that the client wants to receive from the server. The server should send all logs at this level and higher (i.e., more severe) to the client as notifications/message."
|
"description": "The level of logging that the client wants to receive from the server. The server should send all logs at this level and higher (i.e., more severe) to the client as notifications/message."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": ["level"],
|
||||||
"level"
|
|
||||||
],
|
|
||||||
"type": "object"
|
"type": "object"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": ["method", "params"],
|
||||||
"method",
|
|
||||||
"params"
|
|
||||||
],
|
|
||||||
"type": "object"
|
"type": "object"
|
||||||
},
|
},
|
||||||
"SubscribeRequest": {
|
"SubscribeRequest": {
|
||||||
@@ -1942,16 +1750,11 @@
|
|||||||
"type": "string"
|
"type": "string"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": ["uri"],
|
||||||
"uri"
|
|
||||||
],
|
|
||||||
"type": "object"
|
"type": "object"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": ["method", "params"],
|
||||||
"method",
|
|
||||||
"params"
|
|
||||||
],
|
|
||||||
"type": "object"
|
"type": "object"
|
||||||
},
|
},
|
||||||
"TextContent": {
|
"TextContent": {
|
||||||
@@ -1970,10 +1773,7 @@
|
|||||||
"type": "string"
|
"type": "string"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": ["text", "type"],
|
||||||
"text",
|
|
||||||
"type"
|
|
||||||
],
|
|
||||||
"type": "object"
|
"type": "object"
|
||||||
},
|
},
|
||||||
"TextResourceContents": {
|
"TextResourceContents": {
|
||||||
@@ -1992,10 +1792,7 @@
|
|||||||
"type": "string"
|
"type": "string"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": ["text", "uri"],
|
||||||
"text",
|
|
||||||
"uri"
|
|
||||||
],
|
|
||||||
"type": "object"
|
"type": "object"
|
||||||
},
|
},
|
||||||
"Tool": {
|
"Tool": {
|
||||||
@@ -2031,9 +1828,7 @@
|
|||||||
"type": "string"
|
"type": "string"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": ["type"],
|
||||||
"type"
|
|
||||||
],
|
|
||||||
"type": "object"
|
"type": "object"
|
||||||
},
|
},
|
||||||
"name": {
|
"name": {
|
||||||
@@ -2041,10 +1836,7 @@
|
|||||||
"type": "string"
|
"type": "string"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": ["inputSchema", "name"],
|
||||||
"inputSchema",
|
|
||||||
"name"
|
|
||||||
],
|
|
||||||
"type": "object"
|
"type": "object"
|
||||||
},
|
},
|
||||||
"ToolAnnotations": {
|
"ToolAnnotations": {
|
||||||
@@ -2092,9 +1884,7 @@
|
|||||||
"type": "object"
|
"type": "object"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": ["method"],
|
||||||
"method"
|
|
||||||
],
|
|
||||||
"type": "object"
|
"type": "object"
|
||||||
},
|
},
|
||||||
"UnsubscribeRequest": {
|
"UnsubscribeRequest": {
|
||||||
@@ -2112,16 +1902,11 @@
|
|||||||
"type": "string"
|
"type": "string"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": ["uri"],
|
||||||
"uri"
|
|
||||||
],
|
|
||||||
"type": "object"
|
"type": "object"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": ["method", "params"],
|
||||||
"method",
|
|
||||||
"params"
|
|
||||||
],
|
|
||||||
"type": "object"
|
"type": "object"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
2
index.js
2
index.js
@@ -80,7 +80,7 @@ if (import.meta.url === `file://${process.argv[1]}`) {
|
|||||||
.command('init')
|
.command('init')
|
||||||
.description('Initialize a new project')
|
.description('Initialize a new project')
|
||||||
.action(() => {
|
.action(() => {
|
||||||
runInitCLI().catch(err => {
|
runInitCLI().catch((err) => {
|
||||||
console.error('Init failed:', err.message);
|
console.error('Init failed:', err.message);
|
||||||
process.exit(1);
|
process.exit(1);
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
#!/usr/bin/env node
|
#!/usr/bin/env node
|
||||||
|
|
||||||
import TaskMasterMCPServer from "./src/index.js";
|
import TaskMasterMCPServer from './src/index.js';
|
||||||
import dotenv from "dotenv";
|
import dotenv from 'dotenv';
|
||||||
import logger from "./src/logger.js";
|
import logger from './src/logger.js';
|
||||||
|
|
||||||
// Load environment variables
|
// Load environment variables
|
||||||
dotenv.config();
|
dotenv.config();
|
||||||
@@ -14,12 +14,12 @@ async function startServer() {
|
|||||||
const server = new TaskMasterMCPServer();
|
const server = new TaskMasterMCPServer();
|
||||||
|
|
||||||
// Handle graceful shutdown
|
// Handle graceful shutdown
|
||||||
process.on("SIGINT", async () => {
|
process.on('SIGINT', async () => {
|
||||||
await server.stop();
|
await server.stop();
|
||||||
process.exit(0);
|
process.exit(0);
|
||||||
});
|
});
|
||||||
|
|
||||||
process.on("SIGTERM", async () => {
|
process.on('SIGTERM', async () => {
|
||||||
await server.stop();
|
await server.stop();
|
||||||
process.exit(0);
|
process.exit(0);
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -14,7 +14,9 @@ describe('ContextManager', () => {
|
|||||||
|
|
||||||
describe('getContext', () => {
|
describe('getContext', () => {
|
||||||
it('should create a new context when not in cache', async () => {
|
it('should create a new context when not in cache', async () => {
|
||||||
const context = await contextManager.getContext('test-id', { test: true });
|
const context = await contextManager.getContext('test-id', {
|
||||||
|
test: true
|
||||||
|
});
|
||||||
expect(context.id).toBe('test-id');
|
expect(context.id).toBe('test-id');
|
||||||
expect(context.metadata.test).toBe(true);
|
expect(context.metadata.test).toBe(true);
|
||||||
expect(contextManager.stats.misses).toBe(1);
|
expect(contextManager.stats.misses).toBe(1);
|
||||||
@@ -26,7 +28,9 @@ describe('ContextManager', () => {
|
|||||||
await contextManager.getContext('test-id', { test: true });
|
await contextManager.getContext('test-id', { test: true });
|
||||||
|
|
||||||
// Second call should hit cache
|
// Second call should hit cache
|
||||||
const context = await contextManager.getContext('test-id', { test: true });
|
const context = await contextManager.getContext('test-id', {
|
||||||
|
test: true
|
||||||
|
});
|
||||||
expect(context.id).toBe('test-id');
|
expect(context.id).toBe('test-id');
|
||||||
expect(context.metadata.test).toBe(true);
|
expect(context.metadata.test).toBe(true);
|
||||||
expect(contextManager.stats.hits).toBe(1);
|
expect(contextManager.stats.hits).toBe(1);
|
||||||
@@ -38,7 +42,7 @@ describe('ContextManager', () => {
|
|||||||
await contextManager.getContext('test-id', { test: true });
|
await contextManager.getContext('test-id', { test: true });
|
||||||
|
|
||||||
// Wait for TTL to expire
|
// Wait for TTL to expire
|
||||||
await new Promise(resolve => setTimeout(resolve, 1100));
|
await new Promise((resolve) => setTimeout(resolve, 1100));
|
||||||
|
|
||||||
// Should create new context
|
// Should create new context
|
||||||
await contextManager.getContext('test-id', { test: true });
|
await contextManager.getContext('test-id', { test: true });
|
||||||
@@ -50,7 +54,9 @@ describe('ContextManager', () => {
|
|||||||
describe('updateContext', () => {
|
describe('updateContext', () => {
|
||||||
it('should update existing context metadata', async () => {
|
it('should update existing context metadata', async () => {
|
||||||
await contextManager.getContext('test-id', { initial: true });
|
await contextManager.getContext('test-id', { initial: true });
|
||||||
const updated = await contextManager.updateContext('test-id', { updated: true });
|
const updated = await contextManager.updateContext('test-id', {
|
||||||
|
updated: true
|
||||||
|
});
|
||||||
|
|
||||||
expect(updated.metadata.initial).toBe(true);
|
expect(updated.metadata.initial).toBe(true);
|
||||||
expect(updated.metadata.updated).toBe(true);
|
expect(updated.metadata.updated).toBe(true);
|
||||||
|
|||||||
@@ -112,7 +112,8 @@ export class ContextManager {
|
|||||||
*/
|
*/
|
||||||
getCachedData(key) {
|
getCachedData(key) {
|
||||||
const cached = this.cache.get(key);
|
const cached = this.cache.get(key);
|
||||||
if (cached !== undefined) { // Check for undefined specifically, as null/false might be valid cached values
|
if (cached !== undefined) {
|
||||||
|
// Check for undefined specifically, as null/false might be valid cached values
|
||||||
this.stats.hits++;
|
this.stats.hits++;
|
||||||
return cached;
|
return cached;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -17,7 +17,7 @@ const __dirname = dirname(__filename);
|
|||||||
|
|
||||||
// Import Task Master modules
|
// Import Task Master modules
|
||||||
import {
|
import {
|
||||||
listTasks,
|
listTasks
|
||||||
// We'll import more functions as we continue implementation
|
// We'll import more functions as we continue implementation
|
||||||
} from '../../../scripts/modules/task-manager.js';
|
} from '../../../scripts/modules/task-manager.js';
|
||||||
|
|
||||||
@@ -62,7 +62,9 @@ function findTasksJsonPath(args, log) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// If no file was found, throw an error
|
// If no file was found, throw an error
|
||||||
const error = new Error(`Tasks file not found in any of the expected locations relative to ${projectRoot}: ${possiblePaths.join(', ')}`);
|
const error = new Error(
|
||||||
|
`Tasks file not found in any of the expected locations relative to ${projectRoot}: ${possiblePaths.join(', ')}`
|
||||||
|
);
|
||||||
error.code = 'TASKS_FILE_NOT_FOUND';
|
error.code = 'TASKS_FILE_NOT_FOUND';
|
||||||
throw error;
|
throw error;
|
||||||
}
|
}
|
||||||
@@ -83,11 +85,19 @@ export async function listTasksDirect(args, log) {
|
|||||||
if (error.code === 'TASKS_FILE_NOT_FOUND') {
|
if (error.code === 'TASKS_FILE_NOT_FOUND') {
|
||||||
log.error(`Tasks file not found: ${error.message}`);
|
log.error(`Tasks file not found: ${error.message}`);
|
||||||
// Return the error structure expected by the calling tool/handler
|
// Return the error structure expected by the calling tool/handler
|
||||||
return { success: false, error: { code: error.code, message: error.message }, fromCache: false };
|
return {
|
||||||
|
success: false,
|
||||||
|
error: { code: error.code, message: error.message },
|
||||||
|
fromCache: false
|
||||||
|
};
|
||||||
}
|
}
|
||||||
log.error(`Unexpected error finding tasks file: ${error.message}`);
|
log.error(`Unexpected error finding tasks file: ${error.message}`);
|
||||||
// Re-throw for outer catch or return structured error
|
// Re-throw for outer catch or return structured error
|
||||||
return { success: false, error: { code: 'FIND_TASKS_PATH_ERROR', message: error.message }, fromCache: false };
|
return {
|
||||||
|
success: false,
|
||||||
|
error: { code: 'FIND_TASKS_PATH_ERROR', message: error.message },
|
||||||
|
fromCache: false
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
// Generate cache key *after* finding tasksPath
|
// Generate cache key *after* finding tasksPath
|
||||||
@@ -98,19 +108,39 @@ export async function listTasksDirect(args, log) {
|
|||||||
// Define the action function to be executed on cache miss
|
// Define the action function to be executed on cache miss
|
||||||
const coreListTasksAction = async () => {
|
const coreListTasksAction = async () => {
|
||||||
try {
|
try {
|
||||||
log.info(`Executing core listTasks function for path: ${tasksPath}, filter: ${statusFilter}, subtasks: ${withSubtasks}`);
|
log.info(
|
||||||
const resultData = listTasks(tasksPath, statusFilter, withSubtasks, 'json');
|
`Executing core listTasks function for path: ${tasksPath}, filter: ${statusFilter}, subtasks: ${withSubtasks}`
|
||||||
|
);
|
||||||
|
const resultData = listTasks(
|
||||||
|
tasksPath,
|
||||||
|
statusFilter,
|
||||||
|
withSubtasks,
|
||||||
|
'json'
|
||||||
|
);
|
||||||
|
|
||||||
if (!resultData || !resultData.tasks) {
|
if (!resultData || !resultData.tasks) {
|
||||||
log.error('Invalid or empty response from listTasks core function');
|
log.error('Invalid or empty response from listTasks core function');
|
||||||
return { success: false, error: { code: 'INVALID_CORE_RESPONSE', message: 'Invalid or empty response from listTasks core function' } };
|
return {
|
||||||
|
success: false,
|
||||||
|
error: {
|
||||||
|
code: 'INVALID_CORE_RESPONSE',
|
||||||
|
message: 'Invalid or empty response from listTasks core function'
|
||||||
}
|
}
|
||||||
log.info(`Core listTasks function retrieved ${resultData.tasks.length} tasks`);
|
};
|
||||||
|
}
|
||||||
|
log.info(
|
||||||
|
`Core listTasks function retrieved ${resultData.tasks.length} tasks`
|
||||||
|
);
|
||||||
return { success: true, data: resultData };
|
return { success: true, data: resultData };
|
||||||
|
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
log.error(`Core listTasks function failed: ${error.message}`);
|
log.error(`Core listTasks function failed: ${error.message}`);
|
||||||
return { success: false, error: { code: 'LIST_TASKS_CORE_ERROR', message: error.message || 'Failed to list tasks' } };
|
return {
|
||||||
|
success: false,
|
||||||
|
error: {
|
||||||
|
code: 'LIST_TASKS_CORE_ERROR',
|
||||||
|
message: error.message || 'Failed to list tasks'
|
||||||
|
}
|
||||||
|
};
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -123,11 +153,17 @@ export async function listTasksDirect(args, log) {
|
|||||||
});
|
});
|
||||||
log.info(`listTasksDirect completed. From cache: ${result.fromCache}`);
|
log.info(`listTasksDirect completed. From cache: ${result.fromCache}`);
|
||||||
return result; // Returns { success, data/error, fromCache }
|
return result; // Returns { success, data/error, fromCache }
|
||||||
} catch(error) {
|
} catch (error) {
|
||||||
// Catch unexpected errors from getCachedOrExecute itself (though unlikely)
|
// Catch unexpected errors from getCachedOrExecute itself (though unlikely)
|
||||||
log.error(`Unexpected error during getCachedOrExecute for listTasks: ${error.message}`);
|
log.error(
|
||||||
|
`Unexpected error during getCachedOrExecute for listTasks: ${error.message}`
|
||||||
|
);
|
||||||
console.error(error.stack);
|
console.error(error.stack);
|
||||||
return { success: false, error: { code: 'CACHE_UTIL_ERROR', message: error.message }, fromCache: false };
|
return {
|
||||||
|
success: false,
|
||||||
|
error: { code: 'CACHE_UTIL_ERROR', message: error.message },
|
||||||
|
fromCache: false
|
||||||
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -162,6 +198,6 @@ export async function getCacheStatsDirect(args, log) {
|
|||||||
*/
|
*/
|
||||||
export const directFunctions = {
|
export const directFunctions = {
|
||||||
list: listTasksDirect,
|
list: listTasksDirect,
|
||||||
cacheStats: getCacheStatsDirect,
|
cacheStats: getCacheStatsDirect
|
||||||
// Add more functions as we implement them
|
// Add more functions as we implement them
|
||||||
};
|
};
|
||||||
@@ -1,10 +1,10 @@
|
|||||||
import { FastMCP } from "fastmcp";
|
import { FastMCP } from 'fastmcp';
|
||||||
import path from "path";
|
import path from 'path';
|
||||||
import dotenv from "dotenv";
|
import dotenv from 'dotenv';
|
||||||
import { fileURLToPath } from "url";
|
import { fileURLToPath } from 'url';
|
||||||
import fs from "fs";
|
import fs from 'fs';
|
||||||
import logger from "./logger.js";
|
import logger from './logger.js';
|
||||||
import { registerTaskMasterTools } from "./tools/index.js";
|
import { registerTaskMasterTools } from './tools/index.js';
|
||||||
|
|
||||||
// Load environment variables
|
// Load environment variables
|
||||||
dotenv.config();
|
dotenv.config();
|
||||||
@@ -19,12 +19,12 @@ const __dirname = path.dirname(__filename);
|
|||||||
class TaskMasterMCPServer {
|
class TaskMasterMCPServer {
|
||||||
constructor() {
|
constructor() {
|
||||||
// Get version from package.json using synchronous fs
|
// Get version from package.json using synchronous fs
|
||||||
const packagePath = path.join(__dirname, "../../package.json");
|
const packagePath = path.join(__dirname, '../../package.json');
|
||||||
const packageJson = JSON.parse(fs.readFileSync(packagePath, "utf8"));
|
const packageJson = JSON.parse(fs.readFileSync(packagePath, 'utf8'));
|
||||||
|
|
||||||
this.options = {
|
this.options = {
|
||||||
name: "Task Master MCP Server",
|
name: 'Task Master MCP Server',
|
||||||
version: packageJson.version,
|
version: packageJson.version
|
||||||
};
|
};
|
||||||
|
|
||||||
this.server = new FastMCP(this.options);
|
this.server = new FastMCP(this.options);
|
||||||
@@ -67,7 +67,7 @@ class TaskMasterMCPServer {
|
|||||||
|
|
||||||
// Start the FastMCP server
|
// Start the FastMCP server
|
||||||
await this.server.start({
|
await this.server.start({
|
||||||
transportType: "stdio",
|
transportType: 'stdio'
|
||||||
});
|
});
|
||||||
|
|
||||||
return this;
|
return this;
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import chalk from "chalk";
|
import chalk from 'chalk';
|
||||||
|
|
||||||
// Define log levels
|
// Define log levels
|
||||||
const LOG_LEVELS = {
|
const LOG_LEVELS = {
|
||||||
@@ -6,7 +6,7 @@ const LOG_LEVELS = {
|
|||||||
info: 1,
|
info: 1,
|
||||||
warn: 2,
|
warn: 2,
|
||||||
error: 3,
|
error: 3,
|
||||||
success: 4,
|
success: 4
|
||||||
};
|
};
|
||||||
|
|
||||||
// Get log level from environment or default to info
|
// Get log level from environment or default to info
|
||||||
@@ -21,23 +21,23 @@ const LOG_LEVEL = process.env.LOG_LEVEL
|
|||||||
*/
|
*/
|
||||||
function log(level, ...args) {
|
function log(level, ...args) {
|
||||||
const icons = {
|
const icons = {
|
||||||
debug: chalk.gray("🔍"),
|
debug: chalk.gray('🔍'),
|
||||||
info: chalk.blue("ℹ️"),
|
info: chalk.blue('ℹ️'),
|
||||||
warn: chalk.yellow("⚠️"),
|
warn: chalk.yellow('⚠️'),
|
||||||
error: chalk.red("❌"),
|
error: chalk.red('❌'),
|
||||||
success: chalk.green("✅"),
|
success: chalk.green('✅')
|
||||||
};
|
};
|
||||||
|
|
||||||
if (LOG_LEVELS[level] >= LOG_LEVEL) {
|
if (LOG_LEVELS[level] >= LOG_LEVEL) {
|
||||||
const icon = icons[level] || "";
|
const icon = icons[level] || '';
|
||||||
|
|
||||||
if (level === "error") {
|
if (level === 'error') {
|
||||||
console.error(icon, chalk.red(...args));
|
console.error(icon, chalk.red(...args));
|
||||||
} else if (level === "warn") {
|
} else if (level === 'warn') {
|
||||||
console.warn(icon, chalk.yellow(...args));
|
console.warn(icon, chalk.yellow(...args));
|
||||||
} else if (level === "success") {
|
} else if (level === 'success') {
|
||||||
console.log(icon, chalk.green(...args));
|
console.log(icon, chalk.green(...args));
|
||||||
} else if (level === "info") {
|
} else if (level === 'info') {
|
||||||
console.log(icon, chalk.blue(...args));
|
console.log(icon, chalk.blue(...args));
|
||||||
} else {
|
} else {
|
||||||
console.log(icon, ...args);
|
console.log(icon, ...args);
|
||||||
@@ -52,12 +52,12 @@ function log(level, ...args) {
|
|||||||
*/
|
*/
|
||||||
export function createLogger() {
|
export function createLogger() {
|
||||||
return {
|
return {
|
||||||
debug: (message) => log("debug", message),
|
debug: (message) => log('debug', message),
|
||||||
info: (message) => log("info", message),
|
info: (message) => log('info', message),
|
||||||
warn: (message) => log("warn", message),
|
warn: (message) => log('warn', message),
|
||||||
error: (message) => log("error", message),
|
error: (message) => log('error', message),
|
||||||
success: (message) => log("success", message),
|
success: (message) => log('success', message),
|
||||||
log: log, // Also expose the raw log function
|
log: log // Also expose the raw log function
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -3,12 +3,12 @@
|
|||||||
* Tool to add a new task using AI
|
* Tool to add a new task using AI
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import { z } from "zod";
|
import { z } from 'zod';
|
||||||
import {
|
import {
|
||||||
executeTaskMasterCommand,
|
executeTaskMasterCommand,
|
||||||
createContentResponse,
|
createContentResponse,
|
||||||
createErrorResponse,
|
createErrorResponse
|
||||||
} from "./utils.js";
|
} from './utils.js';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Register the addTask tool with the MCP server
|
* Register the addTask tool with the MCP server
|
||||||
@@ -16,24 +16,24 @@ import {
|
|||||||
*/
|
*/
|
||||||
export function registerAddTaskTool(server) {
|
export function registerAddTaskTool(server) {
|
||||||
server.addTool({
|
server.addTool({
|
||||||
name: "addTask",
|
name: 'addTask',
|
||||||
description: "Add a new task using AI",
|
description: 'Add a new task using AI',
|
||||||
parameters: z.object({
|
parameters: z.object({
|
||||||
prompt: z.string().describe("Description of the task to add"),
|
prompt: z.string().describe('Description of the task to add'),
|
||||||
dependencies: z
|
dependencies: z
|
||||||
.string()
|
.string()
|
||||||
.optional()
|
.optional()
|
||||||
.describe("Comma-separated list of task IDs this task depends on"),
|
.describe('Comma-separated list of task IDs this task depends on'),
|
||||||
priority: z
|
priority: z
|
||||||
.string()
|
.string()
|
||||||
.optional()
|
.optional()
|
||||||
.describe("Task priority (high, medium, low)"),
|
.describe('Task priority (high, medium, low)'),
|
||||||
file: z.string().optional().describe("Path to the tasks file"),
|
file: z.string().optional().describe('Path to the tasks file'),
|
||||||
projectRoot: z
|
projectRoot: z
|
||||||
.string()
|
.string()
|
||||||
.describe(
|
.describe(
|
||||||
"Root directory of the project (default: current working directory)"
|
'Root directory of the project (default: current working directory)'
|
||||||
),
|
)
|
||||||
}),
|
}),
|
||||||
execute: async (args, { log }) => {
|
execute: async (args, { log }) => {
|
||||||
try {
|
try {
|
||||||
@@ -46,7 +46,7 @@ export function registerAddTaskTool(server) {
|
|||||||
if (args.file) cmdArgs.push(`--file=${args.file}`);
|
if (args.file) cmdArgs.push(`--file=${args.file}`);
|
||||||
|
|
||||||
const result = executeTaskMasterCommand(
|
const result = executeTaskMasterCommand(
|
||||||
"add-task",
|
'add-task',
|
||||||
log,
|
log,
|
||||||
cmdArgs,
|
cmdArgs,
|
||||||
projectRoot
|
projectRoot
|
||||||
@@ -61,6 +61,6 @@ export function registerAddTaskTool(server) {
|
|||||||
log.error(`Error adding task: ${error.message}`);
|
log.error(`Error adding task: ${error.message}`);
|
||||||
return createErrorResponse(`Error adding task: ${error.message}`);
|
return createErrorResponse(`Error adding task: ${error.message}`);
|
||||||
}
|
}
|
||||||
},
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,12 +3,12 @@
|
|||||||
* Tool to break down a task into detailed subtasks
|
* Tool to break down a task into detailed subtasks
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import { z } from "zod";
|
import { z } from 'zod';
|
||||||
import {
|
import {
|
||||||
executeTaskMasterCommand,
|
executeTaskMasterCommand,
|
||||||
createContentResponse,
|
createContentResponse,
|
||||||
createErrorResponse,
|
createErrorResponse
|
||||||
} from "./utils.js";
|
} from './utils.js';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Register the expandTask tool with the MCP server
|
* Register the expandTask tool with the MCP server
|
||||||
@@ -16,33 +16,33 @@ import {
|
|||||||
*/
|
*/
|
||||||
export function registerExpandTaskTool(server) {
|
export function registerExpandTaskTool(server) {
|
||||||
server.addTool({
|
server.addTool({
|
||||||
name: "expandTask",
|
name: 'expandTask',
|
||||||
description: "Break down a task into detailed subtasks",
|
description: 'Break down a task into detailed subtasks',
|
||||||
parameters: z.object({
|
parameters: z.object({
|
||||||
id: z.string().describe("Task ID to expand"),
|
id: z.string().describe('Task ID to expand'),
|
||||||
num: z.number().optional().describe("Number of subtasks to generate"),
|
num: z.number().optional().describe('Number of subtasks to generate'),
|
||||||
research: z
|
research: z
|
||||||
.boolean()
|
.boolean()
|
||||||
.optional()
|
.optional()
|
||||||
.describe(
|
.describe(
|
||||||
"Enable Perplexity AI for research-backed subtask generation"
|
'Enable Perplexity AI for research-backed subtask generation'
|
||||||
),
|
),
|
||||||
prompt: z
|
prompt: z
|
||||||
.string()
|
.string()
|
||||||
.optional()
|
.optional()
|
||||||
.describe("Additional context to guide subtask generation"),
|
.describe('Additional context to guide subtask generation'),
|
||||||
force: z
|
force: z
|
||||||
.boolean()
|
.boolean()
|
||||||
.optional()
|
.optional()
|
||||||
.describe(
|
.describe(
|
||||||
"Force regeneration of subtasks for tasks that already have them"
|
'Force regeneration of subtasks for tasks that already have them'
|
||||||
),
|
),
|
||||||
file: z.string().optional().describe("Path to the tasks file"),
|
file: z.string().optional().describe('Path to the tasks file'),
|
||||||
projectRoot: z
|
projectRoot: z
|
||||||
.string()
|
.string()
|
||||||
.describe(
|
.describe(
|
||||||
"Root directory of the project (default: current working directory)"
|
'Root directory of the project (default: current working directory)'
|
||||||
),
|
)
|
||||||
}),
|
}),
|
||||||
execute: async (args, { log }) => {
|
execute: async (args, { log }) => {
|
||||||
try {
|
try {
|
||||||
@@ -50,15 +50,15 @@ export function registerExpandTaskTool(server) {
|
|||||||
|
|
||||||
const cmdArgs = [`--id=${args.id}`];
|
const cmdArgs = [`--id=${args.id}`];
|
||||||
if (args.num) cmdArgs.push(`--num=${args.num}`);
|
if (args.num) cmdArgs.push(`--num=${args.num}`);
|
||||||
if (args.research) cmdArgs.push("--research");
|
if (args.research) cmdArgs.push('--research');
|
||||||
if (args.prompt) cmdArgs.push(`--prompt="${args.prompt}"`);
|
if (args.prompt) cmdArgs.push(`--prompt="${args.prompt}"`);
|
||||||
if (args.force) cmdArgs.push("--force");
|
if (args.force) cmdArgs.push('--force');
|
||||||
if (args.file) cmdArgs.push(`--file=${args.file}`);
|
if (args.file) cmdArgs.push(`--file=${args.file}`);
|
||||||
|
|
||||||
const projectRoot = args.projectRoot;
|
const projectRoot = args.projectRoot;
|
||||||
|
|
||||||
const result = executeTaskMasterCommand(
|
const result = executeTaskMasterCommand(
|
||||||
"expand",
|
'expand',
|
||||||
log,
|
log,
|
||||||
cmdArgs,
|
cmdArgs,
|
||||||
projectRoot
|
projectRoot
|
||||||
@@ -73,6 +73,6 @@ export function registerExpandTaskTool(server) {
|
|||||||
log.error(`Error expanding task: ${error.message}`);
|
log.error(`Error expanding task: ${error.message}`);
|
||||||
return createErrorResponse(`Error expanding task: ${error.message}`);
|
return createErrorResponse(`Error expanding task: ${error.message}`);
|
||||||
}
|
}
|
||||||
},
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,13 +3,13 @@
|
|||||||
* Export all Task Master CLI tools for MCP server
|
* Export all Task Master CLI tools for MCP server
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import logger from "../logger.js";
|
import logger from '../logger.js';
|
||||||
import { registerListTasksTool } from "./listTasks.js";
|
import { registerListTasksTool } from './listTasks.js';
|
||||||
import { registerShowTaskTool } from "./showTask.js";
|
import { registerShowTaskTool } from './showTask.js';
|
||||||
import { registerSetTaskStatusTool } from "./setTaskStatus.js";
|
import { registerSetTaskStatusTool } from './setTaskStatus.js';
|
||||||
import { registerExpandTaskTool } from "./expandTask.js";
|
import { registerExpandTaskTool } from './expandTask.js';
|
||||||
import { registerNextTaskTool } from "./nextTask.js";
|
import { registerNextTaskTool } from './nextTask.js';
|
||||||
import { registerAddTaskTool } from "./addTask.js";
|
import { registerAddTaskTool } from './addTask.js';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Register all Task Master tools with the MCP server
|
* Register all Task Master tools with the MCP server
|
||||||
@@ -25,5 +25,5 @@ export function registerTaskMasterTools(server) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
registerTaskMasterTools,
|
registerTaskMasterTools
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -3,12 +3,9 @@
|
|||||||
* Tool to list all tasks from Task Master
|
* Tool to list all tasks from Task Master
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import { z } from "zod";
|
import { z } from 'zod';
|
||||||
import {
|
import { createErrorResponse, handleApiResult } from './utils.js';
|
||||||
createErrorResponse,
|
import { listTasksDirect } from '../core/task-master-core.js';
|
||||||
handleApiResult
|
|
||||||
} from "./utils.js";
|
|
||||||
import { listTasksDirect } from "../core/task-master-core.js";
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Register the listTasks tool with the MCP server
|
* Register the listTasks tool with the MCP server
|
||||||
@@ -16,21 +13,21 @@ import { listTasksDirect } from "../core/task-master-core.js";
|
|||||||
*/
|
*/
|
||||||
export function registerListTasksTool(server) {
|
export function registerListTasksTool(server) {
|
||||||
server.addTool({
|
server.addTool({
|
||||||
name: "listTasks",
|
name: 'listTasks',
|
||||||
description: "List all tasks from Task Master",
|
description: 'List all tasks from Task Master',
|
||||||
parameters: z.object({
|
parameters: z.object({
|
||||||
status: z.string().optional().describe("Filter tasks by status"),
|
status: z.string().optional().describe('Filter tasks by status'),
|
||||||
withSubtasks: z
|
withSubtasks: z
|
||||||
.boolean()
|
.boolean()
|
||||||
.optional()
|
.optional()
|
||||||
.describe("Include subtasks in the response"),
|
.describe('Include subtasks in the response'),
|
||||||
file: z.string().optional().describe("Path to the tasks file"),
|
file: z.string().optional().describe('Path to the tasks file'),
|
||||||
projectRoot: z
|
projectRoot: z
|
||||||
.string()
|
.string()
|
||||||
.optional()
|
.optional()
|
||||||
.describe(
|
.describe(
|
||||||
"Root directory of the project (default: current working directory)"
|
'Root directory of the project (default: current working directory)'
|
||||||
),
|
)
|
||||||
}),
|
}),
|
||||||
execute: async (args, { log }) => {
|
execute: async (args, { log }) => {
|
||||||
try {
|
try {
|
||||||
@@ -40,13 +37,15 @@ export function registerListTasksTool(server) {
|
|||||||
const result = await listTasksDirect(args, log);
|
const result = await listTasksDirect(args, log);
|
||||||
|
|
||||||
// Log result and use handleApiResult utility
|
// Log result and use handleApiResult utility
|
||||||
log.info(`Retrieved ${result.success ? (result.data?.tasks?.length || 0) : 0} tasks`);
|
log.info(
|
||||||
|
`Retrieved ${result.success ? result.data?.tasks?.length || 0 : 0} tasks`
|
||||||
|
);
|
||||||
return handleApiResult(result, log, 'Error listing tasks');
|
return handleApiResult(result, log, 'Error listing tasks');
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
log.error(`Error listing tasks: ${error.message}`);
|
log.error(`Error listing tasks: ${error.message}`);
|
||||||
return createErrorResponse(error.message);
|
return createErrorResponse(error.message);
|
||||||
}
|
}
|
||||||
},
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -3,12 +3,12 @@
|
|||||||
* Tool to show the next task to work on based on dependencies and status
|
* Tool to show the next task to work on based on dependencies and status
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import { z } from "zod";
|
import { z } from 'zod';
|
||||||
import {
|
import {
|
||||||
executeTaskMasterCommand,
|
executeTaskMasterCommand,
|
||||||
createContentResponse,
|
createContentResponse,
|
||||||
createErrorResponse,
|
createErrorResponse
|
||||||
} from "./utils.js";
|
} from './utils.js';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Register the nextTask tool with the MCP server
|
* Register the nextTask tool with the MCP server
|
||||||
@@ -16,16 +16,16 @@ import {
|
|||||||
*/
|
*/
|
||||||
export function registerNextTaskTool(server) {
|
export function registerNextTaskTool(server) {
|
||||||
server.addTool({
|
server.addTool({
|
||||||
name: "nextTask",
|
name: 'nextTask',
|
||||||
description:
|
description:
|
||||||
"Show the next task to work on based on dependencies and status",
|
'Show the next task to work on based on dependencies and status',
|
||||||
parameters: z.object({
|
parameters: z.object({
|
||||||
file: z.string().optional().describe("Path to the tasks file"),
|
file: z.string().optional().describe('Path to the tasks file'),
|
||||||
projectRoot: z
|
projectRoot: z
|
||||||
.string()
|
.string()
|
||||||
.describe(
|
.describe(
|
||||||
"Root directory of the project (default: current working directory)"
|
'Root directory of the project (default: current working directory)'
|
||||||
),
|
)
|
||||||
}),
|
}),
|
||||||
execute: async (args, { log }) => {
|
execute: async (args, { log }) => {
|
||||||
try {
|
try {
|
||||||
@@ -37,7 +37,7 @@ export function registerNextTaskTool(server) {
|
|||||||
const projectRoot = args.projectRoot;
|
const projectRoot = args.projectRoot;
|
||||||
|
|
||||||
const result = executeTaskMasterCommand(
|
const result = executeTaskMasterCommand(
|
||||||
"next",
|
'next',
|
||||||
log,
|
log,
|
||||||
cmdArgs,
|
cmdArgs,
|
||||||
projectRoot
|
projectRoot
|
||||||
@@ -52,6 +52,6 @@ export function registerNextTaskTool(server) {
|
|||||||
log.error(`Error finding next task: ${error.message}`);
|
log.error(`Error finding next task: ${error.message}`);
|
||||||
return createErrorResponse(`Error finding next task: ${error.message}`);
|
return createErrorResponse(`Error finding next task: ${error.message}`);
|
||||||
}
|
}
|
||||||
},
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,12 +3,12 @@
|
|||||||
* Tool to set the status of a task
|
* Tool to set the status of a task
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import { z } from "zod";
|
import { z } from 'zod';
|
||||||
import {
|
import {
|
||||||
executeTaskMasterCommand,
|
executeTaskMasterCommand,
|
||||||
createContentResponse,
|
createContentResponse,
|
||||||
createErrorResponse,
|
createErrorResponse
|
||||||
} from "./utils.js";
|
} from './utils.js';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Register the setTaskStatus tool with the MCP server
|
* Register the setTaskStatus tool with the MCP server
|
||||||
@@ -16,21 +16,21 @@ import {
|
|||||||
*/
|
*/
|
||||||
export function registerSetTaskStatusTool(server) {
|
export function registerSetTaskStatusTool(server) {
|
||||||
server.addTool({
|
server.addTool({
|
||||||
name: "setTaskStatus",
|
name: 'setTaskStatus',
|
||||||
description: "Set the status of a task",
|
description: 'Set the status of a task',
|
||||||
parameters: z.object({
|
parameters: z.object({
|
||||||
id: z
|
id: z
|
||||||
.string()
|
.string()
|
||||||
.describe("Task ID (can be comma-separated for multiple tasks)"),
|
.describe('Task ID (can be comma-separated for multiple tasks)'),
|
||||||
status: z
|
status: z
|
||||||
.string()
|
.string()
|
||||||
.describe("New status (todo, in-progress, review, done)"),
|
.describe('New status (todo, in-progress, review, done)'),
|
||||||
file: z.string().optional().describe("Path to the tasks file"),
|
file: z.string().optional().describe('Path to the tasks file'),
|
||||||
projectRoot: z
|
projectRoot: z
|
||||||
.string()
|
.string()
|
||||||
.describe(
|
.describe(
|
||||||
"Root directory of the project (default: current working directory)"
|
'Root directory of the project (default: current working directory)'
|
||||||
),
|
)
|
||||||
}),
|
}),
|
||||||
execute: async (args, { log }) => {
|
execute: async (args, { log }) => {
|
||||||
try {
|
try {
|
||||||
@@ -42,7 +42,7 @@ export function registerSetTaskStatusTool(server) {
|
|||||||
const projectRoot = args.projectRoot;
|
const projectRoot = args.projectRoot;
|
||||||
|
|
||||||
const result = executeTaskMasterCommand(
|
const result = executeTaskMasterCommand(
|
||||||
"set-status",
|
'set-status',
|
||||||
log,
|
log,
|
||||||
cmdArgs,
|
cmdArgs,
|
||||||
projectRoot
|
projectRoot
|
||||||
@@ -59,6 +59,6 @@ export function registerSetTaskStatusTool(server) {
|
|||||||
`Error setting task status: ${error.message}`
|
`Error setting task status: ${error.message}`
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
},
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,12 +3,12 @@
|
|||||||
* Tool to show detailed information about a specific task
|
* Tool to show detailed information about a specific task
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import { z } from "zod";
|
import { z } from 'zod';
|
||||||
import {
|
import {
|
||||||
executeTaskMasterCommand,
|
executeTaskMasterCommand,
|
||||||
createErrorResponse,
|
createErrorResponse,
|
||||||
handleApiResult
|
handleApiResult
|
||||||
} from "./utils.js";
|
} from './utils.js';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Register the showTask tool with the MCP server
|
* Register the showTask tool with the MCP server
|
||||||
@@ -16,17 +16,17 @@ import {
|
|||||||
*/
|
*/
|
||||||
export function registerShowTaskTool(server) {
|
export function registerShowTaskTool(server) {
|
||||||
server.addTool({
|
server.addTool({
|
||||||
name: "showTask",
|
name: 'showTask',
|
||||||
description: "Show detailed information about a specific task",
|
description: 'Show detailed information about a specific task',
|
||||||
parameters: z.object({
|
parameters: z.object({
|
||||||
id: z.string().describe("Task ID to show"),
|
id: z.string().describe('Task ID to show'),
|
||||||
file: z.string().optional().describe("Path to the tasks file"),
|
file: z.string().optional().describe('Path to the tasks file'),
|
||||||
projectRoot: z
|
projectRoot: z
|
||||||
.string()
|
.string()
|
||||||
.optional()
|
.optional()
|
||||||
.describe(
|
.describe(
|
||||||
"Root directory of the project (default: current working directory)"
|
'Root directory of the project (default: current working directory)'
|
||||||
),
|
)
|
||||||
}),
|
}),
|
||||||
execute: async (args, { log }) => {
|
execute: async (args, { log }) => {
|
||||||
try {
|
try {
|
||||||
@@ -38,7 +38,7 @@ export function registerShowTaskTool(server) {
|
|||||||
|
|
||||||
// Execute the command - function now handles project root internally
|
// Execute the command - function now handles project root internally
|
||||||
const result = executeTaskMasterCommand(
|
const result = executeTaskMasterCommand(
|
||||||
"show",
|
'show',
|
||||||
log,
|
log,
|
||||||
cmdArgs,
|
cmdArgs,
|
||||||
args.projectRoot // Pass raw project root, function will normalize it
|
args.projectRoot // Pass raw project root, function will normalize it
|
||||||
@@ -50,7 +50,11 @@ export function registerShowTaskTool(server) {
|
|||||||
// Try to parse response as JSON
|
// Try to parse response as JSON
|
||||||
const data = JSON.parse(result.stdout);
|
const data = JSON.parse(result.stdout);
|
||||||
// Return equivalent of a successful API call with data
|
// Return equivalent of a successful API call with data
|
||||||
return handleApiResult({ success: true, data }, log, 'Error showing task');
|
return handleApiResult(
|
||||||
|
{ success: true, data },
|
||||||
|
log,
|
||||||
|
'Error showing task'
|
||||||
|
);
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
// If parsing fails, still return success but with raw string data
|
// If parsing fails, still return success but with raw string data
|
||||||
return handleApiResult(
|
return handleApiResult(
|
||||||
@@ -73,6 +77,6 @@ export function registerShowTaskTool(server) {
|
|||||||
log.error(`Error showing task: ${error.message}`);
|
log.error(`Error showing task: ${error.message}`);
|
||||||
return createErrorResponse(error.message);
|
return createErrorResponse(error.message);
|
||||||
}
|
}
|
||||||
},
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,8 +3,8 @@
|
|||||||
* Utility functions for Task Master CLI integration
|
* Utility functions for Task Master CLI integration
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import { spawnSync } from "child_process";
|
import { spawnSync } from 'child_process';
|
||||||
import path from "path";
|
import path from 'path';
|
||||||
import { contextManager } from '../core/context-manager.js'; // Import the singleton
|
import { contextManager } from '../core/context-manager.js'; // Import the singleton
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -34,7 +34,12 @@ export function getProjectRoot(projectRootRaw, log) {
|
|||||||
* @param {Function} processFunction - Optional function to process successful result data
|
* @param {Function} processFunction - Optional function to process successful result data
|
||||||
* @returns {Object} - Standardized MCP response object
|
* @returns {Object} - Standardized MCP response object
|
||||||
*/
|
*/
|
||||||
export function handleApiResult(result, log, errorPrefix = 'API error', processFunction = processMCPResponseData) {
|
export function handleApiResult(
|
||||||
|
result,
|
||||||
|
log,
|
||||||
|
errorPrefix = 'API error',
|
||||||
|
processFunction = processMCPResponseData
|
||||||
|
) {
|
||||||
if (!result.success) {
|
if (!result.success) {
|
||||||
const errorMsg = result.error?.message || `Unknown ${errorPrefix}`;
|
const errorMsg = result.error?.message || `Unknown ${errorPrefix}`;
|
||||||
// Include cache status in error logs
|
// Include cache status in error logs
|
||||||
@@ -43,7 +48,9 @@ export function handleApiResult(result, log, errorPrefix = 'API error', processF
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Process the result data if needed
|
// Process the result data if needed
|
||||||
const processedData = processFunction ? processFunction(result.data) : result.data;
|
const processedData = processFunction
|
||||||
|
? processFunction(result.data)
|
||||||
|
: result.data;
|
||||||
|
|
||||||
// Log success including cache status
|
// Log success including cache status
|
||||||
log.info(`Successfully completed operation. From cache: ${result.fromCache}`); // Add success log with cache status
|
log.info(`Successfully completed operation. From cache: ${result.fromCache}`); // Add success log with cache status
|
||||||
@@ -87,18 +94,18 @@ export function executeTaskMasterCommand(
|
|||||||
|
|
||||||
// Common options for spawn
|
// Common options for spawn
|
||||||
const spawnOptions = {
|
const spawnOptions = {
|
||||||
encoding: "utf8",
|
encoding: 'utf8',
|
||||||
cwd: cwd,
|
cwd: cwd
|
||||||
};
|
};
|
||||||
|
|
||||||
// Execute the command using the global task-master CLI or local script
|
// Execute the command using the global task-master CLI or local script
|
||||||
// Try the global CLI first
|
// Try the global CLI first
|
||||||
let result = spawnSync("task-master", fullArgs, spawnOptions);
|
let result = spawnSync('task-master', fullArgs, spawnOptions);
|
||||||
|
|
||||||
// If global CLI is not available, try fallback to the local script
|
// If global CLI is not available, try fallback to the local script
|
||||||
if (result.error && result.error.code === "ENOENT") {
|
if (result.error && result.error.code === 'ENOENT') {
|
||||||
log.info("Global task-master not found, falling back to local script");
|
log.info('Global task-master not found, falling back to local script');
|
||||||
result = spawnSync("node", ["scripts/dev.js", ...fullArgs], spawnOptions);
|
result = spawnSync('node', ['scripts/dev.js', ...fullArgs], spawnOptions);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (result.error) {
|
if (result.error) {
|
||||||
@@ -111,7 +118,7 @@ export function executeTaskMasterCommand(
|
|||||||
? result.stderr.trim()
|
? result.stderr.trim()
|
||||||
: result.stdout
|
: result.stdout
|
||||||
? result.stdout.trim()
|
? result.stdout.trim()
|
||||||
: "Unknown error";
|
: 'Unknown error';
|
||||||
throw new Error(
|
throw new Error(
|
||||||
`Command failed with exit code ${result.status}: ${errorOutput}`
|
`Command failed with exit code ${result.status}: ${errorOutput}`
|
||||||
);
|
);
|
||||||
@@ -120,13 +127,13 @@ export function executeTaskMasterCommand(
|
|||||||
return {
|
return {
|
||||||
success: true,
|
success: true,
|
||||||
stdout: result.stdout,
|
stdout: result.stdout,
|
||||||
stderr: result.stderr,
|
stderr: result.stderr
|
||||||
};
|
};
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
log.error(`Error executing task-master command: ${error.message}`);
|
log.error(`Error executing task-master command: ${error.message}`);
|
||||||
return {
|
return {
|
||||||
success: false,
|
success: false,
|
||||||
error: error.message,
|
error: error.message
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -168,9 +175,13 @@ export async function getCachedOrExecute({ cacheKey, actionFn, log }) {
|
|||||||
const { fromCache, ...resultToCache } = result;
|
const { fromCache, ...resultToCache } = result;
|
||||||
contextManager.setCachedData(cacheKey, resultToCache);
|
contextManager.setCachedData(cacheKey, resultToCache);
|
||||||
} else if (!result.success) {
|
} else if (!result.success) {
|
||||||
log.warn(`Action failed for cache key ${cacheKey}. Result not cached. Error: ${result.error?.message}`);
|
log.warn(
|
||||||
|
`Action failed for cache key ${cacheKey}. Result not cached. Error: ${result.error?.message}`
|
||||||
|
);
|
||||||
} else {
|
} else {
|
||||||
log.warn(`Action for cache key ${cacheKey} succeeded but returned no data. Result not cached.`);
|
log.warn(
|
||||||
|
`Action for cache key ${cacheKey} succeeded but returned no data. Result not cached.`
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Return the fresh result, indicating it wasn't from cache
|
// Return the fresh result, indicating it wasn't from cache
|
||||||
@@ -215,7 +226,9 @@ export async function executeMCPToolAction({
|
|||||||
const executionArgs = { ...args, projectRoot };
|
const executionArgs = { ...args, projectRoot };
|
||||||
|
|
||||||
let result;
|
let result;
|
||||||
const cacheKey = cacheKeyGenerator ? cacheKeyGenerator(executionArgs) : null;
|
const cacheKey = cacheKeyGenerator
|
||||||
|
? cacheKeyGenerator(executionArgs)
|
||||||
|
: null;
|
||||||
|
|
||||||
if (cacheKey) {
|
if (cacheKey) {
|
||||||
// Use caching utility
|
// Use caching utility
|
||||||
@@ -240,17 +253,25 @@ export async function executeMCPToolAction({
|
|||||||
|
|
||||||
// Handle error case
|
// Handle error case
|
||||||
if (!result.success) {
|
if (!result.success) {
|
||||||
const errorMsg = result.error?.message || `Unknown error during ${actionName.toLowerCase()}`;
|
const errorMsg =
|
||||||
|
result.error?.message ||
|
||||||
|
`Unknown error during ${actionName.toLowerCase()}`;
|
||||||
// Include fromCache in error logs too, might be useful
|
// Include fromCache in error logs too, might be useful
|
||||||
log.error(`Error during ${actionName.toLowerCase()}: ${errorMsg}. From cache: ${result.fromCache}`);
|
log.error(
|
||||||
|
`Error during ${actionName.toLowerCase()}: ${errorMsg}. From cache: ${result.fromCache}`
|
||||||
|
);
|
||||||
return createErrorResponse(errorMsg);
|
return createErrorResponse(errorMsg);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Log success
|
// Log success
|
||||||
log.info(`Successfully completed ${actionName.toLowerCase()}. From cache: ${result.fromCache}`);
|
log.info(
|
||||||
|
`Successfully completed ${actionName.toLowerCase()}. From cache: ${result.fromCache}`
|
||||||
|
);
|
||||||
|
|
||||||
// Process the result data if needed
|
// Process the result data if needed
|
||||||
const processedData = processResult ? processResult(result.data) : result.data;
|
const processedData = processResult
|
||||||
|
? processResult(result.data)
|
||||||
|
: result.data;
|
||||||
|
|
||||||
// Create a new object that includes both the processed data and the fromCache flag
|
// Create a new object that includes both the processed data and the fromCache flag
|
||||||
const responsePayload = {
|
const responsePayload = {
|
||||||
@@ -260,12 +281,15 @@ export async function executeMCPToolAction({
|
|||||||
|
|
||||||
// Pass this combined payload to createContentResponse
|
// Pass this combined payload to createContentResponse
|
||||||
return createContentResponse(responsePayload);
|
return createContentResponse(responsePayload);
|
||||||
|
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
// Handle unexpected errors during the execution wrapper itself
|
// Handle unexpected errors during the execution wrapper itself
|
||||||
log.error(`Unexpected error during ${actionName.toLowerCase()} execution wrapper: ${error.message}`);
|
log.error(
|
||||||
|
`Unexpected error during ${actionName.toLowerCase()} execution wrapper: ${error.message}`
|
||||||
|
);
|
||||||
console.error(error.stack); // Log stack for debugging wrapper errors
|
console.error(error.stack); // Log stack for debugging wrapper errors
|
||||||
return createErrorResponse(`Internal server error during ${actionName.toLowerCase()}: ${error.message}`);
|
return createErrorResponse(
|
||||||
|
`Internal server error during ${actionName.toLowerCase()}: ${error.message}`
|
||||||
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -276,7 +300,10 @@ export async function executeMCPToolAction({
|
|||||||
* @param {string[]} fieldsToRemove - An array of field names to remove.
|
* @param {string[]} fieldsToRemove - An array of field names to remove.
|
||||||
* @returns {Object|Array} - The processed data with specified fields removed.
|
* @returns {Object|Array} - The processed data with specified fields removed.
|
||||||
*/
|
*/
|
||||||
export function processMCPResponseData(taskOrData, fieldsToRemove = ['details', 'testStrategy']) {
|
export function processMCPResponseData(
|
||||||
|
taskOrData,
|
||||||
|
fieldsToRemove = ['details', 'testStrategy']
|
||||||
|
) {
|
||||||
if (!taskOrData) {
|
if (!taskOrData) {
|
||||||
return taskOrData;
|
return taskOrData;
|
||||||
}
|
}
|
||||||
@@ -290,7 +317,7 @@ export function processMCPResponseData(taskOrData, fieldsToRemove = ['details',
|
|||||||
const processedTask = { ...task };
|
const processedTask = { ...task };
|
||||||
|
|
||||||
// Remove specified fields from the task
|
// Remove specified fields from the task
|
||||||
fieldsToRemove.forEach(field => {
|
fieldsToRemove.forEach((field) => {
|
||||||
delete processedTask[field];
|
delete processedTask[field];
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -309,14 +336,23 @@ export function processMCPResponseData(taskOrData, fieldsToRemove = ['details',
|
|||||||
};
|
};
|
||||||
|
|
||||||
// Check if the input is a data structure containing a 'tasks' array (like from listTasks)
|
// Check if the input is a data structure containing a 'tasks' array (like from listTasks)
|
||||||
if (typeof taskOrData === 'object' && taskOrData !== null && Array.isArray(taskOrData.tasks)) {
|
if (
|
||||||
|
typeof taskOrData === 'object' &&
|
||||||
|
taskOrData !== null &&
|
||||||
|
Array.isArray(taskOrData.tasks)
|
||||||
|
) {
|
||||||
return {
|
return {
|
||||||
...taskOrData, // Keep other potential fields like 'stats', 'filter'
|
...taskOrData, // Keep other potential fields like 'stats', 'filter'
|
||||||
tasks: processArrayOfTasks(taskOrData.tasks),
|
tasks: processArrayOfTasks(taskOrData.tasks)
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
// Check if the input is likely a single task object (add more checks if needed)
|
// Check if the input is likely a single task object (add more checks if needed)
|
||||||
else if (typeof taskOrData === 'object' && taskOrData !== null && 'id' in taskOrData && 'title' in taskOrData) {
|
else if (
|
||||||
|
typeof taskOrData === 'object' &&
|
||||||
|
taskOrData !== null &&
|
||||||
|
'id' in taskOrData &&
|
||||||
|
'title' in taskOrData
|
||||||
|
) {
|
||||||
return processSingleTask(taskOrData);
|
return processSingleTask(taskOrData);
|
||||||
}
|
}
|
||||||
// Check if the input is an array of tasks directly (less common but possible)
|
// Check if the input is an array of tasks directly (less common but possible)
|
||||||
@@ -338,11 +374,12 @@ export function createContentResponse(content) {
|
|||||||
return {
|
return {
|
||||||
content: [
|
content: [
|
||||||
{
|
{
|
||||||
type: "text",
|
type: 'text',
|
||||||
text: typeof content === 'object' ?
|
text:
|
||||||
// Format JSON nicely with indentation
|
typeof content === 'object'
|
||||||
JSON.stringify(content, null, 2) :
|
? // Format JSON nicely with indentation
|
||||||
// Keep other content types as-is
|
JSON.stringify(content, null, 2)
|
||||||
|
: // Keep other content types as-is
|
||||||
String(content)
|
String(content)
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -358,7 +395,7 @@ export function createErrorResponse(errorMessage) {
|
|||||||
return {
|
return {
|
||||||
content: [
|
content: [
|
||||||
{
|
{
|
||||||
type: "text",
|
type: 'text',
|
||||||
text: `Error: ${errorMessage}`
|
text: `Error: ${errorMessage}`
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|||||||
49
package-lock.json
generated
49
package-lock.json
generated
@@ -1,13 +1,13 @@
|
|||||||
{
|
{
|
||||||
"name": "task-master-ai",
|
"name": "task-master-ai",
|
||||||
"version": "0.9.30",
|
"version": "0.10.1",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "task-master-ai",
|
"name": "task-master-ai",
|
||||||
"version": "0.9.30",
|
"version": "0.10.1",
|
||||||
"license": "(BSL-1.1 AND Apache-2.0)",
|
"license": "MIT WITH Commons-Clause",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@anthropic-ai/sdk": "^0.39.0",
|
"@anthropic-ai/sdk": "^0.39.0",
|
||||||
"boxen": "^8.0.1",
|
"boxen": "^8.0.1",
|
||||||
@@ -39,6 +39,7 @@
|
|||||||
"jest": "^29.7.0",
|
"jest": "^29.7.0",
|
||||||
"jest-environment-node": "^29.7.0",
|
"jest-environment-node": "^29.7.0",
|
||||||
"mock-fs": "^5.5.0",
|
"mock-fs": "^5.5.0",
|
||||||
|
"prettier": "3.5.3",
|
||||||
"supertest": "^7.1.0"
|
"supertest": "^7.1.0"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
@@ -605,6 +606,22 @@
|
|||||||
"semver": "^7.5.3"
|
"semver": "^7.5.3"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/@changesets/apply-release-plan/node_modules/prettier": {
|
||||||
|
"version": "2.8.8",
|
||||||
|
"resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.8.tgz",
|
||||||
|
"integrity": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==",
|
||||||
|
"dev": true,
|
||||||
|
"license": "MIT",
|
||||||
|
"bin": {
|
||||||
|
"prettier": "bin-prettier.js"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": ">=10.13.0"
|
||||||
|
},
|
||||||
|
"funding": {
|
||||||
|
"url": "https://github.com/prettier/prettier?sponsor=1"
|
||||||
|
}
|
||||||
|
},
|
||||||
"node_modules/@changesets/apply-release-plan/node_modules/semver": {
|
"node_modules/@changesets/apply-release-plan/node_modules/semver": {
|
||||||
"version": "7.7.1",
|
"version": "7.7.1",
|
||||||
"resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz",
|
"resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz",
|
||||||
@@ -927,6 +944,22 @@
|
|||||||
"prettier": "^2.7.1"
|
"prettier": "^2.7.1"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/@changesets/write/node_modules/prettier": {
|
||||||
|
"version": "2.8.8",
|
||||||
|
"resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.8.tgz",
|
||||||
|
"integrity": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==",
|
||||||
|
"dev": true,
|
||||||
|
"license": "MIT",
|
||||||
|
"bin": {
|
||||||
|
"prettier": "bin-prettier.js"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": ">=10.13.0"
|
||||||
|
},
|
||||||
|
"funding": {
|
||||||
|
"url": "https://github.com/prettier/prettier?sponsor=1"
|
||||||
|
}
|
||||||
|
},
|
||||||
"node_modules/@colors/colors": {
|
"node_modules/@colors/colors": {
|
||||||
"version": "1.5.0",
|
"version": "1.5.0",
|
||||||
"resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz",
|
"resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz",
|
||||||
@@ -6221,16 +6254,16 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/prettier": {
|
"node_modules/prettier": {
|
||||||
"version": "2.8.8",
|
"version": "3.5.3",
|
||||||
"resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.8.tgz",
|
"resolved": "https://registry.npmjs.org/prettier/-/prettier-3.5.3.tgz",
|
||||||
"integrity": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==",
|
"integrity": "sha512-QQtaxnoDJeAkDvDKWCLiwIXkTgRhwYDEQCghU9Z6q03iyek/rxRh/2lC3HB7P8sWT2xC/y5JDctPLBIGzHKbhw==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"bin": {
|
"bin": {
|
||||||
"prettier": "bin-prettier.js"
|
"prettier": "bin/prettier.cjs"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=10.13.0"
|
"node": ">=14"
|
||||||
},
|
},
|
||||||
"funding": {
|
"funding": {
|
||||||
"url": "https://github.com/prettier/prettier?sponsor=1"
|
"url": "https://github.com/prettier/prettier?sponsor=1"
|
||||||
|
|||||||
@@ -19,7 +19,9 @@
|
|||||||
"prepare": "chmod +x bin/task-master.js bin/task-master-init.js",
|
"prepare": "chmod +x bin/task-master.js bin/task-master-init.js",
|
||||||
"changeset": "changeset",
|
"changeset": "changeset",
|
||||||
"release": "changeset publish",
|
"release": "changeset publish",
|
||||||
"inspector": "CLIENT_PORT=8888 SERVER_PORT=9000 npx @modelcontextprotocol/inspector node mcp-server/server.js"
|
"inspector": "CLIENT_PORT=8888 SERVER_PORT=9000 npx @modelcontextprotocol/inspector node mcp-server/server.js",
|
||||||
|
"format-check": "prettier --check .",
|
||||||
|
"format": "prettier --write ."
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"claude",
|
"claude",
|
||||||
@@ -87,6 +89,7 @@
|
|||||||
"jest": "^29.7.0",
|
"jest": "^29.7.0",
|
||||||
"jest-environment-node": "^29.7.0",
|
"jest-environment-node": "^29.7.0",
|
||||||
"mock-fs": "^5.5.0",
|
"mock-fs": "^5.5.0",
|
||||||
|
"prettier": "3.5.3",
|
||||||
"supertest": "^7.1.0"
|
"supertest": "^7.1.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -21,9 +21,11 @@ In an AI-driven development process—particularly with tools like [Cursor](http
|
|||||||
The script can be configured through environment variables in a `.env` file at the root of the project:
|
The script can be configured through environment variables in a `.env` file at the root of the project:
|
||||||
|
|
||||||
### Required Configuration
|
### Required Configuration
|
||||||
|
|
||||||
- `ANTHROPIC_API_KEY`: Your Anthropic API key for Claude
|
- `ANTHROPIC_API_KEY`: Your Anthropic API key for Claude
|
||||||
|
|
||||||
### Optional Configuration
|
### Optional Configuration
|
||||||
|
|
||||||
- `MODEL`: Specify which Claude model to use (default: "claude-3-7-sonnet-20250219")
|
- `MODEL`: Specify which Claude model to use (default: "claude-3-7-sonnet-20250219")
|
||||||
- `MAX_TOKENS`: Maximum tokens for model responses (default: 4000)
|
- `MAX_TOKENS`: Maximum tokens for model responses (default: 4000)
|
||||||
- `TEMPERATURE`: Temperature for model responses (default: 0.7)
|
- `TEMPERATURE`: Temperature for model responses (default: 0.7)
|
||||||
@@ -39,6 +41,7 @@ The script can be configured through environment variables in a `.env` file at t
|
|||||||
## How It Works
|
## How It Works
|
||||||
|
|
||||||
1. **`tasks.json`**:
|
1. **`tasks.json`**:
|
||||||
|
|
||||||
- A JSON file at the project root containing an array of tasks (each with `id`, `title`, `description`, `status`, etc.).
|
- A JSON file at the project root containing an array of tasks (each with `id`, `title`, `description`, `status`, etc.).
|
||||||
- The `meta` field can store additional info like the project's name, version, or reference to the PRD.
|
- The `meta` field can store additional info like the project's name, version, or reference to the PRD.
|
||||||
- Tasks can have `subtasks` for more detailed implementation steps.
|
- Tasks can have `subtasks` for more detailed implementation steps.
|
||||||
@@ -102,6 +105,7 @@ node scripts/dev.js update --file=custom-tasks.json --from=5 --prompt="Change da
|
|||||||
```
|
```
|
||||||
|
|
||||||
Notes:
|
Notes:
|
||||||
|
|
||||||
- The `--prompt` parameter is required and should explain the changes or new context
|
- The `--prompt` parameter is required and should explain the changes or new context
|
||||||
- Only tasks that aren't marked as 'done' will be updated
|
- Only tasks that aren't marked as 'done' will be updated
|
||||||
- Tasks with ID >= the specified --from value will be updated
|
- Tasks with ID >= the specified --from value will be updated
|
||||||
@@ -120,6 +124,7 @@ node scripts/dev.js update-task --id=4 --prompt="Use JWT for authentication" --r
|
|||||||
```
|
```
|
||||||
|
|
||||||
This command:
|
This command:
|
||||||
|
|
||||||
- Updates only the specified task rather than a range of tasks
|
- Updates only the specified task rather than a range of tasks
|
||||||
- Provides detailed validation with helpful error messages
|
- Provides detailed validation with helpful error messages
|
||||||
- Checks for required API keys when using research mode
|
- Checks for required API keys when using research mode
|
||||||
@@ -146,6 +151,7 @@ node scripts/dev.js set-status --id=1,2,3 --status=done
|
|||||||
```
|
```
|
||||||
|
|
||||||
Notes:
|
Notes:
|
||||||
|
|
||||||
- When marking a parent task as "done", all of its subtasks will automatically be marked as "done" as well
|
- When marking a parent task as "done", all of its subtasks will automatically be marked as "done" as well
|
||||||
- Common status values are 'done', 'pending', and 'deferred', but any string is accepted
|
- Common status values are 'done', 'pending', and 'deferred', but any string is accepted
|
||||||
- You can specify multiple task IDs by separating them with commas
|
- You can specify multiple task IDs by separating them with commas
|
||||||
@@ -195,6 +201,7 @@ node scripts/dev.js clear-subtasks --all
|
|||||||
```
|
```
|
||||||
|
|
||||||
Notes:
|
Notes:
|
||||||
|
|
||||||
- After clearing subtasks, task files are automatically regenerated
|
- After clearing subtasks, task files are automatically regenerated
|
||||||
- This is useful when you want to regenerate subtasks with a different approach
|
- This is useful when you want to regenerate subtasks with a different approach
|
||||||
- Can be combined with the `expand` command to immediately generate new subtasks
|
- Can be combined with the `expand` command to immediately generate new subtasks
|
||||||
@@ -210,6 +217,7 @@ The script integrates with two AI services:
|
|||||||
The Perplexity integration uses the OpenAI client to connect to Perplexity's API, which provides enhanced research capabilities for generating more informed subtasks. If the Perplexity API is unavailable or encounters an error, the script will automatically fall back to using Anthropic's Claude.
|
The Perplexity integration uses the OpenAI client to connect to Perplexity's API, which provides enhanced research capabilities for generating more informed subtasks. If the Perplexity API is unavailable or encounters an error, the script will automatically fall back to using Anthropic's Claude.
|
||||||
|
|
||||||
To use the Perplexity integration:
|
To use the Perplexity integration:
|
||||||
|
|
||||||
1. Obtain a Perplexity API key
|
1. Obtain a Perplexity API key
|
||||||
2. Add `PERPLEXITY_API_KEY` to your `.env` file
|
2. Add `PERPLEXITY_API_KEY` to your `.env` file
|
||||||
3. Optionally specify `PERPLEXITY_MODEL` in your `.env` file (default: "sonar-medium-online")
|
3. Optionally specify `PERPLEXITY_MODEL` in your `.env` file (default: "sonar-medium-online")
|
||||||
@@ -218,6 +226,7 @@ To use the Perplexity integration:
|
|||||||
## Logging
|
## Logging
|
||||||
|
|
||||||
The script supports different logging levels controlled by the `LOG_LEVEL` environment variable:
|
The script supports different logging levels controlled by the `LOG_LEVEL` environment variable:
|
||||||
|
|
||||||
- `debug`: Detailed information, typically useful for troubleshooting
|
- `debug`: Detailed information, typically useful for troubleshooting
|
||||||
- `info`: Confirmation that things are working as expected (default)
|
- `info`: Confirmation that things are working as expected (default)
|
||||||
- `warn`: Warning messages that don't prevent execution
|
- `warn`: Warning messages that don't prevent execution
|
||||||
@@ -240,17 +249,20 @@ node scripts/dev.js remove-dependency --id=<id> --depends-on=<id>
|
|||||||
These commands:
|
These commands:
|
||||||
|
|
||||||
1. **Allow precise dependency management**:
|
1. **Allow precise dependency management**:
|
||||||
|
|
||||||
- Add dependencies between tasks with automatic validation
|
- Add dependencies between tasks with automatic validation
|
||||||
- Remove dependencies when they're no longer needed
|
- Remove dependencies when they're no longer needed
|
||||||
- Update task files automatically after changes
|
- Update task files automatically after changes
|
||||||
|
|
||||||
2. **Include validation checks**:
|
2. **Include validation checks**:
|
||||||
|
|
||||||
- Prevent circular dependencies (a task depending on itself)
|
- Prevent circular dependencies (a task depending on itself)
|
||||||
- Prevent duplicate dependencies
|
- Prevent duplicate dependencies
|
||||||
- Verify that both tasks exist before adding/removing dependencies
|
- Verify that both tasks exist before adding/removing dependencies
|
||||||
- Check if dependencies exist before attempting to remove them
|
- Check if dependencies exist before attempting to remove them
|
||||||
|
|
||||||
3. **Provide clear feedback**:
|
3. **Provide clear feedback**:
|
||||||
|
|
||||||
- Success messages confirm when dependencies are added/removed
|
- Success messages confirm when dependencies are added/removed
|
||||||
- Error messages explain why operations failed (if applicable)
|
- Error messages explain why operations failed (if applicable)
|
||||||
|
|
||||||
@@ -275,6 +287,7 @@ node scripts/dev.js validate-dependencies --file=custom-tasks.json
|
|||||||
```
|
```
|
||||||
|
|
||||||
This command:
|
This command:
|
||||||
|
|
||||||
- Scans all tasks and subtasks for non-existent dependencies
|
- Scans all tasks and subtasks for non-existent dependencies
|
||||||
- Identifies potential self-dependencies (tasks referencing themselves)
|
- Identifies potential self-dependencies (tasks referencing themselves)
|
||||||
- Reports all found issues without modifying files
|
- Reports all found issues without modifying files
|
||||||
@@ -296,6 +309,7 @@ node scripts/dev.js fix-dependencies --file=custom-tasks.json
|
|||||||
```
|
```
|
||||||
|
|
||||||
This command:
|
This command:
|
||||||
|
|
||||||
1. **Validates all dependencies** across tasks and subtasks
|
1. **Validates all dependencies** across tasks and subtasks
|
||||||
2. **Automatically removes**:
|
2. **Automatically removes**:
|
||||||
- References to non-existent tasks and subtasks
|
- References to non-existent tasks and subtasks
|
||||||
@@ -333,6 +347,7 @@ node scripts/dev.js analyze-complexity --research
|
|||||||
```
|
```
|
||||||
|
|
||||||
Notes:
|
Notes:
|
||||||
|
|
||||||
- The command uses Claude to analyze each task's complexity (or Perplexity with --research flag)
|
- The command uses Claude to analyze each task's complexity (or Perplexity with --research flag)
|
||||||
- Tasks are scored on a scale of 1-10
|
- Tasks are scored on a scale of 1-10
|
||||||
- Each task receives a recommended number of subtasks based on DEFAULT_SUBTASKS configuration
|
- Each task receives a recommended number of subtasks based on DEFAULT_SUBTASKS configuration
|
||||||
@@ -357,12 +372,14 @@ node scripts/dev.js expand --id=8 --num=5 --prompt="Custom prompt"
|
|||||||
```
|
```
|
||||||
|
|
||||||
When a complexity report exists:
|
When a complexity report exists:
|
||||||
|
|
||||||
- The `expand` command will use the recommended subtask count from the report (unless overridden)
|
- The `expand` command will use the recommended subtask count from the report (unless overridden)
|
||||||
- It will use the tailored expansion prompt from the report (unless a custom prompt is provided)
|
- It will use the tailored expansion prompt from the report (unless a custom prompt is provided)
|
||||||
- When using `--all`, tasks are sorted by complexity score (highest first)
|
- When using `--all`, tasks are sorted by complexity score (highest first)
|
||||||
- The `--research` flag is preserved from the complexity analysis to expansion
|
- The `--research` flag is preserved from the complexity analysis to expansion
|
||||||
|
|
||||||
The output report structure is:
|
The output report structure is:
|
||||||
|
|
||||||
```json
|
```json
|
||||||
{
|
{
|
||||||
"meta": {
|
"meta": {
|
||||||
@@ -381,7 +398,7 @@ The output report structure is:
|
|||||||
"expansionPrompt": "Create subtasks that handle detecting...",
|
"expansionPrompt": "Create subtasks that handle detecting...",
|
||||||
"reasoning": "This task requires sophisticated logic...",
|
"reasoning": "This task requires sophisticated logic...",
|
||||||
"expansionCommand": "node scripts/dev.js expand --id=8 --num=6 --prompt=\"Create subtasks...\" --research"
|
"expansionCommand": "node scripts/dev.js expand --id=8 --num=6 --prompt=\"Create subtasks...\" --research"
|
||||||
},
|
}
|
||||||
// More tasks sorted by complexity score (highest first)
|
// More tasks sorted by complexity score (highest first)
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -457,16 +474,19 @@ This command is particularly useful when you need to examine a specific task in
|
|||||||
The script now includes improved error handling throughout all commands:
|
The script now includes improved error handling throughout all commands:
|
||||||
|
|
||||||
1. **Detailed Validation**:
|
1. **Detailed Validation**:
|
||||||
|
|
||||||
- Required parameters (like task IDs and prompts) are validated early
|
- Required parameters (like task IDs and prompts) are validated early
|
||||||
- File existence is checked with customized errors for common scenarios
|
- File existence is checked with customized errors for common scenarios
|
||||||
- Parameter type conversion is handled with clear error messages
|
- Parameter type conversion is handled with clear error messages
|
||||||
|
|
||||||
2. **Contextual Error Messages**:
|
2. **Contextual Error Messages**:
|
||||||
|
|
||||||
- Task not found errors include suggestions to run the list command
|
- Task not found errors include suggestions to run the list command
|
||||||
- API key errors include reminders to check environment variables
|
- API key errors include reminders to check environment variables
|
||||||
- Invalid ID format errors show the expected format
|
- Invalid ID format errors show the expected format
|
||||||
|
|
||||||
3. **Command-Specific Help Displays**:
|
3. **Command-Specific Help Displays**:
|
||||||
|
|
||||||
- When validation fails, detailed help for the specific command is shown
|
- When validation fails, detailed help for the specific command is shown
|
||||||
- Help displays include usage examples and parameter descriptions
|
- Help displays include usage examples and parameter descriptions
|
||||||
- Formatted in clear, color-coded boxes with examples
|
- Formatted in clear, color-coded boxes with examples
|
||||||
@@ -481,11 +501,13 @@ The script now includes improved error handling throughout all commands:
|
|||||||
The script now automatically checks for updates without slowing down execution:
|
The script now automatically checks for updates without slowing down execution:
|
||||||
|
|
||||||
1. **Background Version Checking**:
|
1. **Background Version Checking**:
|
||||||
|
|
||||||
- Non-blocking version checks run in the background while commands execute
|
- Non-blocking version checks run in the background while commands execute
|
||||||
- Actual command execution isn't delayed by version checking
|
- Actual command execution isn't delayed by version checking
|
||||||
- Update notifications appear after command completion
|
- Update notifications appear after command completion
|
||||||
|
|
||||||
2. **Update Notifications**:
|
2. **Update Notifications**:
|
||||||
|
|
||||||
- When a newer version is available, a notification is displayed
|
- When a newer version is available, a notification is displayed
|
||||||
- Notifications include current version, latest version, and update command
|
- Notifications include current version, latest version, and update command
|
||||||
- Formatted in an attention-grabbing box with clear instructions
|
- Formatted in an attention-grabbing box with clear instructions
|
||||||
@@ -516,6 +538,7 @@ node scripts/dev.js add-subtask --parent=5 --title="Login API route" --skip-gene
|
|||||||
```
|
```
|
||||||
|
|
||||||
Key features:
|
Key features:
|
||||||
|
|
||||||
- Create new subtasks with detailed properties or convert existing tasks
|
- Create new subtasks with detailed properties or convert existing tasks
|
||||||
- Define dependencies between subtasks
|
- Define dependencies between subtasks
|
||||||
- Set custom status for new subtasks
|
- Set custom status for new subtasks
|
||||||
@@ -538,6 +561,7 @@ node scripts/dev.js remove-subtask --id=5.2 --skip-generate
|
|||||||
```
|
```
|
||||||
|
|
||||||
Key features:
|
Key features:
|
||||||
|
|
||||||
- Remove subtasks individually or in batches
|
- Remove subtasks individually or in batches
|
||||||
- Optionally convert subtasks to standalone tasks
|
- Optionally convert subtasks to standalone tasks
|
||||||
- Control whether task files are regenerated
|
- Control whether task files are regenerated
|
||||||
|
|||||||
413
scripts/init.js
413
scripts/init.js
@@ -47,7 +47,10 @@ program
|
|||||||
.option('-n, --name <name>', 'Project name')
|
.option('-n, --name <name>', 'Project name')
|
||||||
.option('-my_name <name>', 'Project name (alias for --name)')
|
.option('-my_name <name>', 'Project name (alias for --name)')
|
||||||
.option('-d, --description <description>', 'Project description')
|
.option('-d, --description <description>', 'Project description')
|
||||||
.option('-my_description <description>', 'Project description (alias for --description)')
|
.option(
|
||||||
|
'-my_description <description>',
|
||||||
|
'Project description (alias for --description)'
|
||||||
|
)
|
||||||
.option('-v, --version <version>', 'Project version')
|
.option('-v, --version <version>', 'Project version')
|
||||||
.option('-my_version <version>', 'Project version (alias for --version)')
|
.option('-my_version <version>', 'Project version (alias for --version)')
|
||||||
.option('--my_name <name>', 'Project name (alias for --name)')
|
.option('--my_name <name>', 'Project name (alias for --name)')
|
||||||
@@ -80,7 +83,9 @@ const LOG_LEVELS = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
// Get log level from environment or default to info
|
// Get log level from environment or default to info
|
||||||
const LOG_LEVEL = process.env.LOG_LEVEL ? LOG_LEVELS[process.env.LOG_LEVEL.toLowerCase()] : LOG_LEVELS.info;
|
const LOG_LEVEL = process.env.LOG_LEVEL
|
||||||
|
? LOG_LEVELS[process.env.LOG_LEVEL.toLowerCase()]
|
||||||
|
: LOG_LEVELS.info;
|
||||||
|
|
||||||
// Create a color gradient for the banner
|
// Create a color gradient for the banner
|
||||||
const coolGradient = gradient(['#00b4d8', '#0077b6', '#03045e']);
|
const coolGradient = gradient(['#00b4d8', '#0077b6', '#03045e']);
|
||||||
@@ -98,14 +103,18 @@ function displayBanner() {
|
|||||||
console.log(coolGradient(bannerText));
|
console.log(coolGradient(bannerText));
|
||||||
|
|
||||||
// Add creator credit line below the banner
|
// Add creator credit line below the banner
|
||||||
console.log(chalk.dim('by ') + chalk.cyan.underline('https://x.com/eyaltoledano'));
|
console.log(
|
||||||
|
chalk.dim('by ') + chalk.cyan.underline('https://x.com/eyaltoledano')
|
||||||
|
);
|
||||||
|
|
||||||
console.log(boxen(chalk.white(`${chalk.bold('Initializing')} your new project`), {
|
console.log(
|
||||||
|
boxen(chalk.white(`${chalk.bold('Initializing')} your new project`), {
|
||||||
padding: 1,
|
padding: 1,
|
||||||
margin: { top: 0, bottom: 1 },
|
margin: { top: 0, bottom: 1 },
|
||||||
borderStyle: 'round',
|
borderStyle: 'round',
|
||||||
borderColor: 'cyan'
|
borderColor: 'cyan'
|
||||||
}));
|
})
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Logging function with icons and colors
|
// Logging function with icons and colors
|
||||||
@@ -167,13 +176,16 @@ function addShellAliases() {
|
|||||||
try {
|
try {
|
||||||
// Check if file exists
|
// Check if file exists
|
||||||
if (!fs.existsSync(shellConfigFile)) {
|
if (!fs.existsSync(shellConfigFile)) {
|
||||||
log('warn', `Shell config file ${shellConfigFile} not found. Aliases not added.`);
|
log(
|
||||||
|
'warn',
|
||||||
|
`Shell config file ${shellConfigFile} not found. Aliases not added.`
|
||||||
|
);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check if aliases already exist
|
// Check if aliases already exist
|
||||||
const configContent = fs.readFileSync(shellConfigFile, 'utf8');
|
const configContent = fs.readFileSync(shellConfigFile, 'utf8');
|
||||||
if (configContent.includes('alias tm=\'task-master\'')) {
|
if (configContent.includes("alias tm='task-master'")) {
|
||||||
log('info', 'Task Master aliases already exist in shell config.');
|
log('info', 'Task Master aliases already exist in shell config.');
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
@@ -187,7 +199,11 @@ alias taskmaster='task-master'
|
|||||||
|
|
||||||
fs.appendFileSync(shellConfigFile, aliasBlock);
|
fs.appendFileSync(shellConfigFile, aliasBlock);
|
||||||
log('success', `Added Task Master aliases to ${shellConfigFile}`);
|
log('success', `Added Task Master aliases to ${shellConfigFile}`);
|
||||||
log('info', 'To use the aliases in your current terminal, run: source ' + shellConfigFile);
|
log(
|
||||||
|
'info',
|
||||||
|
'To use the aliases in your current terminal, run: source ' +
|
||||||
|
shellConfigFile
|
||||||
|
);
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
@@ -202,7 +218,7 @@ function copyTemplateFile(templateName, targetPath, replacements = {}) {
|
|||||||
let sourcePath;
|
let sourcePath;
|
||||||
|
|
||||||
// Map template names to their actual source paths
|
// Map template names to their actual source paths
|
||||||
switch(templateName) {
|
switch (templateName) {
|
||||||
case 'dev.js':
|
case 'dev.js':
|
||||||
sourcePath = path.join(__dirname, 'dev.js');
|
sourcePath = path.join(__dirname, 'dev.js');
|
||||||
break;
|
break;
|
||||||
@@ -210,13 +226,31 @@ function copyTemplateFile(templateName, targetPath, replacements = {}) {
|
|||||||
sourcePath = path.join(__dirname, '..', 'assets', 'scripts_README.md');
|
sourcePath = path.join(__dirname, '..', 'assets', 'scripts_README.md');
|
||||||
break;
|
break;
|
||||||
case 'dev_workflow.mdc':
|
case 'dev_workflow.mdc':
|
||||||
sourcePath = path.join(__dirname, '..', '.cursor', 'rules', 'dev_workflow.mdc');
|
sourcePath = path.join(
|
||||||
|
__dirname,
|
||||||
|
'..',
|
||||||
|
'.cursor',
|
||||||
|
'rules',
|
||||||
|
'dev_workflow.mdc'
|
||||||
|
);
|
||||||
break;
|
break;
|
||||||
case 'cursor_rules.mdc':
|
case 'cursor_rules.mdc':
|
||||||
sourcePath = path.join(__dirname, '..', '.cursor', 'rules', 'cursor_rules.mdc');
|
sourcePath = path.join(
|
||||||
|
__dirname,
|
||||||
|
'..',
|
||||||
|
'.cursor',
|
||||||
|
'rules',
|
||||||
|
'cursor_rules.mdc'
|
||||||
|
);
|
||||||
break;
|
break;
|
||||||
case 'self_improve.mdc':
|
case 'self_improve.mdc':
|
||||||
sourcePath = path.join(__dirname, '..', '.cursor', 'rules', 'self_improve.mdc');
|
sourcePath = path.join(
|
||||||
|
__dirname,
|
||||||
|
'..',
|
||||||
|
'.cursor',
|
||||||
|
'rules',
|
||||||
|
'self_improve.mdc'
|
||||||
|
);
|
||||||
break;
|
break;
|
||||||
case 'README-task-master.md':
|
case 'README-task-master.md':
|
||||||
sourcePath = path.join(__dirname, '..', 'README-task-master.md');
|
sourcePath = path.join(__dirname, '..', 'README-task-master.md');
|
||||||
@@ -255,12 +289,17 @@ function copyTemplateFile(templateName, targetPath, replacements = {}) {
|
|||||||
if (filename === '.gitignore') {
|
if (filename === '.gitignore') {
|
||||||
log('info', `${targetPath} already exists, merging content...`);
|
log('info', `${targetPath} already exists, merging content...`);
|
||||||
const existingContent = fs.readFileSync(targetPath, 'utf8');
|
const existingContent = fs.readFileSync(targetPath, 'utf8');
|
||||||
const existingLines = new Set(existingContent.split('\n').map(line => line.trim()));
|
const existingLines = new Set(
|
||||||
const newLines = content.split('\n').filter(line => !existingLines.has(line.trim()));
|
existingContent.split('\n').map((line) => line.trim())
|
||||||
|
);
|
||||||
|
const newLines = content
|
||||||
|
.split('\n')
|
||||||
|
.filter((line) => !existingLines.has(line.trim()));
|
||||||
|
|
||||||
if (newLines.length > 0) {
|
if (newLines.length > 0) {
|
||||||
// Add a comment to separate the original content from our additions
|
// Add a comment to separate the original content from our additions
|
||||||
const updatedContent = existingContent.trim() +
|
const updatedContent =
|
||||||
|
existingContent.trim() +
|
||||||
'\n\n# Added by Claude Task Master\n' +
|
'\n\n# Added by Claude Task Master\n' +
|
||||||
newLines.join('\n');
|
newLines.join('\n');
|
||||||
fs.writeFileSync(targetPath, updatedContent);
|
fs.writeFileSync(targetPath, updatedContent);
|
||||||
@@ -273,11 +312,15 @@ function copyTemplateFile(templateName, targetPath, replacements = {}) {
|
|||||||
|
|
||||||
// Handle .windsurfrules - append the entire content
|
// Handle .windsurfrules - append the entire content
|
||||||
if (filename === '.windsurfrules') {
|
if (filename === '.windsurfrules') {
|
||||||
log('info', `${targetPath} already exists, appending content instead of overwriting...`);
|
log(
|
||||||
|
'info',
|
||||||
|
`${targetPath} already exists, appending content instead of overwriting...`
|
||||||
|
);
|
||||||
const existingContent = fs.readFileSync(targetPath, 'utf8');
|
const existingContent = fs.readFileSync(targetPath, 'utf8');
|
||||||
|
|
||||||
// Add a separator comment before appending our content
|
// Add a separator comment before appending our content
|
||||||
const updatedContent = existingContent.trim() +
|
const updatedContent =
|
||||||
|
existingContent.trim() +
|
||||||
'\n\n# Added by Task Master - Development Workflow Rules\n\n' +
|
'\n\n# Added by Task Master - Development Workflow Rules\n\n' +
|
||||||
content;
|
content;
|
||||||
fs.writeFileSync(targetPath, updatedContent);
|
fs.writeFileSync(targetPath, updatedContent);
|
||||||
@@ -289,7 +332,9 @@ function copyTemplateFile(templateName, targetPath, replacements = {}) {
|
|||||||
if (filename === 'package.json') {
|
if (filename === 'package.json') {
|
||||||
log('info', `${targetPath} already exists, merging dependencies...`);
|
log('info', `${targetPath} already exists, merging dependencies...`);
|
||||||
try {
|
try {
|
||||||
const existingPackageJson = JSON.parse(fs.readFileSync(targetPath, 'utf8'));
|
const existingPackageJson = JSON.parse(
|
||||||
|
fs.readFileSync(targetPath, 'utf8')
|
||||||
|
);
|
||||||
const newPackageJson = JSON.parse(content);
|
const newPackageJson = JSON.parse(content);
|
||||||
|
|
||||||
// Merge dependencies, preferring existing versions in case of conflicts
|
// Merge dependencies, preferring existing versions in case of conflicts
|
||||||
@@ -302,8 +347,9 @@ function copyTemplateFile(templateName, targetPath, replacements = {}) {
|
|||||||
existingPackageJson.scripts = {
|
existingPackageJson.scripts = {
|
||||||
...existingPackageJson.scripts,
|
...existingPackageJson.scripts,
|
||||||
...Object.fromEntries(
|
...Object.fromEntries(
|
||||||
Object.entries(newPackageJson.scripts)
|
Object.entries(newPackageJson.scripts).filter(
|
||||||
.filter(([key]) => !existingPackageJson.scripts[key])
|
([key]) => !existingPackageJson.scripts[key]
|
||||||
|
)
|
||||||
)
|
)
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -316,7 +362,10 @@ function copyTemplateFile(templateName, targetPath, replacements = {}) {
|
|||||||
targetPath,
|
targetPath,
|
||||||
JSON.stringify(existingPackageJson, null, 2)
|
JSON.stringify(existingPackageJson, null, 2)
|
||||||
);
|
);
|
||||||
log('success', `Updated ${targetPath} with required dependencies and scripts`);
|
log(
|
||||||
|
'success',
|
||||||
|
`Updated ${targetPath} with required dependencies and scripts`
|
||||||
|
);
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
log('error', `Failed to merge package.json: ${error.message}`);
|
log('error', `Failed to merge package.json: ${error.message}`);
|
||||||
// Fallback to writing a backup of the existing file and creating a new one
|
// Fallback to writing a backup of the existing file and creating a new one
|
||||||
@@ -324,7 +373,10 @@ function copyTemplateFile(templateName, targetPath, replacements = {}) {
|
|||||||
fs.copyFileSync(targetPath, backupPath);
|
fs.copyFileSync(targetPath, backupPath);
|
||||||
log('info', `Created backup of existing package.json at ${backupPath}`);
|
log('info', `Created backup of existing package.json at ${backupPath}`);
|
||||||
fs.writeFileSync(targetPath, content);
|
fs.writeFileSync(targetPath, content);
|
||||||
log('warn', `Replaced ${targetPath} with new content (due to JSON parsing error)`);
|
log(
|
||||||
|
'warn',
|
||||||
|
`Replaced ${targetPath} with new content (due to JSON parsing error)`
|
||||||
|
);
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -333,14 +385,23 @@ function copyTemplateFile(templateName, targetPath, replacements = {}) {
|
|||||||
if (filename === 'README.md') {
|
if (filename === 'README.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(path.dirname(targetPath), 'README-task-master.md');
|
const taskMasterReadmePath = path.join(
|
||||||
|
path.dirname(targetPath),
|
||||||
|
'README-task-master.md'
|
||||||
|
);
|
||||||
fs.writeFileSync(taskMasterReadmePath, content);
|
fs.writeFileSync(taskMasterReadmePath, content);
|
||||||
log('success', `Created ${taskMasterReadmePath} (preserved original README.md)`);
|
log(
|
||||||
|
'success',
|
||||||
|
`Created ${taskMasterReadmePath} (preserved original README.md)`
|
||||||
|
);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// For other files, warn and prompt before overwriting
|
// For other files, warn and prompt before overwriting
|
||||||
log('warn', `${targetPath} already exists. Skipping file creation to avoid overwriting existing content.`);
|
log(
|
||||||
|
'warn',
|
||||||
|
`${targetPath} already exists. Skipping file creation to avoid overwriting existing content.`
|
||||||
|
);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -366,7 +427,10 @@ async function initializeProject(options = {}) {
|
|||||||
|
|
||||||
if (dryRun) {
|
if (dryRun) {
|
||||||
log('info', 'DRY RUN MODE: No files will be modified');
|
log('info', 'DRY RUN MODE: No files will be modified');
|
||||||
log('info', `Would initialize project: ${projectName} (${projectVersion})`);
|
log(
|
||||||
|
'info',
|
||||||
|
`Would initialize project: ${projectName} (${projectVersion})`
|
||||||
|
);
|
||||||
log('info', `Description: ${projectDescription}`);
|
log('info', `Description: ${projectDescription}`);
|
||||||
log('info', `Author: ${authorName || 'Not specified'}`);
|
log('info', `Author: ${authorName || 'Not specified'}`);
|
||||||
log('info', 'Would create/update necessary project files');
|
log('info', 'Would create/update necessary project files');
|
||||||
@@ -385,7 +449,14 @@ async function initializeProject(options = {}) {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
createProjectStructure(projectName, projectDescription, projectVersion, authorName, skipInstall, addAliases);
|
createProjectStructure(
|
||||||
|
projectName,
|
||||||
|
projectDescription,
|
||||||
|
projectVersion,
|
||||||
|
authorName,
|
||||||
|
skipInstall,
|
||||||
|
addAliases
|
||||||
|
);
|
||||||
return {
|
return {
|
||||||
projectName,
|
projectName,
|
||||||
projectDescription,
|
projectDescription,
|
||||||
@@ -402,27 +473,53 @@ async function initializeProject(options = {}) {
|
|||||||
});
|
});
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const projectName = await promptQuestion(rl, chalk.cyan('Enter project name: '));
|
const projectName = await promptQuestion(
|
||||||
const projectDescription = await promptQuestion(rl, chalk.cyan('Enter project description: '));
|
rl,
|
||||||
const projectVersionInput = await promptQuestion(rl, chalk.cyan('Enter project version (default: 1.0.0): '));
|
chalk.cyan('Enter project name: ')
|
||||||
const authorName = await promptQuestion(rl, chalk.cyan('Enter your name: '));
|
);
|
||||||
|
const projectDescription = await promptQuestion(
|
||||||
|
rl,
|
||||||
|
chalk.cyan('Enter project description: ')
|
||||||
|
);
|
||||||
|
const projectVersionInput = await promptQuestion(
|
||||||
|
rl,
|
||||||
|
chalk.cyan('Enter project version (default: 1.0.0): ')
|
||||||
|
);
|
||||||
|
const authorName = await promptQuestion(
|
||||||
|
rl,
|
||||||
|
chalk.cyan('Enter your name: ')
|
||||||
|
);
|
||||||
|
|
||||||
// Ask about shell aliases
|
// Ask about shell aliases
|
||||||
const addAliasesInput = await promptQuestion(rl, chalk.cyan('Add shell aliases for task-master? (Y/n): '));
|
const addAliasesInput = await promptQuestion(
|
||||||
|
rl,
|
||||||
|
chalk.cyan('Add shell aliases for task-master? (Y/n): ')
|
||||||
|
);
|
||||||
const addAliases = addAliasesInput.trim().toLowerCase() !== 'n';
|
const addAliases = addAliasesInput.trim().toLowerCase() !== 'n';
|
||||||
|
|
||||||
// Set default version if not provided
|
// Set default version if not provided
|
||||||
const projectVersion = projectVersionInput.trim() ? projectVersionInput : '1.0.0';
|
const projectVersion = projectVersionInput.trim()
|
||||||
|
? projectVersionInput
|
||||||
|
: '1.0.0';
|
||||||
|
|
||||||
// Confirm settings
|
// Confirm settings
|
||||||
console.log('\nProject settings:');
|
console.log('\nProject settings:');
|
||||||
console.log(chalk.blue('Name:'), chalk.white(projectName));
|
console.log(chalk.blue('Name:'), chalk.white(projectName));
|
||||||
console.log(chalk.blue('Description:'), chalk.white(projectDescription));
|
console.log(chalk.blue('Description:'), chalk.white(projectDescription));
|
||||||
console.log(chalk.blue('Version:'), chalk.white(projectVersion));
|
console.log(chalk.blue('Version:'), chalk.white(projectVersion));
|
||||||
console.log(chalk.blue('Author:'), chalk.white(authorName || 'Not specified'));
|
console.log(
|
||||||
console.log(chalk.blue('Add shell aliases:'), chalk.white(addAliases ? 'Yes' : 'No'));
|
chalk.blue('Author:'),
|
||||||
|
chalk.white(authorName || 'Not specified')
|
||||||
|
);
|
||||||
|
console.log(
|
||||||
|
chalk.blue('Add shell aliases:'),
|
||||||
|
chalk.white(addAliases ? 'Yes' : 'No')
|
||||||
|
);
|
||||||
|
|
||||||
const confirmInput = await promptQuestion(rl, chalk.yellow('\nDo you want to continue with these settings? (Y/n): '));
|
const confirmInput = await promptQuestion(
|
||||||
|
rl,
|
||||||
|
chalk.yellow('\nDo you want to continue with these settings? (Y/n): ')
|
||||||
|
);
|
||||||
const shouldContinue = confirmInput.trim().toLowerCase() !== 'n';
|
const shouldContinue = confirmInput.trim().toLowerCase() !== 'n';
|
||||||
|
|
||||||
// Close the readline interface
|
// Close the readline interface
|
||||||
@@ -455,7 +552,14 @@ async function initializeProject(options = {}) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Create the project structure
|
// Create the project structure
|
||||||
createProjectStructure(projectName, projectDescription, projectVersion, authorName, skipInstall, addAliases);
|
createProjectStructure(
|
||||||
|
projectName,
|
||||||
|
projectDescription,
|
||||||
|
projectVersion,
|
||||||
|
authorName,
|
||||||
|
skipInstall,
|
||||||
|
addAliases
|
||||||
|
);
|
||||||
|
|
||||||
return {
|
return {
|
||||||
projectName,
|
projectName,
|
||||||
@@ -480,7 +584,14 @@ function promptQuestion(rl, question) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Function to create the project structure
|
// Function to create the project structure
|
||||||
function createProjectStructure(projectName, projectDescription, projectVersion, authorName, skipInstall, addAliases) {
|
function createProjectStructure(
|
||||||
|
projectName,
|
||||||
|
projectDescription,
|
||||||
|
projectVersion,
|
||||||
|
authorName,
|
||||||
|
skipInstall,
|
||||||
|
addAliases
|
||||||
|
) {
|
||||||
const targetDir = process.cwd();
|
const targetDir = process.cwd();
|
||||||
log('info', `Initializing project in ${targetDir}`);
|
log('info', `Initializing project in ${targetDir}`);
|
||||||
|
|
||||||
@@ -495,24 +606,24 @@ function createProjectStructure(projectName, projectDescription, projectVersion,
|
|||||||
version: projectVersion,
|
version: projectVersion,
|
||||||
description: projectDescription,
|
description: projectDescription,
|
||||||
author: authorName,
|
author: authorName,
|
||||||
type: "module",
|
type: 'module',
|
||||||
scripts: {
|
scripts: {
|
||||||
"dev": "node scripts/dev.js",
|
dev: 'node scripts/dev.js',
|
||||||
"list": "node scripts/dev.js list",
|
list: 'node scripts/dev.js list',
|
||||||
"generate": "node scripts/dev.js generate",
|
generate: 'node scripts/dev.js generate',
|
||||||
"parse-prd": "node scripts/dev.js parse-prd"
|
'parse-prd': 'node scripts/dev.js parse-prd'
|
||||||
},
|
},
|
||||||
dependencies: {
|
dependencies: {
|
||||||
"@anthropic-ai/sdk": "^0.39.0",
|
'@anthropic-ai/sdk': '^0.39.0',
|
||||||
"chalk": "^5.3.0",
|
chalk: '^5.3.0',
|
||||||
"commander": "^11.1.0",
|
commander: '^11.1.0',
|
||||||
"dotenv": "^16.3.1",
|
dotenv: '^16.3.1',
|
||||||
"openai": "^4.86.1",
|
openai: '^4.86.1',
|
||||||
"figlet": "^1.7.0",
|
figlet: '^1.7.0',
|
||||||
"boxen": "^7.1.1",
|
boxen: '^7.1.1',
|
||||||
"gradient-string": "^2.0.2",
|
'gradient-string': '^2.0.2',
|
||||||
"cli-table3": "^0.6.3",
|
'cli-table3': '^0.6.3',
|
||||||
"ora": "^7.0.1"
|
ora: '^7.0.1'
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -521,7 +632,9 @@ function createProjectStructure(projectName, projectDescription, projectVersion,
|
|||||||
if (fs.existsSync(packageJsonPath)) {
|
if (fs.existsSync(packageJsonPath)) {
|
||||||
log('info', 'package.json already exists, merging content...');
|
log('info', 'package.json already exists, merging content...');
|
||||||
try {
|
try {
|
||||||
const existingPackageJson = JSON.parse(fs.readFileSync(packageJsonPath, 'utf8'));
|
const existingPackageJson = JSON.parse(
|
||||||
|
fs.readFileSync(packageJsonPath, 'utf8')
|
||||||
|
);
|
||||||
|
|
||||||
// Preserve existing fields but add our required ones
|
// Preserve existing fields but add our required ones
|
||||||
const mergedPackageJson = {
|
const mergedPackageJson = {
|
||||||
@@ -529,15 +642,21 @@ function createProjectStructure(projectName, projectDescription, projectVersion,
|
|||||||
scripts: {
|
scripts: {
|
||||||
...existingPackageJson.scripts,
|
...existingPackageJson.scripts,
|
||||||
...Object.fromEntries(
|
...Object.fromEntries(
|
||||||
Object.entries(packageJson.scripts)
|
Object.entries(packageJson.scripts).filter(
|
||||||
.filter(([key]) => !existingPackageJson.scripts || !existingPackageJson.scripts[key])
|
([key]) =>
|
||||||
|
!existingPackageJson.scripts ||
|
||||||
|
!existingPackageJson.scripts[key]
|
||||||
|
)
|
||||||
)
|
)
|
||||||
},
|
},
|
||||||
dependencies: {
|
dependencies: {
|
||||||
...existingPackageJson.dependencies || {},
|
...(existingPackageJson.dependencies || {}),
|
||||||
...Object.fromEntries(
|
...Object.fromEntries(
|
||||||
Object.entries(packageJson.dependencies)
|
Object.entries(packageJson.dependencies).filter(
|
||||||
.filter(([key]) => !existingPackageJson.dependencies || !existingPackageJson.dependencies[key])
|
([key]) =>
|
||||||
|
!existingPackageJson.dependencies ||
|
||||||
|
!existingPackageJson.dependencies[key]
|
||||||
|
)
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@@ -547,7 +666,10 @@ function createProjectStructure(projectName, projectDescription, projectVersion,
|
|||||||
mergedPackageJson.type = packageJson.type;
|
mergedPackageJson.type = packageJson.type;
|
||||||
}
|
}
|
||||||
|
|
||||||
fs.writeFileSync(packageJsonPath, JSON.stringify(mergedPackageJson, null, 2));
|
fs.writeFileSync(
|
||||||
|
packageJsonPath,
|
||||||
|
JSON.stringify(mergedPackageJson, null, 2)
|
||||||
|
);
|
||||||
log('success', 'Updated package.json with required fields');
|
log('success', 'Updated package.json with required fields');
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
log('error', `Failed to merge package.json: ${error.message}`);
|
log('error', `Failed to merge package.json: ${error.message}`);
|
||||||
@@ -556,7 +678,10 @@ function createProjectStructure(projectName, projectDescription, projectVersion,
|
|||||||
fs.copyFileSync(packageJsonPath, backupPath);
|
fs.copyFileSync(packageJsonPath, backupPath);
|
||||||
log('info', `Created backup of existing package.json at ${backupPath}`);
|
log('info', `Created backup of existing package.json at ${backupPath}`);
|
||||||
fs.writeFileSync(packageJsonPath, JSON.stringify(packageJson, null, 2));
|
fs.writeFileSync(packageJsonPath, JSON.stringify(packageJson, null, 2));
|
||||||
log('warn', 'Created new package.json (backup of original file was created)');
|
log(
|
||||||
|
'warn',
|
||||||
|
'Created new package.json (backup of original file was created)'
|
||||||
|
);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
// If package.json doesn't exist, create it
|
// If package.json doesn't exist, create it
|
||||||
@@ -577,19 +702,32 @@ function createProjectStructure(projectName, projectDescription, projectVersion,
|
|||||||
};
|
};
|
||||||
|
|
||||||
// Copy .env.example
|
// Copy .env.example
|
||||||
copyTemplateFile('env.example', path.join(targetDir, '.env.example'), replacements);
|
copyTemplateFile(
|
||||||
|
'env.example',
|
||||||
|
path.join(targetDir, '.env.example'),
|
||||||
|
replacements
|
||||||
|
);
|
||||||
|
|
||||||
// Copy .gitignore
|
// Copy .gitignore
|
||||||
copyTemplateFile('gitignore', path.join(targetDir, '.gitignore'));
|
copyTemplateFile('gitignore', path.join(targetDir, '.gitignore'));
|
||||||
|
|
||||||
// Copy dev_workflow.mdc
|
// Copy dev_workflow.mdc
|
||||||
copyTemplateFile('dev_workflow.mdc', path.join(targetDir, '.cursor', 'rules', 'dev_workflow.mdc'));
|
copyTemplateFile(
|
||||||
|
'dev_workflow.mdc',
|
||||||
|
path.join(targetDir, '.cursor', 'rules', 'dev_workflow.mdc')
|
||||||
|
);
|
||||||
|
|
||||||
// Copy cursor_rules.mdc
|
// Copy cursor_rules.mdc
|
||||||
copyTemplateFile('cursor_rules.mdc', path.join(targetDir, '.cursor', 'rules', 'cursor_rules.mdc'));
|
copyTemplateFile(
|
||||||
|
'cursor_rules.mdc',
|
||||||
|
path.join(targetDir, '.cursor', 'rules', 'cursor_rules.mdc')
|
||||||
|
);
|
||||||
|
|
||||||
// Copy self_improve.mdc
|
// Copy self_improve.mdc
|
||||||
copyTemplateFile('self_improve.mdc', path.join(targetDir, '.cursor', 'rules', 'self_improve.mdc'));
|
copyTemplateFile(
|
||||||
|
'self_improve.mdc',
|
||||||
|
path.join(targetDir, '.cursor', 'rules', 'self_improve.mdc')
|
||||||
|
);
|
||||||
|
|
||||||
// Copy .windsurfrules
|
// Copy .windsurfrules
|
||||||
copyTemplateFile('windsurfrules', path.join(targetDir, '.windsurfrules'));
|
copyTemplateFile('windsurfrules', path.join(targetDir, '.windsurfrules'));
|
||||||
@@ -598,13 +736,23 @@ function createProjectStructure(projectName, projectDescription, projectVersion,
|
|||||||
copyTemplateFile('dev.js', path.join(targetDir, 'scripts', 'dev.js'));
|
copyTemplateFile('dev.js', path.join(targetDir, 'scripts', 'dev.js'));
|
||||||
|
|
||||||
// Copy scripts/README.md
|
// Copy scripts/README.md
|
||||||
copyTemplateFile('scripts_README.md', path.join(targetDir, 'scripts', 'README.md'));
|
copyTemplateFile(
|
||||||
|
'scripts_README.md',
|
||||||
|
path.join(targetDir, 'scripts', 'README.md')
|
||||||
|
);
|
||||||
|
|
||||||
// Copy example_prd.txt
|
// Copy example_prd.txt
|
||||||
copyTemplateFile('example_prd.txt', path.join(targetDir, 'scripts', 'example_prd.txt'));
|
copyTemplateFile(
|
||||||
|
'example_prd.txt',
|
||||||
|
path.join(targetDir, 'scripts', 'example_prd.txt')
|
||||||
|
);
|
||||||
|
|
||||||
// Create main README.md
|
// Create main README.md
|
||||||
copyTemplateFile('README-task-master.md', path.join(targetDir, 'README.md'), replacements);
|
copyTemplateFile(
|
||||||
|
'README-task-master.md',
|
||||||
|
path.join(targetDir, 'README.md'),
|
||||||
|
replacements
|
||||||
|
);
|
||||||
|
|
||||||
// Initialize git repository if git is available
|
// Initialize git repository if git is available
|
||||||
try {
|
try {
|
||||||
@@ -618,12 +766,14 @@ function createProjectStructure(projectName, projectDescription, projectVersion,
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Run npm install automatically
|
// Run npm install automatically
|
||||||
console.log(boxen(chalk.cyan('Installing dependencies...'), {
|
console.log(
|
||||||
|
boxen(chalk.cyan('Installing dependencies...'), {
|
||||||
padding: 0.5,
|
padding: 0.5,
|
||||||
margin: 0.5,
|
margin: 0.5,
|
||||||
borderStyle: 'round',
|
borderStyle: 'round',
|
||||||
borderColor: 'blue'
|
borderColor: 'blue'
|
||||||
}));
|
})
|
||||||
|
);
|
||||||
|
|
||||||
try {
|
try {
|
||||||
if (!skipInstall) {
|
if (!skipInstall) {
|
||||||
@@ -638,16 +788,21 @@ function createProjectStructure(projectName, projectDescription, projectVersion,
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Display success message
|
// Display success message
|
||||||
console.log(boxen(
|
console.log(
|
||||||
warmGradient.multiline(figlet.textSync('Success!', { font: 'Standard' })) +
|
boxen(
|
||||||
'\n' + chalk.green('Project initialized successfully!'),
|
warmGradient.multiline(
|
||||||
|
figlet.textSync('Success!', { font: 'Standard' })
|
||||||
|
) +
|
||||||
|
'\n' +
|
||||||
|
chalk.green('Project initialized successfully!'),
|
||||||
{
|
{
|
||||||
padding: 1,
|
padding: 1,
|
||||||
margin: 1,
|
margin: 1,
|
||||||
borderStyle: 'double',
|
borderStyle: 'double',
|
||||||
borderColor: 'green'
|
borderColor: 'green'
|
||||||
}
|
}
|
||||||
));
|
)
|
||||||
|
);
|
||||||
|
|
||||||
// Add shell aliases if requested
|
// Add shell aliases if requested
|
||||||
if (addAliases) {
|
if (addAliases) {
|
||||||
@@ -655,19 +810,58 @@ function createProjectStructure(projectName, projectDescription, projectVersion,
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Display next steps in a nice box
|
// Display next steps in a nice box
|
||||||
console.log(boxen(
|
console.log(
|
||||||
chalk.cyan.bold('Things you can now do:') + '\n\n' +
|
boxen(
|
||||||
chalk.white('1. ') + chalk.yellow('Rename .env.example to .env and add your ANTHROPIC_API_KEY and PERPLEXITY_API_KEY') + '\n' +
|
chalk.cyan.bold('Things you can now do:') +
|
||||||
chalk.white('2. ') + chalk.yellow('Discuss your idea with AI, and once ready ask for a PRD using the example_prd.txt file, and save what you get to scripts/PRD.txt') + '\n' +
|
'\n\n' +
|
||||||
chalk.white('3. ') + chalk.yellow('Ask Cursor Agent to parse your PRD.txt and generate tasks') + '\n' +
|
chalk.white('1. ') +
|
||||||
chalk.white(' └─ ') + chalk.dim('You can also run ') + chalk.cyan('task-master parse-prd <your-prd-file.txt>') + '\n' +
|
chalk.yellow(
|
||||||
chalk.white('4. ') + chalk.yellow('Ask Cursor to analyze the complexity of your tasks') + '\n' +
|
'Rename .env.example to .env and add your ANTHROPIC_API_KEY and PERPLEXITY_API_KEY'
|
||||||
chalk.white('5. ') + chalk.yellow('Ask Cursor which task is next to determine where to start') + '\n' +
|
) +
|
||||||
chalk.white('6. ') + chalk.yellow('Ask Cursor to expand any complex tasks that are too large or complex.') + '\n' +
|
'\n' +
|
||||||
chalk.white('7. ') + chalk.yellow('Ask Cursor to set the status of a task, or multiple tasks. Use the task id from the task lists.') + '\n' +
|
chalk.white('2. ') +
|
||||||
chalk.white('8. ') + chalk.yellow('Ask Cursor to update all tasks from a specific task id based on new learnings or pivots in your project.') + '\n' +
|
chalk.yellow(
|
||||||
chalk.white('9. ') + chalk.green.bold('Ship it!') + '\n\n' +
|
'Discuss your idea with AI, and once ready ask for a PRD using the example_prd.txt file, and save what you get to scripts/PRD.txt'
|
||||||
chalk.dim('* Review the README.md file to learn how to use other commands via Cursor Agent.'),
|
) +
|
||||||
|
'\n' +
|
||||||
|
chalk.white('3. ') +
|
||||||
|
chalk.yellow(
|
||||||
|
'Ask Cursor Agent to parse your PRD.txt and generate tasks'
|
||||||
|
) +
|
||||||
|
'\n' +
|
||||||
|
chalk.white(' └─ ') +
|
||||||
|
chalk.dim('You can also run ') +
|
||||||
|
chalk.cyan('task-master parse-prd <your-prd-file.txt>') +
|
||||||
|
'\n' +
|
||||||
|
chalk.white('4. ') +
|
||||||
|
chalk.yellow('Ask Cursor to analyze the complexity of your tasks') +
|
||||||
|
'\n' +
|
||||||
|
chalk.white('5. ') +
|
||||||
|
chalk.yellow(
|
||||||
|
'Ask Cursor which task is next to determine where to start'
|
||||||
|
) +
|
||||||
|
'\n' +
|
||||||
|
chalk.white('6. ') +
|
||||||
|
chalk.yellow(
|
||||||
|
'Ask Cursor to expand any complex tasks that are too large or complex.'
|
||||||
|
) +
|
||||||
|
'\n' +
|
||||||
|
chalk.white('7. ') +
|
||||||
|
chalk.yellow(
|
||||||
|
'Ask Cursor to set the status of a task, or multiple tasks. Use the task id from the task lists.'
|
||||||
|
) +
|
||||||
|
'\n' +
|
||||||
|
chalk.white('8. ') +
|
||||||
|
chalk.yellow(
|
||||||
|
'Ask Cursor to update all tasks from a specific task id based on new learnings or pivots in your project.'
|
||||||
|
) +
|
||||||
|
'\n' +
|
||||||
|
chalk.white('9. ') +
|
||||||
|
chalk.green.bold('Ship it!') +
|
||||||
|
'\n\n' +
|
||||||
|
chalk.dim(
|
||||||
|
'* Review the README.md file to learn how to use other commands via Cursor Agent.'
|
||||||
|
),
|
||||||
{
|
{
|
||||||
padding: 1,
|
padding: 1,
|
||||||
margin: 1,
|
margin: 1,
|
||||||
@@ -676,7 +870,8 @@ function createProjectStructure(projectName, projectDescription, projectVersion,
|
|||||||
title: 'Getting Started',
|
title: 'Getting Started',
|
||||||
titleAlignment: 'center'
|
titleAlignment: 'center'
|
||||||
}
|
}
|
||||||
));
|
)
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Function to setup MCP configuration for Cursor integration
|
// Function to setup MCP configuration for Cursor integration
|
||||||
@@ -691,12 +886,9 @@ function setupMCPConfiguration(targetDir, projectName) {
|
|||||||
|
|
||||||
// New MCP config to be added - references the installed package
|
// New MCP config to be added - references the installed package
|
||||||
const newMCPServer = {
|
const newMCPServer = {
|
||||||
"task-master-ai": {
|
'task-master-ai': {
|
||||||
"command": "npx",
|
command: 'npx',
|
||||||
"args": [
|
args: ['task-master-ai', 'mcp-server']
|
||||||
"task-master-ai",
|
|
||||||
"mcp-server"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -713,18 +905,18 @@ function setupMCPConfiguration(targetDir, projectName) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Add the task-master-ai server if it doesn't exist
|
// Add the task-master-ai server if it doesn't exist
|
||||||
if (!mcpConfig.mcpServers["task-master-ai"]) {
|
if (!mcpConfig.mcpServers['task-master-ai']) {
|
||||||
mcpConfig.mcpServers["task-master-ai"] = newMCPServer["task-master-ai"];
|
mcpConfig.mcpServers['task-master-ai'] = newMCPServer['task-master-ai'];
|
||||||
log('info', 'Added task-master-ai server to existing MCP configuration');
|
log(
|
||||||
|
'info',
|
||||||
|
'Added task-master-ai server to existing MCP configuration'
|
||||||
|
);
|
||||||
} else {
|
} else {
|
||||||
log('info', 'task-master-ai server already configured in mcp.json');
|
log('info', 'task-master-ai server already configured in mcp.json');
|
||||||
}
|
}
|
||||||
|
|
||||||
// Write the updated configuration
|
// Write the updated configuration
|
||||||
fs.writeFileSync(
|
fs.writeFileSync(mcpJsonPath, JSON.stringify(mcpConfig, null, 4));
|
||||||
mcpJsonPath,
|
|
||||||
JSON.stringify(mcpConfig, null, 4)
|
|
||||||
);
|
|
||||||
log('success', 'Updated MCP configuration file');
|
log('success', 'Updated MCP configuration file');
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
log('error', `Failed to update MCP configuration: ${error.message}`);
|
log('error', `Failed to update MCP configuration: ${error.message}`);
|
||||||
@@ -737,16 +929,19 @@ function setupMCPConfiguration(targetDir, projectName) {
|
|||||||
|
|
||||||
// Create new configuration
|
// Create new configuration
|
||||||
const newMCPConfig = {
|
const newMCPConfig = {
|
||||||
"mcpServers": newMCPServer
|
mcpServers: newMCPServer
|
||||||
};
|
};
|
||||||
|
|
||||||
fs.writeFileSync(mcpJsonPath, JSON.stringify(newMCPConfig, null, 4));
|
fs.writeFileSync(mcpJsonPath, JSON.stringify(newMCPConfig, null, 4));
|
||||||
log('warn', 'Created new MCP configuration file (backup of original file was created if it existed)');
|
log(
|
||||||
|
'warn',
|
||||||
|
'Created new MCP configuration file (backup of original file was created if it existed)'
|
||||||
|
);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
// If mcp.json doesn't exist, create it
|
// If mcp.json doesn't exist, create it
|
||||||
const newMCPConfig = {
|
const newMCPConfig = {
|
||||||
"mcpServers": newMCPServer
|
mcpServers: newMCPServer
|
||||||
};
|
};
|
||||||
|
|
||||||
fs.writeFileSync(mcpJsonPath, JSON.stringify(newMCPConfig, null, 4));
|
fs.writeFileSync(mcpJsonPath, JSON.stringify(newMCPConfig, null, 4));
|
||||||
@@ -776,7 +971,9 @@ console.log('process.argv:', process.argv);
|
|||||||
// When using --yes flag or providing name and description, use CLI options
|
// When using --yes flag or providing name and description, use CLI options
|
||||||
await initializeProject({
|
await initializeProject({
|
||||||
projectName: options.name || 'task-master-project',
|
projectName: options.name || 'task-master-project',
|
||||||
projectDescription: options.description || 'A task management system for AI-driven development',
|
projectDescription:
|
||||||
|
options.description ||
|
||||||
|
'A task management system for AI-driven development',
|
||||||
projectVersion: options.version || '1.0.0',
|
projectVersion: options.version || '1.0.0',
|
||||||
authorName: options.author || '',
|
authorName: options.author || '',
|
||||||
dryRun: options.dryRun || false,
|
dryRun: options.dryRun || false,
|
||||||
@@ -802,8 +999,4 @@ console.log('process.argv:', process.argv);
|
|||||||
})();
|
})();
|
||||||
|
|
||||||
// Export functions for programmatic use
|
// Export functions for programmatic use
|
||||||
export {
|
export { initializeProject, createProjectStructure, log };
|
||||||
initializeProject,
|
|
||||||
createProjectStructure,
|
|
||||||
log
|
|
||||||
};
|
|
||||||
|
|||||||
@@ -34,11 +34,13 @@ let perplexity = null;
|
|||||||
function getPerplexityClient() {
|
function getPerplexityClient() {
|
||||||
if (!perplexity) {
|
if (!perplexity) {
|
||||||
if (!process.env.PERPLEXITY_API_KEY) {
|
if (!process.env.PERPLEXITY_API_KEY) {
|
||||||
throw new Error("PERPLEXITY_API_KEY environment variable is missing. Set it to use research-backed features.");
|
throw new Error(
|
||||||
|
'PERPLEXITY_API_KEY environment variable is missing. Set it to use research-backed features.'
|
||||||
|
);
|
||||||
}
|
}
|
||||||
perplexity = new OpenAI({
|
perplexity = new OpenAI({
|
||||||
apiKey: process.env.PERPLEXITY_API_KEY,
|
apiKey: process.env.PERPLEXITY_API_KEY,
|
||||||
baseURL: 'https://api.perplexity.ai',
|
baseURL: 'https://api.perplexity.ai'
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
return perplexity;
|
return perplexity;
|
||||||
@@ -85,13 +87,18 @@ function getAvailableAIModel(options = {}) {
|
|||||||
// Last resort: Use Claude even if overloaded (might fail)
|
// Last resort: Use Claude even if overloaded (might fail)
|
||||||
if (process.env.ANTHROPIC_API_KEY) {
|
if (process.env.ANTHROPIC_API_KEY) {
|
||||||
if (claudeOverloaded) {
|
if (claudeOverloaded) {
|
||||||
log('warn', 'Claude is overloaded but no alternatives are available. Proceeding with Claude anyway.');
|
log(
|
||||||
|
'warn',
|
||||||
|
'Claude is overloaded but no alternatives are available. Proceeding with Claude anyway.'
|
||||||
|
);
|
||||||
}
|
}
|
||||||
return { type: 'claude', client: anthropic };
|
return { type: 'claude', client: anthropic };
|
||||||
}
|
}
|
||||||
|
|
||||||
// No models available
|
// No models available
|
||||||
throw new Error('No AI models available. Please set ANTHROPIC_API_KEY and/or PERPLEXITY_API_KEY.');
|
throw new Error(
|
||||||
|
'No AI models available. Please set ANTHROPIC_API_KEY and/or PERPLEXITY_API_KEY.'
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -190,22 +197,32 @@ Expected output format:
|
|||||||
Important: Your response must be valid JSON only, with no additional explanation or comments.`;
|
Important: Your response must be valid JSON only, with no additional explanation or comments.`;
|
||||||
|
|
||||||
// Use streaming request to handle large responses and show progress
|
// Use streaming request to handle large responses and show progress
|
||||||
return await handleStreamingRequest(prdContent, prdPath, numTasks, CONFIG.maxTokens, systemPrompt);
|
return await handleStreamingRequest(
|
||||||
|
prdContent,
|
||||||
|
prdPath,
|
||||||
|
numTasks,
|
||||||
|
CONFIG.maxTokens,
|
||||||
|
systemPrompt
|
||||||
|
);
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
// Get user-friendly error message
|
// Get user-friendly error message
|
||||||
const userMessage = handleClaudeError(error);
|
const userMessage = handleClaudeError(error);
|
||||||
log('error', userMessage);
|
log('error', userMessage);
|
||||||
|
|
||||||
// Retry logic for certain errors
|
// Retry logic for certain errors
|
||||||
if (retryCount < 2 && (
|
if (
|
||||||
error.error?.type === 'overloaded_error' ||
|
retryCount < 2 &&
|
||||||
|
(error.error?.type === 'overloaded_error' ||
|
||||||
error.error?.type === 'rate_limit_error' ||
|
error.error?.type === 'rate_limit_error' ||
|
||||||
error.message?.toLowerCase().includes('timeout') ||
|
error.message?.toLowerCase().includes('timeout') ||
|
||||||
error.message?.toLowerCase().includes('network')
|
error.message?.toLowerCase().includes('network'))
|
||||||
)) {
|
) {
|
||||||
const waitTime = (retryCount + 1) * 5000; // 5s, then 10s
|
const waitTime = (retryCount + 1) * 5000; // 5s, then 10s
|
||||||
log('info', `Waiting ${waitTime/1000} seconds before retry ${retryCount + 1}/2...`);
|
log(
|
||||||
await new Promise(resolve => setTimeout(resolve, waitTime));
|
'info',
|
||||||
|
`Waiting ${waitTime / 1000} seconds before retry ${retryCount + 1}/2...`
|
||||||
|
);
|
||||||
|
await new Promise((resolve) => setTimeout(resolve, waitTime));
|
||||||
return await callClaude(prdContent, prdPath, numTasks, retryCount + 1);
|
return await callClaude(prdContent, prdPath, numTasks, retryCount + 1);
|
||||||
} else {
|
} else {
|
||||||
console.error(chalk.red(userMessage));
|
console.error(chalk.red(userMessage));
|
||||||
@@ -226,8 +243,16 @@ Important: Your response must be valid JSON only, with no additional explanation
|
|||||||
* @param {string} systemPrompt - System prompt
|
* @param {string} systemPrompt - System prompt
|
||||||
* @returns {Object} Claude's response
|
* @returns {Object} Claude's response
|
||||||
*/
|
*/
|
||||||
async function handleStreamingRequest(prdContent, prdPath, numTasks, maxTokens, systemPrompt) {
|
async function handleStreamingRequest(
|
||||||
const loadingIndicator = startLoadingIndicator('Generating tasks from PRD...');
|
prdContent,
|
||||||
|
prdPath,
|
||||||
|
numTasks,
|
||||||
|
maxTokens,
|
||||||
|
systemPrompt
|
||||||
|
) {
|
||||||
|
const loadingIndicator = startLoadingIndicator(
|
||||||
|
'Generating tasks from PRD...'
|
||||||
|
);
|
||||||
let responseText = '';
|
let responseText = '';
|
||||||
let streamingInterval = null;
|
let streamingInterval = null;
|
||||||
|
|
||||||
@@ -252,7 +277,9 @@ async function handleStreamingRequest(prdContent, prdPath, numTasks, maxTokens,
|
|||||||
const readline = await import('readline');
|
const readline = await import('readline');
|
||||||
streamingInterval = setInterval(() => {
|
streamingInterval = setInterval(() => {
|
||||||
readline.cursorTo(process.stdout, 0);
|
readline.cursorTo(process.stdout, 0);
|
||||||
process.stdout.write(`Receiving streaming response from Claude${'.'.repeat(dotCount)}`);
|
process.stdout.write(
|
||||||
|
`Receiving streaming response from Claude${'.'.repeat(dotCount)}`
|
||||||
|
);
|
||||||
dotCount = (dotCount + 1) % 4;
|
dotCount = (dotCount + 1) % 4;
|
||||||
}, 500);
|
}, 500);
|
||||||
|
|
||||||
@@ -266,9 +293,15 @@ async function handleStreamingRequest(prdContent, prdPath, numTasks, maxTokens,
|
|||||||
if (streamingInterval) clearInterval(streamingInterval);
|
if (streamingInterval) clearInterval(streamingInterval);
|
||||||
stopLoadingIndicator(loadingIndicator);
|
stopLoadingIndicator(loadingIndicator);
|
||||||
|
|
||||||
log('info', "Completed streaming response from Claude API!");
|
log('info', 'Completed streaming response from Claude API!');
|
||||||
|
|
||||||
return processClaudeResponse(responseText, numTasks, 0, prdContent, prdPath);
|
return processClaudeResponse(
|
||||||
|
responseText,
|
||||||
|
numTasks,
|
||||||
|
0,
|
||||||
|
prdContent,
|
||||||
|
prdPath
|
||||||
|
);
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
if (streamingInterval) clearInterval(streamingInterval);
|
if (streamingInterval) clearInterval(streamingInterval);
|
||||||
stopLoadingIndicator(loadingIndicator);
|
stopLoadingIndicator(loadingIndicator);
|
||||||
@@ -295,7 +328,13 @@ async function handleStreamingRequest(prdContent, prdPath, numTasks, maxTokens,
|
|||||||
* @param {string} prdPath - Path to the PRD file
|
* @param {string} prdPath - Path to the PRD file
|
||||||
* @returns {Object} Processed response
|
* @returns {Object} Processed response
|
||||||
*/
|
*/
|
||||||
function processClaudeResponse(textContent, numTasks, retryCount, prdContent, prdPath) {
|
function processClaudeResponse(
|
||||||
|
textContent,
|
||||||
|
numTasks,
|
||||||
|
retryCount,
|
||||||
|
prdContent,
|
||||||
|
prdPath
|
||||||
|
) {
|
||||||
try {
|
try {
|
||||||
// Attempt to parse the JSON response
|
// Attempt to parse the JSON response
|
||||||
let jsonStart = textContent.indexOf('{');
|
let jsonStart = textContent.indexOf('{');
|
||||||
@@ -315,13 +354,16 @@ function processClaudeResponse(textContent, numTasks, retryCount, prdContent, pr
|
|||||||
|
|
||||||
// Ensure we have the correct number of tasks
|
// Ensure we have the correct number of tasks
|
||||||
if (parsedData.tasks.length !== numTasks) {
|
if (parsedData.tasks.length !== numTasks) {
|
||||||
log('warn', `Expected ${numTasks} tasks, but received ${parsedData.tasks.length}`);
|
log(
|
||||||
|
'warn',
|
||||||
|
`Expected ${numTasks} tasks, but received ${parsedData.tasks.length}`
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Add metadata if missing
|
// Add metadata if missing
|
||||||
if (!parsedData.metadata) {
|
if (!parsedData.metadata) {
|
||||||
parsedData.metadata = {
|
parsedData.metadata = {
|
||||||
projectName: "PRD Implementation",
|
projectName: 'PRD Implementation',
|
||||||
totalTasks: parsedData.tasks.length,
|
totalTasks: parsedData.tasks.length,
|
||||||
sourceFile: prdPath,
|
sourceFile: prdPath,
|
||||||
generatedAt: new Date().toISOString().split('T')[0]
|
generatedAt: new Date().toISOString().split('T')[0]
|
||||||
@@ -338,11 +380,17 @@ function processClaudeResponse(textContent, numTasks, retryCount, prdContent, pr
|
|||||||
|
|
||||||
// Try again with Claude for a cleaner response
|
// Try again with Claude for a cleaner response
|
||||||
if (retryCount === 1) {
|
if (retryCount === 1) {
|
||||||
log('info', "Calling Claude again for a cleaner response...");
|
log('info', 'Calling Claude again for a cleaner response...');
|
||||||
return callClaude(prdContent, prdPath, numTasks, retryCount + 1);
|
return callClaude(prdContent, prdPath, numTasks, retryCount + 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
return processClaudeResponse(textContent, numTasks, retryCount + 1, prdContent, prdPath);
|
return processClaudeResponse(
|
||||||
|
textContent,
|
||||||
|
numTasks,
|
||||||
|
retryCount + 1,
|
||||||
|
prdContent,
|
||||||
|
prdPath
|
||||||
|
);
|
||||||
} else {
|
} else {
|
||||||
throw error;
|
throw error;
|
||||||
}
|
}
|
||||||
@@ -357,11 +405,21 @@ function processClaudeResponse(textContent, numTasks, retryCount, prdContent, pr
|
|||||||
* @param {string} additionalContext - Additional context
|
* @param {string} additionalContext - Additional context
|
||||||
* @returns {Array} Generated subtasks
|
* @returns {Array} Generated subtasks
|
||||||
*/
|
*/
|
||||||
async function generateSubtasks(task, numSubtasks, nextSubtaskId, additionalContext = '') {
|
async function generateSubtasks(
|
||||||
|
task,
|
||||||
|
numSubtasks,
|
||||||
|
nextSubtaskId,
|
||||||
|
additionalContext = ''
|
||||||
|
) {
|
||||||
try {
|
try {
|
||||||
log('info', `Generating ${numSubtasks} subtasks for task ${task.id}: ${task.title}`);
|
log(
|
||||||
|
'info',
|
||||||
|
`Generating ${numSubtasks} subtasks for task ${task.id}: ${task.title}`
|
||||||
|
);
|
||||||
|
|
||||||
const loadingIndicator = startLoadingIndicator(`Generating subtasks for task ${task.id}...`);
|
const loadingIndicator = startLoadingIndicator(
|
||||||
|
`Generating subtasks for task ${task.id}...`
|
||||||
|
);
|
||||||
let streamingInterval = null;
|
let streamingInterval = null;
|
||||||
let responseText = '';
|
let responseText = '';
|
||||||
|
|
||||||
@@ -384,8 +442,9 @@ For each subtask, provide:
|
|||||||
|
|
||||||
Each subtask should be implementable in a focused coding session.`;
|
Each subtask should be implementable in a focused coding session.`;
|
||||||
|
|
||||||
const contextPrompt = additionalContext ?
|
const contextPrompt = additionalContext
|
||||||
`\n\nAdditional context to consider: ${additionalContext}` : '';
|
? `\n\nAdditional context to consider: ${additionalContext}`
|
||||||
|
: '';
|
||||||
|
|
||||||
const userPrompt = `Please break down this task into ${numSubtasks} specific, actionable subtasks:
|
const userPrompt = `Please break down this task into ${numSubtasks} specific, actionable subtasks:
|
||||||
|
|
||||||
@@ -415,7 +474,9 @@ Note on dependencies: Subtasks can depend on other subtasks with lower IDs. Use
|
|||||||
const readline = await import('readline');
|
const readline = await import('readline');
|
||||||
streamingInterval = setInterval(() => {
|
streamingInterval = setInterval(() => {
|
||||||
readline.cursorTo(process.stdout, 0);
|
readline.cursorTo(process.stdout, 0);
|
||||||
process.stdout.write(`Generating subtasks for task ${task.id}${'.'.repeat(dotCount)}`);
|
process.stdout.write(
|
||||||
|
`Generating subtasks for task ${task.id}${'.'.repeat(dotCount)}`
|
||||||
|
);
|
||||||
dotCount = (dotCount + 1) % 4;
|
dotCount = (dotCount + 1) % 4;
|
||||||
}, 500);
|
}, 500);
|
||||||
|
|
||||||
@@ -446,7 +507,12 @@ Note on dependencies: Subtasks can depend on other subtasks with lower IDs. Use
|
|||||||
|
|
||||||
log('info', `Completed generating subtasks for task ${task.id}`);
|
log('info', `Completed generating subtasks for task ${task.id}`);
|
||||||
|
|
||||||
return parseSubtasksFromText(responseText, nextSubtaskId, numSubtasks, task.id);
|
return parseSubtasksFromText(
|
||||||
|
responseText,
|
||||||
|
nextSubtaskId,
|
||||||
|
numSubtasks,
|
||||||
|
task.id
|
||||||
|
);
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
if (streamingInterval) clearInterval(streamingInterval);
|
if (streamingInterval) clearInterval(streamingInterval);
|
||||||
stopLoadingIndicator(loadingIndicator);
|
stopLoadingIndicator(loadingIndicator);
|
||||||
@@ -466,14 +532,21 @@ Note on dependencies: Subtasks can depend on other subtasks with lower IDs. Use
|
|||||||
* @param {string} additionalContext - Additional context
|
* @param {string} additionalContext - Additional context
|
||||||
* @returns {Array} Generated subtasks
|
* @returns {Array} Generated subtasks
|
||||||
*/
|
*/
|
||||||
async function generateSubtasksWithPerplexity(task, numSubtasks = 3, nextSubtaskId = 1, additionalContext = '') {
|
async function generateSubtasksWithPerplexity(
|
||||||
|
task,
|
||||||
|
numSubtasks = 3,
|
||||||
|
nextSubtaskId = 1,
|
||||||
|
additionalContext = ''
|
||||||
|
) {
|
||||||
try {
|
try {
|
||||||
// First, perform research to get context
|
// First, perform research to get context
|
||||||
log('info', `Researching context for task ${task.id}: ${task.title}`);
|
log('info', `Researching context for task ${task.id}: ${task.title}`);
|
||||||
const perplexityClient = getPerplexityClient();
|
const perplexityClient = getPerplexityClient();
|
||||||
|
|
||||||
const PERPLEXITY_MODEL = process.env.PERPLEXITY_MODEL || 'sonar-pro';
|
const PERPLEXITY_MODEL = process.env.PERPLEXITY_MODEL || 'sonar-pro';
|
||||||
const researchLoadingIndicator = startLoadingIndicator('Researching best practices with Perplexity AI...');
|
const researchLoadingIndicator = startLoadingIndicator(
|
||||||
|
'Researching best practices with Perplexity AI...'
|
||||||
|
);
|
||||||
|
|
||||||
// Formulate research query based on task
|
// Formulate research query based on task
|
||||||
const researchQuery = `I need to implement "${task.title}" which involves: "${task.description}".
|
const researchQuery = `I need to implement "${task.title}" which involves: "${task.description}".
|
||||||
@@ -483,17 +556,22 @@ Include concrete code examples and technical considerations where relevant.`;
|
|||||||
// Query Perplexity for research
|
// Query Perplexity for research
|
||||||
const researchResponse = await perplexityClient.chat.completions.create({
|
const researchResponse = await perplexityClient.chat.completions.create({
|
||||||
model: PERPLEXITY_MODEL,
|
model: PERPLEXITY_MODEL,
|
||||||
messages: [{
|
messages: [
|
||||||
|
{
|
||||||
role: 'user',
|
role: 'user',
|
||||||
content: researchQuery
|
content: researchQuery
|
||||||
}],
|
}
|
||||||
|
],
|
||||||
temperature: 0.1 // Lower temperature for more factual responses
|
temperature: 0.1 // Lower temperature for more factual responses
|
||||||
});
|
});
|
||||||
|
|
||||||
const researchResult = researchResponse.choices[0].message.content;
|
const researchResult = researchResponse.choices[0].message.content;
|
||||||
|
|
||||||
stopLoadingIndicator(researchLoadingIndicator);
|
stopLoadingIndicator(researchLoadingIndicator);
|
||||||
log('info', 'Research completed, now generating subtasks with additional context');
|
log(
|
||||||
|
'info',
|
||||||
|
'Research completed, now generating subtasks with additional context'
|
||||||
|
);
|
||||||
|
|
||||||
// Use the research result as additional context for Claude to generate subtasks
|
// Use the research result as additional context for Claude to generate subtasks
|
||||||
const combinedContext = `
|
const combinedContext = `
|
||||||
@@ -501,11 +579,13 @@ RESEARCH FINDINGS:
|
|||||||
${researchResult}
|
${researchResult}
|
||||||
|
|
||||||
ADDITIONAL CONTEXT PROVIDED BY USER:
|
ADDITIONAL CONTEXT PROVIDED BY USER:
|
||||||
${additionalContext || "No additional context provided."}
|
${additionalContext || 'No additional context provided.'}
|
||||||
`;
|
`;
|
||||||
|
|
||||||
// Now generate subtasks with Claude
|
// Now generate subtasks with Claude
|
||||||
const loadingIndicator = startLoadingIndicator(`Generating research-backed subtasks for task ${task.id}...`);
|
const loadingIndicator = startLoadingIndicator(
|
||||||
|
`Generating research-backed subtasks for task ${task.id}...`
|
||||||
|
);
|
||||||
let streamingInterval = null;
|
let streamingInterval = null;
|
||||||
let responseText = '';
|
let responseText = '';
|
||||||
|
|
||||||
@@ -560,7 +640,9 @@ Note on dependencies: Subtasks can depend on other subtasks with lower IDs. Use
|
|||||||
const readline = await import('readline');
|
const readline = await import('readline');
|
||||||
streamingInterval = setInterval(() => {
|
streamingInterval = setInterval(() => {
|
||||||
readline.cursorTo(process.stdout, 0);
|
readline.cursorTo(process.stdout, 0);
|
||||||
process.stdout.write(`Generating research-backed subtasks for task ${task.id}${'.'.repeat(dotCount)}`);
|
process.stdout.write(
|
||||||
|
`Generating research-backed subtasks for task ${task.id}${'.'.repeat(dotCount)}`
|
||||||
|
);
|
||||||
dotCount = (dotCount + 1) % 4;
|
dotCount = (dotCount + 1) % 4;
|
||||||
}, 500);
|
}, 500);
|
||||||
|
|
||||||
@@ -589,9 +671,17 @@ Note on dependencies: Subtasks can depend on other subtasks with lower IDs. Use
|
|||||||
if (streamingInterval) clearInterval(streamingInterval);
|
if (streamingInterval) clearInterval(streamingInterval);
|
||||||
stopLoadingIndicator(loadingIndicator);
|
stopLoadingIndicator(loadingIndicator);
|
||||||
|
|
||||||
log('info', `Completed generating research-backed subtasks for task ${task.id}`);
|
log(
|
||||||
|
'info',
|
||||||
|
`Completed generating research-backed subtasks for task ${task.id}`
|
||||||
|
);
|
||||||
|
|
||||||
return parseSubtasksFromText(responseText, nextSubtaskId, numSubtasks, task.id);
|
return parseSubtasksFromText(
|
||||||
|
responseText,
|
||||||
|
nextSubtaskId,
|
||||||
|
numSubtasks,
|
||||||
|
task.id
|
||||||
|
);
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
if (streamingInterval) clearInterval(streamingInterval);
|
if (streamingInterval) clearInterval(streamingInterval);
|
||||||
stopLoadingIndicator(loadingIndicator);
|
stopLoadingIndicator(loadingIndicator);
|
||||||
@@ -617,8 +707,12 @@ function parseSubtasksFromText(text, startId, expectedCount, parentTaskId) {
|
|||||||
const jsonStartIndex = text.indexOf('[');
|
const jsonStartIndex = text.indexOf('[');
|
||||||
const jsonEndIndex = text.lastIndexOf(']');
|
const jsonEndIndex = text.lastIndexOf(']');
|
||||||
|
|
||||||
if (jsonStartIndex === -1 || jsonEndIndex === -1 || jsonEndIndex < jsonStartIndex) {
|
if (
|
||||||
throw new Error("Could not locate valid JSON array in the response");
|
jsonStartIndex === -1 ||
|
||||||
|
jsonEndIndex === -1 ||
|
||||||
|
jsonEndIndex < jsonStartIndex
|
||||||
|
) {
|
||||||
|
throw new Error('Could not locate valid JSON array in the response');
|
||||||
}
|
}
|
||||||
|
|
||||||
// Extract and parse the JSON
|
// Extract and parse the JSON
|
||||||
@@ -627,25 +721,31 @@ function parseSubtasksFromText(text, startId, expectedCount, parentTaskId) {
|
|||||||
|
|
||||||
// Validate
|
// Validate
|
||||||
if (!Array.isArray(subtasks)) {
|
if (!Array.isArray(subtasks)) {
|
||||||
throw new Error("Parsed content is not an array");
|
throw new Error('Parsed content is not an array');
|
||||||
}
|
}
|
||||||
|
|
||||||
// Log warning if count doesn't match expected
|
// Log warning if count doesn't match expected
|
||||||
if (subtasks.length !== expectedCount) {
|
if (subtasks.length !== expectedCount) {
|
||||||
log('warn', `Expected ${expectedCount} subtasks, but parsed ${subtasks.length}`);
|
log(
|
||||||
|
'warn',
|
||||||
|
`Expected ${expectedCount} subtasks, but parsed ${subtasks.length}`
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Normalize subtask IDs if they don't match
|
// Normalize subtask IDs if they don't match
|
||||||
subtasks = subtasks.map((subtask, index) => {
|
subtasks = subtasks.map((subtask, index) => {
|
||||||
// Assign the correct ID if it doesn't match
|
// Assign the correct ID if it doesn't match
|
||||||
if (subtask.id !== startId + index) {
|
if (subtask.id !== startId + index) {
|
||||||
log('warn', `Correcting subtask ID from ${subtask.id} to ${startId + index}`);
|
log(
|
||||||
|
'warn',
|
||||||
|
`Correcting subtask ID from ${subtask.id} to ${startId + index}`
|
||||||
|
);
|
||||||
subtask.id = startId + index;
|
subtask.id = startId + index;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Convert dependencies to numbers if they are strings
|
// Convert dependencies to numbers if they are strings
|
||||||
if (subtask.dependencies && Array.isArray(subtask.dependencies)) {
|
if (subtask.dependencies && Array.isArray(subtask.dependencies)) {
|
||||||
subtask.dependencies = subtask.dependencies.map(dep => {
|
subtask.dependencies = subtask.dependencies.map((dep) => {
|
||||||
return typeof dep === 'string' ? parseInt(dep, 10) : dep;
|
return typeof dep === 'string' ? parseInt(dep, 10) : dep;
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
@@ -674,9 +774,10 @@ function parseSubtasksFromText(text, startId, expectedCount, parentTaskId) {
|
|||||||
fallbackSubtasks.push({
|
fallbackSubtasks.push({
|
||||||
id: startId + i,
|
id: startId + i,
|
||||||
title: `Subtask ${startId + i}`,
|
title: `Subtask ${startId + i}`,
|
||||||
description: "Auto-generated fallback subtask",
|
description: 'Auto-generated fallback subtask',
|
||||||
dependencies: [],
|
dependencies: [],
|
||||||
details: "This is a fallback subtask created because parsing failed. Please update with real details.",
|
details:
|
||||||
|
'This is a fallback subtask created because parsing failed. Please update with real details.',
|
||||||
status: 'pending',
|
status: 'pending',
|
||||||
parentTaskId: parentTaskId
|
parentTaskId: parentTaskId
|
||||||
});
|
});
|
||||||
@@ -694,14 +795,18 @@ function parseSubtasksFromText(text, startId, expectedCount, parentTaskId) {
|
|||||||
function generateComplexityAnalysisPrompt(tasksData) {
|
function generateComplexityAnalysisPrompt(tasksData) {
|
||||||
return `Analyze the complexity of the following tasks and provide recommendations for subtask breakdown:
|
return `Analyze the complexity of the following tasks and provide recommendations for subtask breakdown:
|
||||||
|
|
||||||
${tasksData.tasks.map(task => `
|
${tasksData.tasks
|
||||||
|
.map(
|
||||||
|
(task) => `
|
||||||
Task ID: ${task.id}
|
Task ID: ${task.id}
|
||||||
Title: ${task.title}
|
Title: ${task.title}
|
||||||
Description: ${task.description}
|
Description: ${task.description}
|
||||||
Details: ${task.details}
|
Details: ${task.details}
|
||||||
Dependencies: ${JSON.stringify(task.dependencies || [])}
|
Dependencies: ${JSON.stringify(task.dependencies || [])}
|
||||||
Priority: ${task.priority || 'medium'}
|
Priority: ${task.priority || 'medium'}
|
||||||
`).join('\n---\n')}
|
`
|
||||||
|
)
|
||||||
|
.join('\n---\n')}
|
||||||
|
|
||||||
Analyze each task and return a JSON array with the following structure for each task:
|
Analyze each task and return a JSON array with the following structure for each task:
|
||||||
[
|
[
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -12,12 +12,12 @@ const CONFIG = {
|
|||||||
model: process.env.MODEL || 'claude-3-7-sonnet-20250219',
|
model: process.env.MODEL || 'claude-3-7-sonnet-20250219',
|
||||||
maxTokens: parseInt(process.env.MAX_TOKENS || '4000'),
|
maxTokens: parseInt(process.env.MAX_TOKENS || '4000'),
|
||||||
temperature: parseFloat(process.env.TEMPERATURE || '0.7'),
|
temperature: parseFloat(process.env.TEMPERATURE || '0.7'),
|
||||||
debug: process.env.DEBUG === "true",
|
debug: process.env.DEBUG === 'true',
|
||||||
logLevel: process.env.LOG_LEVEL || "info",
|
logLevel: process.env.LOG_LEVEL || 'info',
|
||||||
defaultSubtasks: parseInt(process.env.DEFAULT_SUBTASKS || "3"),
|
defaultSubtasks: parseInt(process.env.DEFAULT_SUBTASKS || '3'),
|
||||||
defaultPriority: process.env.DEFAULT_PRIORITY || "medium",
|
defaultPriority: process.env.DEFAULT_PRIORITY || 'medium',
|
||||||
projectName: process.env.PROJECT_NAME || "Task Master",
|
projectName: process.env.PROJECT_NAME || 'Task Master',
|
||||||
projectVersion: "1.5.0" // Hardcoded version - ALWAYS use this value, ignore environment variable
|
projectVersion: '1.5.0' // Hardcoded version - ALWAYS use this value, ignore environment variable
|
||||||
};
|
};
|
||||||
|
|
||||||
// Set up logging based on log level
|
// Set up logging based on log level
|
||||||
@@ -99,7 +99,9 @@ function sanitizePrompt(prompt) {
|
|||||||
*/
|
*/
|
||||||
function readComplexityReport(customPath = null) {
|
function readComplexityReport(customPath = null) {
|
||||||
try {
|
try {
|
||||||
const reportPath = customPath || path.join(process.cwd(), 'scripts', 'task-complexity-report.json');
|
const reportPath =
|
||||||
|
customPath ||
|
||||||
|
path.join(process.cwd(), 'scripts', 'task-complexity-report.json');
|
||||||
if (!fs.existsSync(reportPath)) {
|
if (!fs.existsSync(reportPath)) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
@@ -119,11 +121,15 @@ function readComplexityReport(customPath = null) {
|
|||||||
* @returns {Object|null} The task analysis or null if not found
|
* @returns {Object|null} The task analysis or null if not found
|
||||||
*/
|
*/
|
||||||
function findTaskInComplexityReport(report, taskId) {
|
function findTaskInComplexityReport(report, taskId) {
|
||||||
if (!report || !report.complexityAnalysis || !Array.isArray(report.complexityAnalysis)) {
|
if (
|
||||||
|
!report ||
|
||||||
|
!report.complexityAnalysis ||
|
||||||
|
!Array.isArray(report.complexityAnalysis)
|
||||||
|
) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
return report.complexityAnalysis.find(task => task.taskId === taskId);
|
return report.complexityAnalysis.find((task) => task.taskId === taskId);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -139,18 +145,20 @@ function taskExists(tasks, taskId) {
|
|||||||
|
|
||||||
// Handle both regular task IDs and subtask IDs (e.g., "1.2")
|
// Handle both regular task IDs and subtask IDs (e.g., "1.2")
|
||||||
if (typeof taskId === 'string' && taskId.includes('.')) {
|
if (typeof taskId === 'string' && taskId.includes('.')) {
|
||||||
const [parentId, subtaskId] = taskId.split('.').map(id => parseInt(id, 10));
|
const [parentId, subtaskId] = taskId
|
||||||
const parentTask = tasks.find(t => t.id === parentId);
|
.split('.')
|
||||||
|
.map((id) => parseInt(id, 10));
|
||||||
|
const parentTask = tasks.find((t) => t.id === parentId);
|
||||||
|
|
||||||
if (!parentTask || !parentTask.subtasks) {
|
if (!parentTask || !parentTask.subtasks) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
return parentTask.subtasks.some(st => st.id === subtaskId);
|
return parentTask.subtasks.some((st) => st.id === subtaskId);
|
||||||
}
|
}
|
||||||
|
|
||||||
const id = parseInt(taskId, 10);
|
const id = parseInt(taskId, 10);
|
||||||
return tasks.some(t => t.id === id);
|
return tasks.some((t) => t.id === id);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -183,14 +191,16 @@ function findTaskById(tasks, taskId) {
|
|||||||
|
|
||||||
// Check if it's a subtask ID (e.g., "1.2")
|
// Check if it's a subtask ID (e.g., "1.2")
|
||||||
if (typeof taskId === 'string' && taskId.includes('.')) {
|
if (typeof taskId === 'string' && taskId.includes('.')) {
|
||||||
const [parentId, subtaskId] = taskId.split('.').map(id => parseInt(id, 10));
|
const [parentId, subtaskId] = taskId
|
||||||
const parentTask = tasks.find(t => t.id === parentId);
|
.split('.')
|
||||||
|
.map((id) => parseInt(id, 10));
|
||||||
|
const parentTask = tasks.find((t) => t.id === parentId);
|
||||||
|
|
||||||
if (!parentTask || !parentTask.subtasks) {
|
if (!parentTask || !parentTask.subtasks) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
const subtask = parentTask.subtasks.find(st => st.id === subtaskId);
|
const subtask = parentTask.subtasks.find((st) => st.id === subtaskId);
|
||||||
if (subtask) {
|
if (subtask) {
|
||||||
// Add reference to parent task for context
|
// Add reference to parent task for context
|
||||||
subtask.parentTask = {
|
subtask.parentTask = {
|
||||||
@@ -205,7 +215,7 @@ function findTaskById(tasks, taskId) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const id = parseInt(taskId, 10);
|
const id = parseInt(taskId, 10);
|
||||||
return tasks.find(t => t.id === id) || null;
|
return tasks.find((t) => t.id === id) || null;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -230,7 +240,13 @@ function truncate(text, maxLength) {
|
|||||||
* @param {Set} recursionStack - Set of nodes in current recursion stack
|
* @param {Set} recursionStack - Set of nodes in current recursion stack
|
||||||
* @returns {Array} - List of dependency edges that need to be removed to break cycles
|
* @returns {Array} - List of dependency edges that need to be removed to break cycles
|
||||||
*/
|
*/
|
||||||
function findCycles(subtaskId, dependencyMap, visited = new Set(), recursionStack = new Set(), path = []) {
|
function findCycles(
|
||||||
|
subtaskId,
|
||||||
|
dependencyMap,
|
||||||
|
visited = new Set(),
|
||||||
|
recursionStack = new Set(),
|
||||||
|
path = []
|
||||||
|
) {
|
||||||
// Mark the current node as visited and part of recursion stack
|
// Mark the current node as visited and part of recursion stack
|
||||||
visited.add(subtaskId);
|
visited.add(subtaskId);
|
||||||
recursionStack.add(subtaskId);
|
recursionStack.add(subtaskId);
|
||||||
@@ -245,7 +261,9 @@ function findCycles(subtaskId, dependencyMap, visited = new Set(), recursionStac
|
|||||||
for (const depId of dependencies) {
|
for (const depId of dependencies) {
|
||||||
// If not visited, recursively check for cycles
|
// If not visited, recursively check for cycles
|
||||||
if (!visited.has(depId)) {
|
if (!visited.has(depId)) {
|
||||||
const cycles = findCycles(depId, dependencyMap, visited, recursionStack, [...path]);
|
const cycles = findCycles(depId, dependencyMap, visited, recursionStack, [
|
||||||
|
...path
|
||||||
|
]);
|
||||||
cyclesToBreak.push(...cycles);
|
cyclesToBreak.push(...cycles);
|
||||||
}
|
}
|
||||||
// If the dependency is in the recursion stack, we found a cycle
|
// If the dependency is in the recursion stack, we found a cycle
|
||||||
|
|||||||
@@ -35,12 +35,14 @@ const COLORS = {
|
|||||||
|
|
||||||
// Parse command line arguments
|
// Parse command line arguments
|
||||||
const args = process.argv.slice(2);
|
const args = process.argv.slice(2);
|
||||||
const versionBump = args.includes('--major') ? 'major' :
|
const versionBump = args.includes('--major')
|
||||||
args.includes('--minor') ? 'minor' :
|
? 'major'
|
||||||
'patch';
|
: args.includes('--minor')
|
||||||
|
? 'minor'
|
||||||
|
: 'patch';
|
||||||
|
|
||||||
// Check for explicit version
|
// Check for explicit version
|
||||||
const versionArg = args.find(arg => arg.startsWith('--version='));
|
const versionArg = args.find((arg) => arg.startsWith('--version='));
|
||||||
const explicitVersion = versionArg ? versionArg.split('=')[1] : null;
|
const explicitVersion = versionArg ? versionArg.split('=')[1] : null;
|
||||||
|
|
||||||
// Log function with color support
|
// Log function with color support
|
||||||
@@ -75,7 +77,10 @@ function ensureExecutable(filePath) {
|
|||||||
// Function to sync template files
|
// Function to sync template files
|
||||||
function syncTemplateFiles() {
|
function syncTemplateFiles() {
|
||||||
// We no longer need to sync files since we're using them directly
|
// We no longer need to sync files since we're using them directly
|
||||||
log('info', 'Template syncing has been deprecated - using source files directly');
|
log(
|
||||||
|
'info',
|
||||||
|
'Template syncing has been deprecated - using source files directly'
|
||||||
|
);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -107,10 +112,16 @@ function preparePackage() {
|
|||||||
let newVersion;
|
let newVersion;
|
||||||
if (explicitVersion) {
|
if (explicitVersion) {
|
||||||
newVersion = explicitVersion;
|
newVersion = explicitVersion;
|
||||||
log('info', `Setting version to specified ${newVersion} (was ${currentVersion})`);
|
log(
|
||||||
|
'info',
|
||||||
|
`Setting version to specified ${newVersion} (was ${currentVersion})`
|
||||||
|
);
|
||||||
} else {
|
} else {
|
||||||
newVersion = incrementVersion(currentVersion, versionBump);
|
newVersion = incrementVersion(currentVersion, versionBump);
|
||||||
log('info', `Incrementing ${versionBump} version to ${newVersion} (was ${currentVersion})`);
|
log(
|
||||||
|
'info',
|
||||||
|
`Incrementing ${versionBump} version to ${newVersion} (was ${currentVersion})`
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
packageJson.version = newVersion;
|
packageJson.version = newVersion;
|
||||||
@@ -143,15 +154,15 @@ function preparePackage() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (!allFilesExist) {
|
if (!allFilesExist) {
|
||||||
log('error', 'Some required files are missing. Package preparation failed.');
|
log(
|
||||||
|
'error',
|
||||||
|
'Some required files are missing. Package preparation failed.'
|
||||||
|
);
|
||||||
process.exit(1);
|
process.exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Ensure scripts are executable
|
// Ensure scripts are executable
|
||||||
const executableScripts = [
|
const executableScripts = ['scripts/init.js', 'scripts/dev.js'];
|
||||||
'scripts/init.js',
|
|
||||||
'scripts/dev.js'
|
|
||||||
];
|
|
||||||
|
|
||||||
let allScriptsExecutable = true;
|
let allScriptsExecutable = true;
|
||||||
for (const script of executableScripts) {
|
for (const script of executableScripts) {
|
||||||
@@ -162,7 +173,10 @@ function preparePackage() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (!allScriptsExecutable) {
|
if (!allScriptsExecutable) {
|
||||||
log('warn', 'Some scripts could not be made executable. This may cause issues.');
|
log(
|
||||||
|
'warn',
|
||||||
|
'Some scripts could not be made executable. This may cause issues.'
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Run npm pack to test package creation
|
// Run npm pack to test package creation
|
||||||
|
|||||||
@@ -44,7 +44,8 @@ function createErrorSimulationScript(errorType, failureCount = 2) {
|
|||||||
let modifiedContent = devJsContent;
|
let modifiedContent = devJsContent;
|
||||||
|
|
||||||
// Find the anthropic.messages.create call and replace it with our mock
|
// Find the anthropic.messages.create call and replace it with our mock
|
||||||
const anthropicCallRegex = /const response = await anthropic\.messages\.create\(/;
|
const anthropicCallRegex =
|
||||||
|
/const response = await anthropic\.messages\.create\(/;
|
||||||
|
|
||||||
let mockCode = '';
|
let mockCode = '';
|
||||||
|
|
||||||
@@ -162,13 +163,18 @@ async function runErrorTest(errorType, numTasks = 5, failureCount = 2) {
|
|||||||
|
|
||||||
console.log(`Created test PRD at ${testPRDPath}`);
|
console.log(`Created test PRD at ${testPRDPath}`);
|
||||||
console.log(`Created error simulation script at ${tempScriptPath}`);
|
console.log(`Created error simulation script at ${tempScriptPath}`);
|
||||||
console.log(`Running with error type: ${errorType}, failure count: ${failureCount}, tasks: ${numTasks}`);
|
console.log(
|
||||||
|
`Running with error type: ${errorType}, failure count: ${failureCount}, tasks: ${numTasks}`
|
||||||
|
);
|
||||||
|
|
||||||
try {
|
try {
|
||||||
// Run the modified script
|
// Run the modified script
|
||||||
execSync(`node ${tempScriptPath} parse-prd --input=${testPRDPath} --tasks=${numTasks}`, {
|
execSync(
|
||||||
|
`node ${tempScriptPath} parse-prd --input=${testPRDPath} --tasks=${numTasks}`,
|
||||||
|
{
|
||||||
stdio: 'inherit'
|
stdio: 'inherit'
|
||||||
});
|
}
|
||||||
|
);
|
||||||
console.log(`${errorType} error test completed successfully`);
|
console.log(`${errorType} error test completed successfully`);
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.error(`${errorType} error test failed:`, error.message);
|
console.error(`${errorType} error test failed:`, error.message);
|
||||||
@@ -206,7 +212,7 @@ async function runAllErrorTests() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Run the tests
|
// Run the tests
|
||||||
runAllErrorTests().catch(error => {
|
runAllErrorTests().catch((error) => {
|
||||||
console.error('Error running tests:', error);
|
console.error('Error running tests:', error);
|
||||||
process.exit(1);
|
process.exit(1);
|
||||||
});
|
});
|
||||||
@@ -157,9 +157,12 @@ async function runTests() {
|
|||||||
const { execSync } = await import('child_process');
|
const { execSync } = await import('child_process');
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const smallResult = execSync(`node ${path.join(__dirname, 'dev.js')} parse-prd --input=${smallPRDPath} --tasks=5`, {
|
const smallResult = execSync(
|
||||||
|
`node ${path.join(__dirname, 'dev.js')} parse-prd --input=${smallPRDPath} --tasks=5`,
|
||||||
|
{
|
||||||
stdio: 'inherit'
|
stdio: 'inherit'
|
||||||
});
|
}
|
||||||
|
);
|
||||||
console.log('Small PRD test completed successfully');
|
console.log('Small PRD test completed successfully');
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.error('Small PRD test failed:', error.message);
|
console.error('Small PRD test failed:', error.message);
|
||||||
@@ -175,9 +178,12 @@ async function runTests() {
|
|||||||
console.log('Running dev.js with medium PRD...');
|
console.log('Running dev.js with medium PRD...');
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const mediumResult = execSync(`node ${path.join(__dirname, 'dev.js')} parse-prd --input=${mediumPRDPath} --tasks=15`, {
|
const mediumResult = execSync(
|
||||||
|
`node ${path.join(__dirname, 'dev.js')} parse-prd --input=${mediumPRDPath} --tasks=15`,
|
||||||
|
{
|
||||||
stdio: 'inherit'
|
stdio: 'inherit'
|
||||||
});
|
}
|
||||||
|
);
|
||||||
console.log('Medium PRD test completed successfully');
|
console.log('Medium PRD test completed successfully');
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.error('Medium PRD test failed:', error.message);
|
console.error('Medium PRD test failed:', error.message);
|
||||||
@@ -193,9 +199,12 @@ async function runTests() {
|
|||||||
console.log('Running dev.js with large PRD...');
|
console.log('Running dev.js with large PRD...');
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const largeResult = execSync(`node ${path.join(__dirname, 'dev.js')} parse-prd --input=${largePRDPath} --tasks=25`, {
|
const largeResult = execSync(
|
||||||
|
`node ${path.join(__dirname, 'dev.js')} parse-prd --input=${largePRDPath} --tasks=25`,
|
||||||
|
{
|
||||||
stdio: 'inherit'
|
stdio: 'inherit'
|
||||||
});
|
}
|
||||||
|
);
|
||||||
console.log('Large PRD test completed successfully');
|
console.log('Large PRD test completed successfully');
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.error('Large PRD test failed:', error.message);
|
console.error('Large PRD test failed:', error.message);
|
||||||
@@ -213,7 +222,7 @@ async function runTests() {
|
|||||||
path.join(__dirname, 'test-large-prd.txt')
|
path.join(__dirname, 'test-large-prd.txt')
|
||||||
];
|
];
|
||||||
|
|
||||||
testFiles.forEach(file => {
|
testFiles.forEach((file) => {
|
||||||
if (fs.existsSync(file)) {
|
if (fs.existsSync(file)) {
|
||||||
fs.unlinkSync(file);
|
fs.unlinkSync(file);
|
||||||
console.log(`Deleted ${file}`);
|
console.log(`Deleted ${file}`);
|
||||||
@@ -225,7 +234,7 @@ async function runTests() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Run the tests
|
// Run the tests
|
||||||
runTests().catch(error => {
|
runTests().catch((error) => {
|
||||||
console.error('Error running tests:', error);
|
console.error('Error running tests:', error);
|
||||||
process.exit(1);
|
process.exit(1);
|
||||||
});
|
});
|
||||||
@@ -1,4 +1,8 @@
|
|||||||
import { checkForUpdate, displayUpgradeNotification, compareVersions } from './scripts/modules/commands.js';
|
import {
|
||||||
|
checkForUpdate,
|
||||||
|
displayUpgradeNotification,
|
||||||
|
compareVersions
|
||||||
|
} from './scripts/modules/commands.js';
|
||||||
import fs from 'fs';
|
import fs from 'fs';
|
||||||
import path from 'path';
|
import path from 'path';
|
||||||
|
|
||||||
@@ -20,7 +24,8 @@ async function testCheckForUpdate(simulatedLatestVersion) {
|
|||||||
console.log(`Using simulated latest version: ${simulatedLatestVersion}`);
|
console.log(`Using simulated latest version: ${simulatedLatestVersion}`);
|
||||||
|
|
||||||
// Compare versions
|
// Compare versions
|
||||||
const needsUpdate = compareVersions(currentVersion, simulatedLatestVersion) < 0;
|
const needsUpdate =
|
||||||
|
compareVersions(currentVersion, simulatedLatestVersion) < 0;
|
||||||
|
|
||||||
return {
|
return {
|
||||||
currentVersion,
|
currentVersion,
|
||||||
@@ -34,7 +39,9 @@ async function runTest() {
|
|||||||
console.log('=== Testing version check scenarios ===\n');
|
console.log('=== Testing version check scenarios ===\n');
|
||||||
|
|
||||||
// Scenario 1: Update available
|
// Scenario 1: Update available
|
||||||
console.log('\n--- Scenario 1: Update available (Current: 0.9.30, Latest: 1.0.0) ---');
|
console.log(
|
||||||
|
'\n--- Scenario 1: Update available (Current: 0.9.30, Latest: 1.0.0) ---'
|
||||||
|
);
|
||||||
const updateInfo1 = await testCheckForUpdate('1.0.0');
|
const updateInfo1 = await testCheckForUpdate('1.0.0');
|
||||||
console.log('Update check results:');
|
console.log('Update check results:');
|
||||||
console.log(`- Current version: ${updateInfo1.currentVersion}`);
|
console.log(`- Current version: ${updateInfo1.currentVersion}`);
|
||||||
@@ -43,11 +50,16 @@ async function runTest() {
|
|||||||
|
|
||||||
if (updateInfo1.needsUpdate) {
|
if (updateInfo1.needsUpdate) {
|
||||||
console.log('\nDisplaying upgrade notification:');
|
console.log('\nDisplaying upgrade notification:');
|
||||||
displayUpgradeNotification(updateInfo1.currentVersion, updateInfo1.latestVersion);
|
displayUpgradeNotification(
|
||||||
|
updateInfo1.currentVersion,
|
||||||
|
updateInfo1.latestVersion
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Scenario 2: No update needed (versions equal)
|
// Scenario 2: No update needed (versions equal)
|
||||||
console.log('\n--- Scenario 2: No update needed (Current: 0.9.30, Latest: 0.9.30) ---');
|
console.log(
|
||||||
|
'\n--- Scenario 2: No update needed (Current: 0.9.30, Latest: 0.9.30) ---'
|
||||||
|
);
|
||||||
const updateInfo2 = await testCheckForUpdate('0.9.30');
|
const updateInfo2 = await testCheckForUpdate('0.9.30');
|
||||||
console.log('Update check results:');
|
console.log('Update check results:');
|
||||||
console.log(`- Current version: ${updateInfo2.currentVersion}`);
|
console.log(`- Current version: ${updateInfo2.currentVersion}`);
|
||||||
@@ -55,7 +67,9 @@ async function runTest() {
|
|||||||
console.log(`- Update needed: ${updateInfo2.needsUpdate}`);
|
console.log(`- Update needed: ${updateInfo2.needsUpdate}`);
|
||||||
|
|
||||||
// Scenario 3: Development version (current newer than latest)
|
// Scenario 3: Development version (current newer than latest)
|
||||||
console.log('\n--- Scenario 3: Development version (Current: 0.9.30, Latest: 0.9.0) ---');
|
console.log(
|
||||||
|
'\n--- Scenario 3: Development version (Current: 0.9.30, Latest: 0.9.0) ---'
|
||||||
|
);
|
||||||
const updateInfo3 = await testCheckForUpdate('0.9.0');
|
const updateInfo3 = await testCheckForUpdate('0.9.0');
|
||||||
console.log('Update check results:');
|
console.log('Update check results:');
|
||||||
console.log(`- Current version: ${updateInfo3.currentVersion}`);
|
console.log(`- Current version: ${updateInfo3.currentVersion}`);
|
||||||
|
|||||||
@@ -1,4 +1,7 @@
|
|||||||
import { displayUpgradeNotification, compareVersions } from './scripts/modules/commands.js';
|
import {
|
||||||
|
displayUpgradeNotification,
|
||||||
|
compareVersions
|
||||||
|
} from './scripts/modules/commands.js';
|
||||||
|
|
||||||
// Simulate different version scenarios
|
// Simulate different version scenarios
|
||||||
console.log('=== Simulating version check ===\n');
|
console.log('=== Simulating version check ===\n');
|
||||||
@@ -8,15 +11,25 @@ console.log('Scenario 1: Current version older than latest');
|
|||||||
displayUpgradeNotification('0.9.30', '1.0.0');
|
displayUpgradeNotification('0.9.30', '1.0.0');
|
||||||
|
|
||||||
// 2. Current version same as latest (no update needed)
|
// 2. Current version same as latest (no update needed)
|
||||||
console.log('\nScenario 2: Current version same as latest (this would not normally show a notice)');
|
console.log(
|
||||||
|
'\nScenario 2: Current version same as latest (this would not normally show a notice)'
|
||||||
|
);
|
||||||
console.log('Current: 1.0.0, Latest: 1.0.0');
|
console.log('Current: 1.0.0, Latest: 1.0.0');
|
||||||
console.log('compareVersions result:', compareVersions('1.0.0', '1.0.0'));
|
console.log('compareVersions result:', compareVersions('1.0.0', '1.0.0'));
|
||||||
console.log('Update needed:', compareVersions('1.0.0', '1.0.0') < 0 ? 'Yes' : 'No');
|
console.log(
|
||||||
|
'Update needed:',
|
||||||
|
compareVersions('1.0.0', '1.0.0') < 0 ? 'Yes' : 'No'
|
||||||
|
);
|
||||||
|
|
||||||
// 3. Current version newer than latest (e.g., development version, would not show notice)
|
// 3. Current version newer than latest (e.g., development version, would not show notice)
|
||||||
console.log('\nScenario 3: Current version newer than latest (this would not normally show a notice)');
|
console.log(
|
||||||
|
'\nScenario 3: Current version newer than latest (this would not normally show a notice)'
|
||||||
|
);
|
||||||
console.log('Current: 1.1.0, Latest: 1.0.0');
|
console.log('Current: 1.1.0, Latest: 1.0.0');
|
||||||
console.log('compareVersions result:', compareVersions('1.1.0', '1.0.0'));
|
console.log('compareVersions result:', compareVersions('1.1.0', '1.0.0'));
|
||||||
console.log('Update needed:', compareVersions('1.1.0', '1.0.0') < 0 ? 'Yes' : 'No');
|
console.log(
|
||||||
|
'Update needed:',
|
||||||
|
compareVersions('1.1.0', '1.0.0') < 0 ? 'Yes' : 'No'
|
||||||
|
);
|
||||||
|
|
||||||
console.log('\n=== Test complete ===');
|
console.log('\n=== Test complete ===');
|
||||||
50
tests/fixtures/sample-claude-response.js
vendored
50
tests/fixtures/sample-claude-response.js
vendored
@@ -6,39 +6,47 @@ export const sampleClaudeResponse = {
|
|||||||
tasks: [
|
tasks: [
|
||||||
{
|
{
|
||||||
id: 1,
|
id: 1,
|
||||||
title: "Setup Task Data Structure",
|
title: 'Setup Task Data Structure',
|
||||||
description: "Implement the core task data structure and file operations",
|
description: 'Implement the core task data structure and file operations',
|
||||||
status: "pending",
|
status: 'pending',
|
||||||
dependencies: [],
|
dependencies: [],
|
||||||
priority: "high",
|
priority: 'high',
|
||||||
details: "Create the tasks.json file structure with support for task properties including ID, title, description, status, dependencies, priority, details, and test strategy. Implement file system operations for reading and writing task data.",
|
details:
|
||||||
testStrategy: "Verify tasks.json is created with the correct structure and that task data can be read from and written to the file."
|
'Create the tasks.json file structure with support for task properties including ID, title, description, status, dependencies, priority, details, and test strategy. Implement file system operations for reading and writing task data.',
|
||||||
|
testStrategy:
|
||||||
|
'Verify tasks.json is created with the correct structure and that task data can be read from and written to the file.'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 2,
|
id: 2,
|
||||||
title: "Implement CLI Foundation",
|
title: 'Implement CLI Foundation',
|
||||||
description: "Create the command-line interface foundation with basic commands",
|
description:
|
||||||
status: "pending",
|
'Create the command-line interface foundation with basic commands',
|
||||||
|
status: 'pending',
|
||||||
dependencies: [1],
|
dependencies: [1],
|
||||||
priority: "high",
|
priority: 'high',
|
||||||
details: "Set up Commander.js for handling CLI commands. Implement the basic command structure including help documentation. Create the foundational command parsing logic.",
|
details:
|
||||||
testStrategy: "Test each command to ensure it properly parses arguments and options. Verify help documentation is displayed correctly."
|
'Set up Commander.js for handling CLI commands. Implement the basic command structure including help documentation. Create the foundational command parsing logic.',
|
||||||
|
testStrategy:
|
||||||
|
'Test each command to ensure it properly parses arguments and options. Verify help documentation is displayed correctly.'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 3,
|
id: 3,
|
||||||
title: "Develop Task Management Operations",
|
title: 'Develop Task Management Operations',
|
||||||
description: "Implement core operations for creating, reading, updating, and deleting tasks",
|
description:
|
||||||
status: "pending",
|
'Implement core operations for creating, reading, updating, and deleting tasks',
|
||||||
|
status: 'pending',
|
||||||
dependencies: [1],
|
dependencies: [1],
|
||||||
priority: "medium",
|
priority: 'medium',
|
||||||
details: "Implement functions for listing tasks, adding new tasks, updating task status, and removing tasks. Include support for filtering tasks by status and other properties.",
|
details:
|
||||||
testStrategy: "Create unit tests for each CRUD operation to verify they correctly modify the task data."
|
'Implement functions for listing tasks, adding new tasks, updating task status, and removing tasks. Include support for filtering tasks by status and other properties.',
|
||||||
|
testStrategy:
|
||||||
|
'Create unit tests for each CRUD operation to verify they correctly modify the task data.'
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
metadata: {
|
metadata: {
|
||||||
projectName: "Task Management CLI",
|
projectName: 'Task Management CLI',
|
||||||
totalTasks: 3,
|
totalTasks: 3,
|
||||||
sourceFile: "tests/fixtures/sample-prd.txt",
|
sourceFile: 'tests/fixtures/sample-prd.txt',
|
||||||
generatedAt: "2023-12-15"
|
generatedAt: '2023-12-15'
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
70
tests/fixtures/sample-tasks.js
vendored
70
tests/fixtures/sample-tasks.js
vendored
@@ -4,57 +4,59 @@
|
|||||||
|
|
||||||
export const sampleTasks = {
|
export const sampleTasks = {
|
||||||
meta: {
|
meta: {
|
||||||
projectName: "Test Project",
|
projectName: 'Test Project',
|
||||||
projectVersion: "1.0.0",
|
projectVersion: '1.0.0',
|
||||||
createdAt: "2023-01-01T00:00:00.000Z",
|
createdAt: '2023-01-01T00:00:00.000Z',
|
||||||
updatedAt: "2023-01-01T00:00:00.000Z"
|
updatedAt: '2023-01-01T00:00:00.000Z'
|
||||||
},
|
},
|
||||||
tasks: [
|
tasks: [
|
||||||
{
|
{
|
||||||
id: 1,
|
id: 1,
|
||||||
title: "Initialize Project",
|
title: 'Initialize Project',
|
||||||
description: "Set up the project structure and dependencies",
|
description: 'Set up the project structure and dependencies',
|
||||||
status: "done",
|
status: 'done',
|
||||||
dependencies: [],
|
dependencies: [],
|
||||||
priority: "high",
|
priority: 'high',
|
||||||
details: "Create directory structure, initialize package.json, and install dependencies",
|
details:
|
||||||
testStrategy: "Verify all directories and files are created correctly"
|
'Create directory structure, initialize package.json, and install dependencies',
|
||||||
|
testStrategy: 'Verify all directories and files are created correctly'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 2,
|
id: 2,
|
||||||
title: "Create Core Functionality",
|
title: 'Create Core Functionality',
|
||||||
description: "Implement the main features of the application",
|
description: 'Implement the main features of the application',
|
||||||
status: "in-progress",
|
status: 'in-progress',
|
||||||
dependencies: [1],
|
dependencies: [1],
|
||||||
priority: "high",
|
priority: 'high',
|
||||||
details: "Implement user authentication, data processing, and API endpoints",
|
details:
|
||||||
testStrategy: "Write unit tests for all core functions"
|
'Implement user authentication, data processing, and API endpoints',
|
||||||
|
testStrategy: 'Write unit tests for all core functions'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 3,
|
id: 3,
|
||||||
title: "Implement UI Components",
|
title: 'Implement UI Components',
|
||||||
description: "Create the user interface components",
|
description: 'Create the user interface components',
|
||||||
status: "pending",
|
status: 'pending',
|
||||||
dependencies: [2],
|
dependencies: [2],
|
||||||
priority: "medium",
|
priority: 'medium',
|
||||||
details: "Design and implement React components for the user interface",
|
details: 'Design and implement React components for the user interface',
|
||||||
testStrategy: "Test components with React Testing Library",
|
testStrategy: 'Test components with React Testing Library',
|
||||||
subtasks: [
|
subtasks: [
|
||||||
{
|
{
|
||||||
id: 1,
|
id: 1,
|
||||||
title: "Create Header Component",
|
title: 'Create Header Component',
|
||||||
description: "Implement the header component",
|
description: 'Implement the header component',
|
||||||
status: "pending",
|
status: 'pending',
|
||||||
dependencies: [],
|
dependencies: [],
|
||||||
details: "Create a responsive header with navigation links"
|
details: 'Create a responsive header with navigation links'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 2,
|
id: 2,
|
||||||
title: "Create Footer Component",
|
title: 'Create Footer Component',
|
||||||
description: "Implement the footer component",
|
description: 'Implement the footer component',
|
||||||
status: "pending",
|
status: 'pending',
|
||||||
dependencies: [],
|
dependencies: [],
|
||||||
details: "Create a footer with copyright information and links"
|
details: 'Create a footer with copyright information and links'
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -63,10 +65,10 @@ export const sampleTasks = {
|
|||||||
|
|
||||||
export const emptySampleTasks = {
|
export const emptySampleTasks = {
|
||||||
meta: {
|
meta: {
|
||||||
projectName: "Empty Project",
|
projectName: 'Empty Project',
|
||||||
projectVersion: "1.0.0",
|
projectVersion: '1.0.0',
|
||||||
createdAt: "2023-01-01T00:00:00.000Z",
|
createdAt: '2023-01-01T00:00:00.000Z',
|
||||||
updatedAt: "2023-01-01T00:00:00.000Z"
|
updatedAt: '2023-01-01T00:00:00.000Z'
|
||||||
},
|
},
|
||||||
tasks: []
|
tasks: []
|
||||||
};
|
};
|
||||||
@@ -160,7 +160,7 @@ describe('MCP Server Direct Functions', () => {
|
|||||||
expect(result.success).toBe(true);
|
expect(result.success).toBe(true);
|
||||||
|
|
||||||
// Verify subtasks are included
|
// Verify subtasks are included
|
||||||
const taskWithSubtasks = result.data.tasks.find(t => t.id === 2);
|
const taskWithSubtasks = result.data.tasks.find((t) => t.id === 2);
|
||||||
expect(taskWithSubtasks.subtasks).toBeDefined();
|
expect(taskWithSubtasks.subtasks).toBeDefined();
|
||||||
expect(taskWithSubtasks.subtasks.length).toBe(2);
|
expect(taskWithSubtasks.subtasks.length).toBe(2);
|
||||||
|
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ process.env.PROJECT_NAME = 'Test Project';
|
|||||||
process.env.PROJECT_VERSION = '1.0.0';
|
process.env.PROJECT_VERSION = '1.0.0';
|
||||||
|
|
||||||
// Add global test helpers if needed
|
// Add global test helpers if needed
|
||||||
global.wait = (ms) => new Promise(resolve => setTimeout(resolve, ms));
|
global.wait = (ms) => new Promise((resolve) => setTimeout(resolve, ms));
|
||||||
|
|
||||||
// If needed, silence console during tests
|
// If needed, silence console during tests
|
||||||
if (process.env.SILENCE_CONSOLE === 'true') {
|
if (process.env.SILENCE_CONSOLE === 'true') {
|
||||||
@@ -25,6 +25,6 @@ if (process.env.SILENCE_CONSOLE === 'true') {
|
|||||||
log: jest.fn(),
|
log: jest.fn(),
|
||||||
info: jest.fn(),
|
info: jest.fn(),
|
||||||
warn: jest.fn(),
|
warn: jest.fn(),
|
||||||
error: jest.fn(),
|
error: jest.fn()
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
@@ -11,14 +11,16 @@ const mockLog = jest.fn();
|
|||||||
// Mock dependencies
|
// Mock dependencies
|
||||||
jest.mock('@anthropic-ai/sdk', () => {
|
jest.mock('@anthropic-ai/sdk', () => {
|
||||||
const mockCreate = jest.fn().mockResolvedValue({
|
const mockCreate = jest.fn().mockResolvedValue({
|
||||||
content: [{ text: 'AI response' }],
|
content: [{ text: 'AI response' }]
|
||||||
});
|
});
|
||||||
const mockAnthropicInstance = {
|
const mockAnthropicInstance = {
|
||||||
messages: {
|
messages: {
|
||||||
create: mockCreate
|
create: mockCreate
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
const mockAnthropicConstructor = jest.fn().mockImplementation(() => mockAnthropicInstance);
|
const mockAnthropicConstructor = jest
|
||||||
|
.fn()
|
||||||
|
.mockImplementation(() => mockAnthropicInstance);
|
||||||
return {
|
return {
|
||||||
Anthropic: mockAnthropicConstructor
|
Anthropic: mockAnthropicConstructor
|
||||||
};
|
};
|
||||||
@@ -29,10 +31,10 @@ const mockOpenAIInstance = {
|
|||||||
chat: {
|
chat: {
|
||||||
completions: {
|
completions: {
|
||||||
create: jest.fn().mockResolvedValue({
|
create: jest.fn().mockResolvedValue({
|
||||||
choices: [{ message: { content: 'Perplexity response' } }],
|
choices: [{ message: { content: 'Perplexity response' } }]
|
||||||
}),
|
})
|
||||||
},
|
}
|
||||||
},
|
}
|
||||||
};
|
};
|
||||||
const mockOpenAI = jest.fn().mockImplementation(() => mockOpenAIInstance);
|
const mockOpenAI = jest.fn().mockImplementation(() => mockOpenAIInstance);
|
||||||
|
|
||||||
@@ -41,31 +43,35 @@ jest.mock('openai', () => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
jest.mock('dotenv', () => ({
|
jest.mock('dotenv', () => ({
|
||||||
config: jest.fn(),
|
config: jest.fn()
|
||||||
}));
|
}));
|
||||||
|
|
||||||
jest.mock('../../scripts/modules/utils.js', () => ({
|
jest.mock('../../scripts/modules/utils.js', () => ({
|
||||||
CONFIG: {
|
CONFIG: {
|
||||||
model: 'claude-3-sonnet-20240229',
|
model: 'claude-3-sonnet-20240229',
|
||||||
temperature: 0.7,
|
temperature: 0.7,
|
||||||
maxTokens: 4000,
|
maxTokens: 4000
|
||||||
},
|
},
|
||||||
log: mockLog,
|
log: mockLog,
|
||||||
sanitizePrompt: jest.fn(text => text),
|
sanitizePrompt: jest.fn((text) => text)
|
||||||
}));
|
}));
|
||||||
|
|
||||||
jest.mock('../../scripts/modules/ui.js', () => ({
|
jest.mock('../../scripts/modules/ui.js', () => ({
|
||||||
startLoadingIndicator: jest.fn().mockReturnValue('mockLoader'),
|
startLoadingIndicator: jest.fn().mockReturnValue('mockLoader'),
|
||||||
stopLoadingIndicator: jest.fn(),
|
stopLoadingIndicator: jest.fn()
|
||||||
}));
|
}));
|
||||||
|
|
||||||
// Mock anthropic global object
|
// Mock anthropic global object
|
||||||
global.anthropic = {
|
global.anthropic = {
|
||||||
messages: {
|
messages: {
|
||||||
create: jest.fn().mockResolvedValue({
|
create: jest.fn().mockResolvedValue({
|
||||||
content: [{ text: '[{"id": 1, "title": "Test", "description": "Test", "dependencies": [], "details": "Test"}]' }],
|
content: [
|
||||||
}),
|
{
|
||||||
},
|
text: '[{"id": 1, "title": "Test", "description": "Test", "dependencies": [], "details": "Test"}]'
|
||||||
|
}
|
||||||
|
]
|
||||||
|
})
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// Mock process.env
|
// Mock process.env
|
||||||
@@ -393,7 +399,9 @@ These subtasks will help you implement the parent task efficiently.`;
|
|||||||
const fileContent = fs.readFileSync(filePath, 'utf8');
|
const fileContent = fs.readFileSync(filePath, 'utf8');
|
||||||
|
|
||||||
// Check if the beta header is in the file
|
// Check if the beta header is in the file
|
||||||
expect(fileContent).toContain("'anthropic-beta': 'output-128k-2025-02-19'");
|
expect(fileContent).toContain(
|
||||||
|
"'anthropic-beta': 'output-128k-2025-02-19'"
|
||||||
|
);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
@@ -26,14 +26,14 @@ jest.mock('path', () => ({
|
|||||||
}));
|
}));
|
||||||
|
|
||||||
jest.mock('chalk', () => ({
|
jest.mock('chalk', () => ({
|
||||||
red: jest.fn(text => text),
|
red: jest.fn((text) => text),
|
||||||
blue: jest.fn(text => text),
|
blue: jest.fn((text) => text),
|
||||||
green: jest.fn(text => text),
|
green: jest.fn((text) => text),
|
||||||
yellow: jest.fn(text => text),
|
yellow: jest.fn((text) => text),
|
||||||
white: jest.fn(text => ({
|
white: jest.fn((text) => ({
|
||||||
bold: jest.fn(text => text)
|
bold: jest.fn((text) => text)
|
||||||
})),
|
})),
|
||||||
reset: jest.fn(text => text)
|
reset: jest.fn((text) => text)
|
||||||
}));
|
}));
|
||||||
|
|
||||||
jest.mock('../../scripts/modules/ui.js', () => ({
|
jest.mock('../../scripts/modules/ui.js', () => ({
|
||||||
@@ -110,8 +110,12 @@ describe('Commands Module', () => {
|
|||||||
const mockExistsSync = jest.spyOn(fs, 'existsSync');
|
const mockExistsSync = jest.spyOn(fs, 'existsSync');
|
||||||
const mockReadFileSync = jest.spyOn(fs, 'readFileSync');
|
const mockReadFileSync = jest.spyOn(fs, 'readFileSync');
|
||||||
const mockJoin = jest.spyOn(path, 'join');
|
const mockJoin = jest.spyOn(path, 'join');
|
||||||
const mockConsoleLog = jest.spyOn(console, 'log').mockImplementation(() => {});
|
const mockConsoleLog = jest
|
||||||
const mockConsoleError = jest.spyOn(console, 'error').mockImplementation(() => {});
|
.spyOn(console, 'log')
|
||||||
|
.mockImplementation(() => {});
|
||||||
|
const mockConsoleError = jest
|
||||||
|
.spyOn(console, 'error')
|
||||||
|
.mockImplementation(() => {});
|
||||||
const mockExit = jest.spyOn(process, 'exit').mockImplementation(() => {});
|
const mockExit = jest.spyOn(process, 'exit').mockImplementation(() => {});
|
||||||
|
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
@@ -166,10 +170,9 @@ describe('Commands Module', () => {
|
|||||||
describe('Kebab Case Validation', () => {
|
describe('Kebab Case Validation', () => {
|
||||||
test('should detect camelCase flags correctly', () => {
|
test('should detect camelCase flags correctly', () => {
|
||||||
const args = ['node', 'task-master', '--camelCase', '--kebab-case'];
|
const args = ['node', 'task-master', '--camelCase', '--kebab-case'];
|
||||||
const camelCaseFlags = args.filter(arg =>
|
const camelCaseFlags = args.filter(
|
||||||
arg.startsWith('--') &&
|
(arg) =>
|
||||||
/[A-Z]/.test(arg) &&
|
arg.startsWith('--') && /[A-Z]/.test(arg) && !arg.includes('-[A-Z]')
|
||||||
!arg.includes('-[A-Z]')
|
|
||||||
);
|
);
|
||||||
expect(camelCaseFlags).toContain('--camelCase');
|
expect(camelCaseFlags).toContain('--camelCase');
|
||||||
expect(camelCaseFlags).not.toContain('--kebab-case');
|
expect(camelCaseFlags).not.toContain('--kebab-case');
|
||||||
@@ -177,10 +180,9 @@ describe('Commands Module', () => {
|
|||||||
|
|
||||||
test('should accept kebab-case flags correctly', () => {
|
test('should accept kebab-case flags correctly', () => {
|
||||||
const args = ['node', 'task-master', '--kebab-case'];
|
const args = ['node', 'task-master', '--kebab-case'];
|
||||||
const camelCaseFlags = args.filter(arg =>
|
const camelCaseFlags = args.filter(
|
||||||
arg.startsWith('--') &&
|
(arg) =>
|
||||||
/[A-Z]/.test(arg) &&
|
arg.startsWith('--') && /[A-Z]/.test(arg) && !arg.includes('-[A-Z]')
|
||||||
!arg.includes('-[A-Z]')
|
|
||||||
);
|
);
|
||||||
expect(camelCaseFlags).toHaveLength(0);
|
expect(camelCaseFlags).toHaveLength(0);
|
||||||
});
|
});
|
||||||
@@ -206,7 +208,11 @@ describe('Commands Module', () => {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
console.log(chalk.yellow('No PRD file specified and default PRD file not found at scripts/prd.txt.'));
|
console.log(
|
||||||
|
chalk.yellow(
|
||||||
|
'No PRD file specified and default PRD file not found at scripts/prd.txt.'
|
||||||
|
)
|
||||||
|
);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -229,11 +235,16 @@ describe('Commands Module', () => {
|
|||||||
mockExistsSync.mockReturnValue(true);
|
mockExistsSync.mockReturnValue(true);
|
||||||
|
|
||||||
// Act - call the handler directly with the right params
|
// Act - call the handler directly with the right params
|
||||||
await parsePrdAction(undefined, { numTasks: '10', output: 'tasks/tasks.json' });
|
await parsePrdAction(undefined, {
|
||||||
|
numTasks: '10',
|
||||||
|
output: 'tasks/tasks.json'
|
||||||
|
});
|
||||||
|
|
||||||
// Assert
|
// Assert
|
||||||
expect(mockExistsSync).toHaveBeenCalledWith('scripts/prd.txt');
|
expect(mockExistsSync).toHaveBeenCalledWith('scripts/prd.txt');
|
||||||
expect(mockConsoleLog).toHaveBeenCalledWith(expect.stringContaining('Using default PRD file'));
|
expect(mockConsoleLog).toHaveBeenCalledWith(
|
||||||
|
expect.stringContaining('Using default PRD file')
|
||||||
|
);
|
||||||
expect(mockParsePRD).toHaveBeenCalledWith(
|
expect(mockParsePRD).toHaveBeenCalledWith(
|
||||||
'scripts/prd.txt',
|
'scripts/prd.txt',
|
||||||
'tasks/tasks.json',
|
'tasks/tasks.json',
|
||||||
@@ -246,10 +257,15 @@ describe('Commands Module', () => {
|
|||||||
mockExistsSync.mockReturnValue(false);
|
mockExistsSync.mockReturnValue(false);
|
||||||
|
|
||||||
// Act - call the handler directly with the right params
|
// Act - call the handler directly with the right params
|
||||||
await parsePrdAction(undefined, { numTasks: '10', output: 'tasks/tasks.json' });
|
await parsePrdAction(undefined, {
|
||||||
|
numTasks: '10',
|
||||||
|
output: 'tasks/tasks.json'
|
||||||
|
});
|
||||||
|
|
||||||
// Assert
|
// Assert
|
||||||
expect(mockConsoleLog).toHaveBeenCalledWith(expect.stringContaining('No PRD file specified'));
|
expect(mockConsoleLog).toHaveBeenCalledWith(
|
||||||
|
expect.stringContaining('No PRD file specified')
|
||||||
|
);
|
||||||
expect(mockParsePRD).not.toHaveBeenCalled();
|
expect(mockParsePRD).not.toHaveBeenCalled();
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -258,11 +274,20 @@ describe('Commands Module', () => {
|
|||||||
const testFile = 'test/prd.txt';
|
const testFile = 'test/prd.txt';
|
||||||
|
|
||||||
// Act - call the handler directly with the right params
|
// Act - call the handler directly with the right params
|
||||||
await parsePrdAction(testFile, { numTasks: '10', output: 'tasks/tasks.json' });
|
await parsePrdAction(testFile, {
|
||||||
|
numTasks: '10',
|
||||||
|
output: 'tasks/tasks.json'
|
||||||
|
});
|
||||||
|
|
||||||
// Assert
|
// Assert
|
||||||
expect(mockConsoleLog).toHaveBeenCalledWith(expect.stringContaining(`Parsing PRD file: ${testFile}`));
|
expect(mockConsoleLog).toHaveBeenCalledWith(
|
||||||
expect(mockParsePRD).toHaveBeenCalledWith(testFile, 'tasks/tasks.json', 10);
|
expect.stringContaining(`Parsing PRD file: ${testFile}`)
|
||||||
|
);
|
||||||
|
expect(mockParsePRD).toHaveBeenCalledWith(
|
||||||
|
testFile,
|
||||||
|
'tasks/tasks.json',
|
||||||
|
10
|
||||||
|
);
|
||||||
expect(mockExistsSync).not.toHaveBeenCalledWith('scripts/prd.txt');
|
expect(mockExistsSync).not.toHaveBeenCalledWith('scripts/prd.txt');
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -271,11 +296,21 @@ describe('Commands Module', () => {
|
|||||||
const testFile = 'test/prd.txt';
|
const testFile = 'test/prd.txt';
|
||||||
|
|
||||||
// Act - call the handler directly with the right params
|
// Act - call the handler directly with the right params
|
||||||
await parsePrdAction(undefined, { input: testFile, numTasks: '10', output: 'tasks/tasks.json' });
|
await parsePrdAction(undefined, {
|
||||||
|
input: testFile,
|
||||||
|
numTasks: '10',
|
||||||
|
output: 'tasks/tasks.json'
|
||||||
|
});
|
||||||
|
|
||||||
// Assert
|
// Assert
|
||||||
expect(mockConsoleLog).toHaveBeenCalledWith(expect.stringContaining(`Parsing PRD file: ${testFile}`));
|
expect(mockConsoleLog).toHaveBeenCalledWith(
|
||||||
expect(mockParsePRD).toHaveBeenCalledWith(testFile, 'tasks/tasks.json', 10);
|
expect.stringContaining(`Parsing PRD file: ${testFile}`)
|
||||||
|
);
|
||||||
|
expect(mockParsePRD).toHaveBeenCalledWith(
|
||||||
|
testFile,
|
||||||
|
'tasks/tasks.json',
|
||||||
|
10
|
||||||
|
);
|
||||||
expect(mockExistsSync).not.toHaveBeenCalledWith('scripts/prd.txt');
|
expect(mockExistsSync).not.toHaveBeenCalledWith('scripts/prd.txt');
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -286,7 +321,10 @@ describe('Commands Module', () => {
|
|||||||
const numTasks = 15;
|
const numTasks = 15;
|
||||||
|
|
||||||
// Act - call the handler directly with the right params
|
// Act - call the handler directly with the right params
|
||||||
await parsePrdAction(testFile, { numTasks: numTasks.toString(), output: outputFile });
|
await parsePrdAction(testFile, {
|
||||||
|
numTasks: numTasks.toString(),
|
||||||
|
output: outputFile
|
||||||
|
});
|
||||||
|
|
||||||
// Assert
|
// Assert
|
||||||
expect(mockParsePRD).toHaveBeenCalledWith(testFile, outputFile, numTasks);
|
expect(mockParsePRD).toHaveBeenCalledWith(testFile, outputFile, numTasks);
|
||||||
@@ -303,7 +341,11 @@ describe('Commands Module', () => {
|
|||||||
// Validate required parameters
|
// Validate required parameters
|
||||||
if (!options.id) {
|
if (!options.id) {
|
||||||
console.error(chalk.red('Error: --id parameter is required'));
|
console.error(chalk.red('Error: --id parameter is required'));
|
||||||
console.log(chalk.yellow('Usage example: task-master update-task --id=23 --prompt="Update with new information"'));
|
console.log(
|
||||||
|
chalk.yellow(
|
||||||
|
'Usage example: task-master update-task --id=23 --prompt="Update with new information"'
|
||||||
|
)
|
||||||
|
);
|
||||||
process.exit(1);
|
process.exit(1);
|
||||||
return; // Add early return to prevent calling updateTaskById
|
return; // Add early return to prevent calling updateTaskById
|
||||||
}
|
}
|
||||||
@@ -311,15 +353,31 @@ describe('Commands Module', () => {
|
|||||||
// Parse the task ID and validate it's a number
|
// Parse the task ID and validate it's a number
|
||||||
const taskId = parseInt(options.id, 10);
|
const taskId = parseInt(options.id, 10);
|
||||||
if (isNaN(taskId) || taskId <= 0) {
|
if (isNaN(taskId) || taskId <= 0) {
|
||||||
console.error(chalk.red(`Error: Invalid task ID: ${options.id}. Task ID must be a positive integer.`));
|
console.error(
|
||||||
console.log(chalk.yellow('Usage example: task-master update-task --id=23 --prompt="Update with new information"'));
|
chalk.red(
|
||||||
|
`Error: Invalid task ID: ${options.id}. Task ID must be a positive integer.`
|
||||||
|
)
|
||||||
|
);
|
||||||
|
console.log(
|
||||||
|
chalk.yellow(
|
||||||
|
'Usage example: task-master update-task --id=23 --prompt="Update with new information"'
|
||||||
|
)
|
||||||
|
);
|
||||||
process.exit(1);
|
process.exit(1);
|
||||||
return; // Add early return to prevent calling updateTaskById
|
return; // Add early return to prevent calling updateTaskById
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!options.prompt) {
|
if (!options.prompt) {
|
||||||
console.error(chalk.red('Error: --prompt parameter is required. Please provide information about the changes.'));
|
console.error(
|
||||||
console.log(chalk.yellow('Usage example: task-master update-task --id=23 --prompt="Update with new information"'));
|
chalk.red(
|
||||||
|
'Error: --prompt parameter is required. Please provide information about the changes.'
|
||||||
|
)
|
||||||
|
);
|
||||||
|
console.log(
|
||||||
|
chalk.yellow(
|
||||||
|
'Usage example: task-master update-task --id=23 --prompt="Update with new information"'
|
||||||
|
)
|
||||||
|
);
|
||||||
process.exit(1);
|
process.exit(1);
|
||||||
return; // Add early return to prevent calling updateTaskById
|
return; // Add early return to prevent calling updateTaskById
|
||||||
}
|
}
|
||||||
@@ -329,48 +387,87 @@ describe('Commands Module', () => {
|
|||||||
|
|
||||||
// Validate tasks file exists
|
// Validate tasks file exists
|
||||||
if (!fs.existsSync(tasksPath)) {
|
if (!fs.existsSync(tasksPath)) {
|
||||||
console.error(chalk.red(`Error: Tasks file not found at path: ${tasksPath}`));
|
console.error(
|
||||||
|
chalk.red(`Error: Tasks file not found at path: ${tasksPath}`)
|
||||||
|
);
|
||||||
if (tasksPath === 'tasks/tasks.json') {
|
if (tasksPath === 'tasks/tasks.json') {
|
||||||
console.log(chalk.yellow('Hint: Run task-master init or task-master parse-prd to create tasks.json first'));
|
console.log(
|
||||||
|
chalk.yellow(
|
||||||
|
'Hint: Run task-master init or task-master parse-prd to create tasks.json first'
|
||||||
|
)
|
||||||
|
);
|
||||||
} else {
|
} else {
|
||||||
console.log(chalk.yellow(`Hint: Check if the file path is correct: ${tasksPath}`));
|
console.log(
|
||||||
|
chalk.yellow(
|
||||||
|
`Hint: Check if the file path is correct: ${tasksPath}`
|
||||||
|
)
|
||||||
|
);
|
||||||
}
|
}
|
||||||
process.exit(1);
|
process.exit(1);
|
||||||
return; // Add early return to prevent calling updateTaskById
|
return; // Add early return to prevent calling updateTaskById
|
||||||
}
|
}
|
||||||
|
|
||||||
console.log(chalk.blue(`Updating task ${taskId} with prompt: "${prompt}"`));
|
console.log(
|
||||||
|
chalk.blue(`Updating task ${taskId} with prompt: "${prompt}"`)
|
||||||
|
);
|
||||||
console.log(chalk.blue(`Tasks file: ${tasksPath}`));
|
console.log(chalk.blue(`Tasks file: ${tasksPath}`));
|
||||||
|
|
||||||
if (useResearch) {
|
if (useResearch) {
|
||||||
// Verify Perplexity API key exists if using research
|
// Verify Perplexity API key exists if using research
|
||||||
if (!process.env.PERPLEXITY_API_KEY) {
|
if (!process.env.PERPLEXITY_API_KEY) {
|
||||||
console.log(chalk.yellow('Warning: PERPLEXITY_API_KEY environment variable is missing. Research-backed updates will not be available.'));
|
console.log(
|
||||||
console.log(chalk.yellow('Falling back to Claude AI for task update.'));
|
chalk.yellow(
|
||||||
|
'Warning: PERPLEXITY_API_KEY environment variable is missing. Research-backed updates will not be available.'
|
||||||
|
)
|
||||||
|
);
|
||||||
|
console.log(
|
||||||
|
chalk.yellow('Falling back to Claude AI for task update.')
|
||||||
|
);
|
||||||
} else {
|
} else {
|
||||||
console.log(chalk.blue('Using Perplexity AI for research-backed task update'));
|
console.log(
|
||||||
|
chalk.blue('Using Perplexity AI for research-backed task update')
|
||||||
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const result = await mockUpdateTaskById(tasksPath, taskId, prompt, useResearch);
|
const result = await mockUpdateTaskById(
|
||||||
|
tasksPath,
|
||||||
|
taskId,
|
||||||
|
prompt,
|
||||||
|
useResearch
|
||||||
|
);
|
||||||
|
|
||||||
// If the task wasn't updated (e.g., if it was already marked as done)
|
// If the task wasn't updated (e.g., if it was already marked as done)
|
||||||
if (!result) {
|
if (!result) {
|
||||||
console.log(chalk.yellow('\nTask update was not completed. Review the messages above for details.'));
|
console.log(
|
||||||
|
chalk.yellow(
|
||||||
|
'\nTask update was not completed. Review the messages above for details.'
|
||||||
|
)
|
||||||
|
);
|
||||||
}
|
}
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.error(chalk.red(`Error: ${error.message}`));
|
console.error(chalk.red(`Error: ${error.message}`));
|
||||||
|
|
||||||
// Provide more helpful error messages for common issues
|
// Provide more helpful error messages for common issues
|
||||||
if (error.message.includes('task') && error.message.includes('not found')) {
|
if (
|
||||||
|
error.message.includes('task') &&
|
||||||
|
error.message.includes('not found')
|
||||||
|
) {
|
||||||
console.log(chalk.yellow('\nTo fix this issue:'));
|
console.log(chalk.yellow('\nTo fix this issue:'));
|
||||||
console.log(' 1. Run task-master list to see all available task IDs');
|
console.log(
|
||||||
|
' 1. Run task-master list to see all available task IDs'
|
||||||
|
);
|
||||||
console.log(' 2. Use a valid task ID with the --id parameter');
|
console.log(' 2. Use a valid task ID with the --id parameter');
|
||||||
} else if (error.message.includes('API key')) {
|
} else if (error.message.includes('API key')) {
|
||||||
console.log(chalk.yellow('\nThis error is related to API keys. Check your environment variables.'));
|
console.log(
|
||||||
|
chalk.yellow(
|
||||||
|
'\nThis error is related to API keys. Check your environment variables.'
|
||||||
|
)
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (true) { // CONFIG.debug
|
if (true) {
|
||||||
|
// CONFIG.debug
|
||||||
console.error(error);
|
console.error(error);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -397,7 +494,9 @@ describe('Commands Module', () => {
|
|||||||
await updateTaskAction(options);
|
await updateTaskAction(options);
|
||||||
|
|
||||||
// Verify validation error
|
// Verify validation error
|
||||||
expect(mockConsoleError).toHaveBeenCalledWith(expect.stringContaining('--id parameter is required'));
|
expect(mockConsoleError).toHaveBeenCalledWith(
|
||||||
|
expect.stringContaining('--id parameter is required')
|
||||||
|
);
|
||||||
expect(mockExit).toHaveBeenCalledWith(1);
|
expect(mockExit).toHaveBeenCalledWith(1);
|
||||||
expect(mockUpdateTaskById).not.toHaveBeenCalled();
|
expect(mockUpdateTaskById).not.toHaveBeenCalled();
|
||||||
});
|
});
|
||||||
@@ -414,7 +513,9 @@ describe('Commands Module', () => {
|
|||||||
await updateTaskAction(options);
|
await updateTaskAction(options);
|
||||||
|
|
||||||
// Verify validation error
|
// Verify validation error
|
||||||
expect(mockConsoleError).toHaveBeenCalledWith(expect.stringContaining('Invalid task ID'));
|
expect(mockConsoleError).toHaveBeenCalledWith(
|
||||||
|
expect.stringContaining('Invalid task ID')
|
||||||
|
);
|
||||||
expect(mockExit).toHaveBeenCalledWith(1);
|
expect(mockExit).toHaveBeenCalledWith(1);
|
||||||
expect(mockUpdateTaskById).not.toHaveBeenCalled();
|
expect(mockUpdateTaskById).not.toHaveBeenCalled();
|
||||||
});
|
});
|
||||||
@@ -430,7 +531,9 @@ describe('Commands Module', () => {
|
|||||||
await updateTaskAction(options);
|
await updateTaskAction(options);
|
||||||
|
|
||||||
// Verify validation error
|
// Verify validation error
|
||||||
expect(mockConsoleError).toHaveBeenCalledWith(expect.stringContaining('--prompt parameter is required'));
|
expect(mockConsoleError).toHaveBeenCalledWith(
|
||||||
|
expect.stringContaining('--prompt parameter is required')
|
||||||
|
);
|
||||||
expect(mockExit).toHaveBeenCalledWith(1);
|
expect(mockExit).toHaveBeenCalledWith(1);
|
||||||
expect(mockUpdateTaskById).not.toHaveBeenCalled();
|
expect(mockUpdateTaskById).not.toHaveBeenCalled();
|
||||||
});
|
});
|
||||||
@@ -450,7 +553,9 @@ describe('Commands Module', () => {
|
|||||||
await updateTaskAction(options);
|
await updateTaskAction(options);
|
||||||
|
|
||||||
// Verify validation error
|
// Verify validation error
|
||||||
expect(mockConsoleError).toHaveBeenCalledWith(expect.stringContaining('Tasks file not found'));
|
expect(mockConsoleError).toHaveBeenCalledWith(
|
||||||
|
expect.stringContaining('Tasks file not found')
|
||||||
|
);
|
||||||
expect(mockExit).toHaveBeenCalledWith(1);
|
expect(mockExit).toHaveBeenCalledWith(1);
|
||||||
expect(mockUpdateTaskById).not.toHaveBeenCalled();
|
expect(mockUpdateTaskById).not.toHaveBeenCalled();
|
||||||
});
|
});
|
||||||
@@ -479,8 +584,12 @@ describe('Commands Module', () => {
|
|||||||
);
|
);
|
||||||
|
|
||||||
// Verify console output
|
// Verify console output
|
||||||
expect(mockConsoleLog).toHaveBeenCalledWith(expect.stringContaining('Updating task 2'));
|
expect(mockConsoleLog).toHaveBeenCalledWith(
|
||||||
expect(mockConsoleLog).toHaveBeenCalledWith(expect.stringContaining('Using Perplexity AI'));
|
expect.stringContaining('Updating task 2')
|
||||||
|
);
|
||||||
|
expect(mockConsoleLog).toHaveBeenCalledWith(
|
||||||
|
expect.stringContaining('Using Perplexity AI')
|
||||||
|
);
|
||||||
|
|
||||||
// Clean up
|
// Clean up
|
||||||
delete process.env.PERPLEXITY_API_KEY;
|
delete process.env.PERPLEXITY_API_KEY;
|
||||||
@@ -504,7 +613,9 @@ describe('Commands Module', () => {
|
|||||||
expect(mockUpdateTaskById).toHaveBeenCalled();
|
expect(mockUpdateTaskById).toHaveBeenCalled();
|
||||||
|
|
||||||
// Verify console output for null result
|
// Verify console output for null result
|
||||||
expect(mockConsoleLog).toHaveBeenCalledWith(expect.stringContaining('Task update was not completed'));
|
expect(mockConsoleLog).toHaveBeenCalledWith(
|
||||||
|
expect.stringContaining('Task update was not completed')
|
||||||
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
test('should handle errors from updateTaskById', async () => {
|
test('should handle errors from updateTaskById', async () => {
|
||||||
@@ -522,7 +633,9 @@ describe('Commands Module', () => {
|
|||||||
await updateTaskAction(options);
|
await updateTaskAction(options);
|
||||||
|
|
||||||
// Verify error handling
|
// Verify error handling
|
||||||
expect(mockConsoleError).toHaveBeenCalledWith(expect.stringContaining('Error: Task update failed'));
|
expect(mockConsoleError).toHaveBeenCalledWith(
|
||||||
|
expect.stringContaining('Error: Task update failed')
|
||||||
|
);
|
||||||
expect(mockExit).toHaveBeenCalledWith(1);
|
expect(mockExit).toHaveBeenCalledWith(1);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -17,17 +17,17 @@ import { sampleTasks } from '../fixtures/sample-tasks.js';
|
|||||||
// Mock dependencies
|
// Mock dependencies
|
||||||
jest.mock('path');
|
jest.mock('path');
|
||||||
jest.mock('chalk', () => ({
|
jest.mock('chalk', () => ({
|
||||||
green: jest.fn(text => `<green>${text}</green>`),
|
green: jest.fn((text) => `<green>${text}</green>`),
|
||||||
yellow: jest.fn(text => `<yellow>${text}</yellow>`),
|
yellow: jest.fn((text) => `<yellow>${text}</yellow>`),
|
||||||
red: jest.fn(text => `<red>${text}</red>`),
|
red: jest.fn((text) => `<red>${text}</red>`),
|
||||||
cyan: jest.fn(text => `<cyan>${text}</cyan>`),
|
cyan: jest.fn((text) => `<cyan>${text}</cyan>`),
|
||||||
bold: jest.fn(text => `<bold>${text}</bold>`),
|
bold: jest.fn((text) => `<bold>${text}</bold>`)
|
||||||
}));
|
}));
|
||||||
|
|
||||||
jest.mock('boxen', () => jest.fn(text => `[boxed: ${text}]`));
|
jest.mock('boxen', () => jest.fn((text) => `[boxed: ${text}]`));
|
||||||
|
|
||||||
jest.mock('@anthropic-ai/sdk', () => ({
|
jest.mock('@anthropic-ai/sdk', () => ({
|
||||||
Anthropic: jest.fn().mockImplementation(() => ({})),
|
Anthropic: jest.fn().mockImplementation(() => ({}))
|
||||||
}));
|
}));
|
||||||
|
|
||||||
// Mock utils module
|
// Mock utils module
|
||||||
@@ -48,11 +48,11 @@ jest.mock('../../scripts/modules/utils.js', () => ({
|
|||||||
}));
|
}));
|
||||||
|
|
||||||
jest.mock('../../scripts/modules/ui.js', () => ({
|
jest.mock('../../scripts/modules/ui.js', () => ({
|
||||||
displayBanner: jest.fn(),
|
displayBanner: jest.fn()
|
||||||
}));
|
}));
|
||||||
|
|
||||||
jest.mock('../../scripts/modules/task-manager.js', () => ({
|
jest.mock('../../scripts/modules/task-manager.js', () => ({
|
||||||
generateTaskFiles: jest.fn(),
|
generateTaskFiles: jest.fn()
|
||||||
}));
|
}));
|
||||||
|
|
||||||
// Create a path for test files
|
// Create a path for test files
|
||||||
@@ -67,15 +67,21 @@ describe('Dependency Manager Module', () => {
|
|||||||
if (Array.isArray(tasks)) {
|
if (Array.isArray(tasks)) {
|
||||||
if (typeof id === 'string' && id.includes('.')) {
|
if (typeof id === 'string' && id.includes('.')) {
|
||||||
const [taskId, subtaskId] = id.split('.').map(Number);
|
const [taskId, subtaskId] = id.split('.').map(Number);
|
||||||
const task = tasks.find(t => t.id === taskId);
|
const task = tasks.find((t) => t.id === taskId);
|
||||||
return task && task.subtasks && task.subtasks.some(st => st.id === subtaskId);
|
return (
|
||||||
|
task &&
|
||||||
|
task.subtasks &&
|
||||||
|
task.subtasks.some((st) => st.id === subtaskId)
|
||||||
|
);
|
||||||
}
|
}
|
||||||
return tasks.some(task => task.id === (typeof id === 'string' ? parseInt(id, 10) : id));
|
return tasks.some(
|
||||||
|
(task) => task.id === (typeof id === 'string' ? parseInt(id, 10) : id)
|
||||||
|
);
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
});
|
});
|
||||||
|
|
||||||
mockFormatTaskId.mockImplementation(id => {
|
mockFormatTaskId.mockImplementation((id) => {
|
||||||
if (typeof id === 'string' && id.includes('.')) {
|
if (typeof id === 'string' && id.includes('.')) {
|
||||||
return id;
|
return id;
|
||||||
}
|
}
|
||||||
@@ -87,7 +93,7 @@ describe('Dependency Manager Module', () => {
|
|||||||
const dependencyMap = new Map();
|
const dependencyMap = new Map();
|
||||||
|
|
||||||
// Build dependency map
|
// Build dependency map
|
||||||
tasks.forEach(task => {
|
tasks.forEach((task) => {
|
||||||
if (task.dependencies) {
|
if (task.dependencies) {
|
||||||
dependencyMap.set(task.id, task.dependencies);
|
dependencyMap.set(task.id, task.dependencies);
|
||||||
}
|
}
|
||||||
@@ -168,9 +174,7 @@ describe('Dependency Manager Module', () => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
test('should handle a task depending on itself', () => {
|
test('should handle a task depending on itself', () => {
|
||||||
const tasks = [
|
const tasks = [{ id: 1, dependencies: [1] }];
|
||||||
{ id: 1, dependencies: [1] }
|
|
||||||
];
|
|
||||||
|
|
||||||
const result = isCircularDependency(tasks, 1);
|
const result = isCircularDependency(tasks, 1);
|
||||||
expect(result).toBe(true);
|
expect(result).toBe(true);
|
||||||
@@ -182,15 +186,15 @@ describe('Dependency Manager Module', () => {
|
|||||||
id: 1,
|
id: 1,
|
||||||
dependencies: [],
|
dependencies: [],
|
||||||
subtasks: [
|
subtasks: [
|
||||||
{ id: 1, dependencies: ["1.2"] },
|
{ id: 1, dependencies: ['1.2'] },
|
||||||
{ id: 2, dependencies: ["1.3"] },
|
{ id: 2, dependencies: ['1.3'] },
|
||||||
{ id: 3, dependencies: ["1.1"] }
|
{ id: 3, dependencies: ['1.1'] }
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
||||||
// This creates a circular dependency: 1.1 -> 1.2 -> 1.3 -> 1.1
|
// This creates a circular dependency: 1.1 -> 1.2 -> 1.3 -> 1.1
|
||||||
const result = isCircularDependency(tasks, "1.1", ["1.3", "1.2"]);
|
const result = isCircularDependency(tasks, '1.1', ['1.3', '1.2']);
|
||||||
expect(result).toBe(true);
|
expect(result).toBe(true);
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -201,14 +205,14 @@ describe('Dependency Manager Module', () => {
|
|||||||
dependencies: [],
|
dependencies: [],
|
||||||
subtasks: [
|
subtasks: [
|
||||||
{ id: 1, dependencies: [] },
|
{ id: 1, dependencies: [] },
|
||||||
{ id: 2, dependencies: ["1.1"] },
|
{ id: 2, dependencies: ['1.1'] },
|
||||||
{ id: 3, dependencies: ["1.2"] }
|
{ id: 3, dependencies: ['1.2'] }
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
||||||
// This is a valid dependency chain: 1.3 -> 1.2 -> 1.1
|
// This is a valid dependency chain: 1.3 -> 1.2 -> 1.1
|
||||||
const result = isCircularDependency(tasks, "1.1", []);
|
const result = isCircularDependency(tasks, '1.1', []);
|
||||||
expect(result).toBe(false);
|
expect(result).toBe(false);
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -219,7 +223,7 @@ describe('Dependency Manager Module', () => {
|
|||||||
dependencies: [],
|
dependencies: [],
|
||||||
subtasks: [
|
subtasks: [
|
||||||
{ id: 1, dependencies: [] },
|
{ id: 1, dependencies: [] },
|
||||||
{ id: 2, dependencies: ["1.1"] },
|
{ id: 2, dependencies: ['1.1'] },
|
||||||
{ id: 3, dependencies: [] }
|
{ id: 3, dependencies: [] }
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -228,7 +232,7 @@ describe('Dependency Manager Module', () => {
|
|||||||
// Check if adding a dependency from subtask 1.3 to 1.2 creates a circular dependency
|
// Check if adding a dependency from subtask 1.3 to 1.2 creates a circular dependency
|
||||||
// This should be false as 1.3 -> 1.2 -> 1.1 is a valid chain
|
// This should be false as 1.3 -> 1.2 -> 1.1 is a valid chain
|
||||||
mockTaskExists.mockImplementation(() => true);
|
mockTaskExists.mockImplementation(() => true);
|
||||||
const result = isCircularDependency(tasks, "1.3", ["1.2"]);
|
const result = isCircularDependency(tasks, '1.3', ['1.2']);
|
||||||
expect(result).toBe(false);
|
expect(result).toBe(false);
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -238,16 +242,16 @@ describe('Dependency Manager Module', () => {
|
|||||||
id: 1,
|
id: 1,
|
||||||
dependencies: [],
|
dependencies: [],
|
||||||
subtasks: [
|
subtasks: [
|
||||||
{ id: 1, dependencies: ["1.3"] },
|
{ id: 1, dependencies: ['1.3'] },
|
||||||
{ id: 2, dependencies: ["1.1"] },
|
{ id: 2, dependencies: ['1.1'] },
|
||||||
{ id: 3, dependencies: ["1.2"] }
|
{ id: 3, dependencies: ['1.2'] }
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
||||||
// This creates a circular dependency: 1.1 -> 1.3 -> 1.2 -> 1.1
|
// This creates a circular dependency: 1.1 -> 1.3 -> 1.2 -> 1.1
|
||||||
mockTaskExists.mockImplementation(() => true);
|
mockTaskExists.mockImplementation(() => true);
|
||||||
const result = isCircularDependency(tasks, "1.2", ["1.1"]);
|
const result = isCircularDependency(tasks, '1.2', ['1.1']);
|
||||||
expect(result).toBe(true);
|
expect(result).toBe(true);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
@@ -277,20 +281,22 @@ describe('Dependency Manager Module', () => {
|
|||||||
const result = validateTaskDependencies(tasks);
|
const result = validateTaskDependencies(tasks);
|
||||||
|
|
||||||
expect(result.valid).toBe(false);
|
expect(result.valid).toBe(false);
|
||||||
expect(result.issues.some(issue => issue.type === 'circular')).toBe(true);
|
expect(result.issues.some((issue) => issue.type === 'circular')).toBe(
|
||||||
|
true
|
||||||
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
test('should detect self-dependencies', () => {
|
test('should detect self-dependencies', () => {
|
||||||
const tasks = [
|
const tasks = [{ id: 1, dependencies: [1] }];
|
||||||
{ id: 1, dependencies: [1] }
|
|
||||||
];
|
|
||||||
|
|
||||||
const result = validateTaskDependencies(tasks);
|
const result = validateTaskDependencies(tasks);
|
||||||
|
|
||||||
expect(result.valid).toBe(false);
|
expect(result.valid).toBe(false);
|
||||||
expect(result.issues.some(issue =>
|
expect(
|
||||||
issue.type === 'self' && issue.taskId === 1
|
result.issues.some(
|
||||||
)).toBe(true);
|
(issue) => issue.type === 'self' && issue.taskId === 1
|
||||||
|
)
|
||||||
|
).toBe(true);
|
||||||
});
|
});
|
||||||
|
|
||||||
test('should return valid for correct dependencies', () => {
|
test('should return valid for correct dependencies', () => {
|
||||||
@@ -325,13 +331,13 @@ describe('Dependency Manager Module', () => {
|
|||||||
dependencies: [],
|
dependencies: [],
|
||||||
subtasks: [
|
subtasks: [
|
||||||
{ id: 1, dependencies: [] },
|
{ id: 1, dependencies: [] },
|
||||||
{ id: 2, dependencies: ["1.1"] }, // Valid - depends on another subtask
|
{ id: 2, dependencies: ['1.1'] }, // Valid - depends on another subtask
|
||||||
{ id: 3, dependencies: ["1.2"] } // Valid - depends on another subtask
|
{ id: 3, dependencies: ['1.2'] } // Valid - depends on another subtask
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 2,
|
id: 2,
|
||||||
dependencies: ["1.3"], // Valid - depends on a subtask from task 1
|
dependencies: ['1.3'], // Valid - depends on a subtask from task 1
|
||||||
subtasks: []
|
subtasks: []
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
@@ -340,10 +346,14 @@ describe('Dependency Manager Module', () => {
|
|||||||
mockTaskExists.mockImplementation((tasks, id) => {
|
mockTaskExists.mockImplementation((tasks, id) => {
|
||||||
if (typeof id === 'string' && id.includes('.')) {
|
if (typeof id === 'string' && id.includes('.')) {
|
||||||
const [taskId, subtaskId] = id.split('.').map(Number);
|
const [taskId, subtaskId] = id.split('.').map(Number);
|
||||||
const task = tasks.find(t => t.id === taskId);
|
const task = tasks.find((t) => t.id === taskId);
|
||||||
return task && task.subtasks && task.subtasks.some(st => st.id === subtaskId);
|
return (
|
||||||
|
task &&
|
||||||
|
task.subtasks &&
|
||||||
|
task.subtasks.some((st) => st.id === subtaskId)
|
||||||
|
);
|
||||||
}
|
}
|
||||||
return tasks.some(task => task.id === parseInt(id, 10));
|
return tasks.some((task) => task.id === parseInt(id, 10));
|
||||||
});
|
});
|
||||||
|
|
||||||
const result = validateTaskDependencies(tasks);
|
const result = validateTaskDependencies(tasks);
|
||||||
@@ -358,8 +368,8 @@ describe('Dependency Manager Module', () => {
|
|||||||
id: 1,
|
id: 1,
|
||||||
dependencies: [],
|
dependencies: [],
|
||||||
subtasks: [
|
subtasks: [
|
||||||
{ id: 1, dependencies: ["1.4"] }, // Invalid - subtask 4 doesn't exist
|
{ id: 1, dependencies: ['1.4'] }, // Invalid - subtask 4 doesn't exist
|
||||||
{ id: 2, dependencies: ["2.1"] } // Invalid - task 2 has no subtasks
|
{ id: 2, dependencies: ['2.1'] } // Invalid - task 2 has no subtasks
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -371,10 +381,10 @@ describe('Dependency Manager Module', () => {
|
|||||||
|
|
||||||
// Mock taskExists to correctly identify missing subtasks
|
// Mock taskExists to correctly identify missing subtasks
|
||||||
mockTaskExists.mockImplementation((taskArray, depId) => {
|
mockTaskExists.mockImplementation((taskArray, depId) => {
|
||||||
if (typeof depId === 'string' && depId === "1.4") {
|
if (typeof depId === 'string' && depId === '1.4') {
|
||||||
return false; // Subtask 1.4 doesn't exist
|
return false; // Subtask 1.4 doesn't exist
|
||||||
}
|
}
|
||||||
if (typeof depId === 'string' && depId === "2.1") {
|
if (typeof depId === 'string' && depId === '2.1') {
|
||||||
return false; // Subtask 2.1 doesn't exist
|
return false; // Subtask 2.1 doesn't exist
|
||||||
}
|
}
|
||||||
return true; // All other dependencies exist
|
return true; // All other dependencies exist
|
||||||
@@ -385,9 +395,14 @@ describe('Dependency Manager Module', () => {
|
|||||||
expect(result.valid).toBe(false);
|
expect(result.valid).toBe(false);
|
||||||
expect(result.issues.length).toBeGreaterThan(0);
|
expect(result.issues.length).toBeGreaterThan(0);
|
||||||
// Should detect missing subtask dependencies
|
// Should detect missing subtask dependencies
|
||||||
expect(result.issues.some(issue =>
|
expect(
|
||||||
issue.type === 'missing' && String(issue.taskId) === "1.1" && String(issue.dependencyId) === "1.4"
|
result.issues.some(
|
||||||
)).toBe(true);
|
(issue) =>
|
||||||
|
issue.type === 'missing' &&
|
||||||
|
String(issue.taskId) === '1.1' &&
|
||||||
|
String(issue.dependencyId) === '1.4'
|
||||||
|
)
|
||||||
|
).toBe(true);
|
||||||
});
|
});
|
||||||
|
|
||||||
test('should detect circular dependencies between subtasks', () => {
|
test('should detect circular dependencies between subtasks', () => {
|
||||||
@@ -396,8 +411,8 @@ describe('Dependency Manager Module', () => {
|
|||||||
id: 1,
|
id: 1,
|
||||||
dependencies: [],
|
dependencies: [],
|
||||||
subtasks: [
|
subtasks: [
|
||||||
{ id: 1, dependencies: ["1.2"] },
|
{ id: 1, dependencies: ['1.2'] },
|
||||||
{ id: 2, dependencies: ["1.1"] } // Creates a circular dependency with 1.1
|
{ id: 2, dependencies: ['1.1'] } // Creates a circular dependency with 1.1
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
@@ -408,7 +423,9 @@ describe('Dependency Manager Module', () => {
|
|||||||
const result = validateTaskDependencies(tasks);
|
const result = validateTaskDependencies(tasks);
|
||||||
|
|
||||||
expect(result.valid).toBe(false);
|
expect(result.valid).toBe(false);
|
||||||
expect(result.issues.some(issue => issue.type === 'circular')).toBe(true);
|
expect(result.issues.some((issue) => issue.type === 'circular')).toBe(
|
||||||
|
true
|
||||||
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
test('should properly validate dependencies between subtasks of the same parent', () => {
|
test('should properly validate dependencies between subtasks of the same parent', () => {
|
||||||
@@ -417,8 +434,8 @@ describe('Dependency Manager Module', () => {
|
|||||||
id: 23,
|
id: 23,
|
||||||
dependencies: [],
|
dependencies: [],
|
||||||
subtasks: [
|
subtasks: [
|
||||||
{ id: 8, dependencies: ["23.13"] },
|
{ id: 8, dependencies: ['23.13'] },
|
||||||
{ id: 10, dependencies: ["23.8"] },
|
{ id: 10, dependencies: ['23.8'] },
|
||||||
{ id: 13, dependencies: [] }
|
{ id: 13, dependencies: [] }
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -427,7 +444,7 @@ describe('Dependency Manager Module', () => {
|
|||||||
// Mock taskExists to validate the subtask dependencies
|
// Mock taskExists to validate the subtask dependencies
|
||||||
mockTaskExists.mockImplementation((taskArray, id) => {
|
mockTaskExists.mockImplementation((taskArray, id) => {
|
||||||
if (typeof id === 'string') {
|
if (typeof id === 'string') {
|
||||||
if (id === "23.8" || id === "23.10" || id === "23.13") {
|
if (id === '23.8' || id === '23.10' || id === '23.13') {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -576,37 +593,27 @@ describe('Dependency Manager Module', () => {
|
|||||||
|
|
||||||
test('should handle tasks without subtasks', () => {
|
test('should handle tasks without subtasks', () => {
|
||||||
const tasksData = {
|
const tasksData = {
|
||||||
tasks: [
|
tasks: [{ id: 1 }, { id: 2, dependencies: [1] }]
|
||||||
{ id: 1 },
|
|
||||||
{ id: 2, dependencies: [1] }
|
|
||||||
]
|
|
||||||
};
|
};
|
||||||
|
|
||||||
const result = ensureAtLeastOneIndependentSubtask(tasksData);
|
const result = ensureAtLeastOneIndependentSubtask(tasksData);
|
||||||
|
|
||||||
expect(result).toBe(false);
|
expect(result).toBe(false);
|
||||||
expect(tasksData).toEqual({
|
expect(tasksData).toEqual({
|
||||||
tasks: [
|
tasks: [{ id: 1 }, { id: 2, dependencies: [1] }]
|
||||||
{ id: 1 },
|
|
||||||
{ id: 2, dependencies: [1] }
|
|
||||||
]
|
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
test('should handle empty subtasks array', () => {
|
test('should handle empty subtasks array', () => {
|
||||||
const tasksData = {
|
const tasksData = {
|
||||||
tasks: [
|
tasks: [{ id: 1, subtasks: [] }]
|
||||||
{ id: 1, subtasks: [] }
|
|
||||||
]
|
|
||||||
};
|
};
|
||||||
|
|
||||||
const result = ensureAtLeastOneIndependentSubtask(tasksData);
|
const result = ensureAtLeastOneIndependentSubtask(tasksData);
|
||||||
|
|
||||||
expect(result).toBe(false);
|
expect(result).toBe(false);
|
||||||
expect(tasksData).toEqual({
|
expect(tasksData).toEqual({
|
||||||
tasks: [
|
tasks: [{ id: 1, subtasks: [] }]
|
||||||
{ id: 1, subtasks: [] }
|
|
||||||
]
|
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
@@ -641,8 +648,12 @@ describe('Dependency Manager Module', () => {
|
|||||||
// Handle subtask references (e.g., "1.2")
|
// Handle subtask references (e.g., "1.2")
|
||||||
if (idStr.includes('.')) {
|
if (idStr.includes('.')) {
|
||||||
const [parentId, subtaskId] = idStr.split('.').map(Number);
|
const [parentId, subtaskId] = idStr.split('.').map(Number);
|
||||||
const task = tasks.find(t => t.id === parentId);
|
const task = tasks.find((t) => t.id === parentId);
|
||||||
return task && task.subtasks && task.subtasks.some(st => st.id === subtaskId);
|
return (
|
||||||
|
task &&
|
||||||
|
task.subtasks &&
|
||||||
|
task.subtasks.some((st) => st.id === subtaskId)
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Handle regular task references
|
// Handle regular task references
|
||||||
@@ -674,7 +685,10 @@ describe('Dependency Manager Module', () => {
|
|||||||
expect(tasksData.tasks[1].subtasks[0].dependencies).toEqual([]);
|
expect(tasksData.tasks[1].subtasks[0].dependencies).toEqual([]);
|
||||||
|
|
||||||
// IMPORTANT: Verify no calls to writeJSON with actual tasks.json
|
// IMPORTANT: Verify no calls to writeJSON with actual tasks.json
|
||||||
expect(mockWriteJSON).not.toHaveBeenCalledWith('tasks/tasks.json', expect.anything());
|
expect(mockWriteJSON).not.toHaveBeenCalledWith(
|
||||||
|
'tasks/tasks.json',
|
||||||
|
expect.anything()
|
||||||
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
test('should return false if no changes needed', () => {
|
test('should return false if no changes needed', () => {
|
||||||
@@ -703,8 +717,12 @@ describe('Dependency Manager Module', () => {
|
|||||||
// Handle subtask references
|
// Handle subtask references
|
||||||
if (idStr.includes('.')) {
|
if (idStr.includes('.')) {
|
||||||
const [parentId, subtaskId] = idStr.split('.').map(Number);
|
const [parentId, subtaskId] = idStr.split('.').map(Number);
|
||||||
const task = tasks.find(t => t.id === parentId);
|
const task = tasks.find((t) => t.id === parentId);
|
||||||
return task && task.subtasks && task.subtasks.some(st => st.id === subtaskId);
|
return (
|
||||||
|
task &&
|
||||||
|
task.subtasks &&
|
||||||
|
task.subtasks.some((st) => st.id === subtaskId)
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Handle regular task references
|
// Handle regular task references
|
||||||
@@ -720,7 +738,10 @@ describe('Dependency Manager Module', () => {
|
|||||||
expect(tasksData).toEqual(originalData);
|
expect(tasksData).toEqual(originalData);
|
||||||
|
|
||||||
// IMPORTANT: Verify no calls to writeJSON with actual tasks.json
|
// IMPORTANT: Verify no calls to writeJSON with actual tasks.json
|
||||||
expect(mockWriteJSON).not.toHaveBeenCalledWith('tasks/tasks.json', expect.anything());
|
expect(mockWriteJSON).not.toHaveBeenCalledWith(
|
||||||
|
'tasks/tasks.json',
|
||||||
|
expect.anything()
|
||||||
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
test('should handle invalid input', () => {
|
test('should handle invalid input', () => {
|
||||||
@@ -730,7 +751,10 @@ describe('Dependency Manager Module', () => {
|
|||||||
expect(validateAndFixDependencies({ tasks: 'not an array' })).toBe(false);
|
expect(validateAndFixDependencies({ tasks: 'not an array' })).toBe(false);
|
||||||
|
|
||||||
// IMPORTANT: Verify no calls to writeJSON with actual tasks.json
|
// IMPORTANT: Verify no calls to writeJSON with actual tasks.json
|
||||||
expect(mockWriteJSON).not.toHaveBeenCalledWith('tasks/tasks.json', expect.anything());
|
expect(mockWriteJSON).not.toHaveBeenCalledWith(
|
||||||
|
'tasks/tasks.json',
|
||||||
|
expect.anything()
|
||||||
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
test('should save changes when tasksPath is provided', () => {
|
test('should save changes when tasksPath is provided', () => {
|
||||||
@@ -754,8 +778,12 @@ describe('Dependency Manager Module', () => {
|
|||||||
// Handle subtask references
|
// Handle subtask references
|
||||||
if (idStr.includes('.')) {
|
if (idStr.includes('.')) {
|
||||||
const [parentId, subtaskId] = idStr.split('.').map(Number);
|
const [parentId, subtaskId] = idStr.split('.').map(Number);
|
||||||
const task = tasks.find(t => t.id === parentId);
|
const task = tasks.find((t) => t.id === parentId);
|
||||||
return task && task.subtasks && task.subtasks.some(st => st.id === subtaskId);
|
return (
|
||||||
|
task &&
|
||||||
|
task.subtasks &&
|
||||||
|
task.subtasks.some((st) => st.id === subtaskId)
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Handle regular task references
|
// Handle regular task references
|
||||||
@@ -776,7 +804,10 @@ describe('Dependency Manager Module', () => {
|
|||||||
expect(tasksData).not.toEqual(originalData);
|
expect(tasksData).not.toEqual(originalData);
|
||||||
|
|
||||||
// IMPORTANT: Verify no calls to writeJSON with actual tasks.json
|
// IMPORTANT: Verify no calls to writeJSON with actual tasks.json
|
||||||
expect(mockWriteJSON).not.toHaveBeenCalledWith('tasks/tasks.json', expect.anything());
|
expect(mockWriteJSON).not.toHaveBeenCalledWith(
|
||||||
|
'tasks/tasks.json',
|
||||||
|
expect.anything()
|
||||||
|
);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
@@ -77,7 +77,8 @@ describe('Windsurf Rules File Handling', () => {
|
|||||||
if (fs.existsSync(targetPath)) {
|
if (fs.existsSync(targetPath)) {
|
||||||
// Should append content when file exists
|
// Should append content when file exists
|
||||||
const existingContent = fs.readFileSync(targetPath, 'utf8');
|
const existingContent = fs.readFileSync(targetPath, 'utf8');
|
||||||
const updatedContent = existingContent.trim() +
|
const updatedContent =
|
||||||
|
existingContent.trim() +
|
||||||
'\n\n# Added by Claude Task Master - Development Workflow Rules\n\n' +
|
'\n\n# Added by Claude Task Master - Development Workflow Rules\n\n' +
|
||||||
'New content';
|
'New content';
|
||||||
fs.writeFileSync(targetPath, updatedContent);
|
fs.writeFileSync(targetPath, updatedContent);
|
||||||
@@ -131,7 +132,10 @@ describe('Windsurf Rules File Handling', () => {
|
|||||||
// Mock implementation of createProjectStructure
|
// Mock implementation of createProjectStructure
|
||||||
function mockCreateProjectStructure(projectName) {
|
function mockCreateProjectStructure(projectName) {
|
||||||
// Copy template files including .windsurfrules
|
// Copy template files including .windsurfrules
|
||||||
mockCopyTemplateFile('windsurfrules', path.join(tempDir, '.windsurfrules'));
|
mockCopyTemplateFile(
|
||||||
|
'windsurfrules',
|
||||||
|
path.join(tempDir, '.windsurfrules')
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Act - call our mock implementation
|
// Act - call our mock implementation
|
||||||
@@ -160,10 +164,10 @@ describe('MCP Configuration Handling', () => {
|
|||||||
jest.spyOn(fs, 'readFileSync').mockImplementation((filePath) => {
|
jest.spyOn(fs, 'readFileSync').mockImplementation((filePath) => {
|
||||||
if (filePath.toString().includes('mcp.json')) {
|
if (filePath.toString().includes('mcp.json')) {
|
||||||
return JSON.stringify({
|
return JSON.stringify({
|
||||||
"mcpServers": {
|
mcpServers: {
|
||||||
"existing-server": {
|
'existing-server': {
|
||||||
"command": "node",
|
command: 'node',
|
||||||
"args": ["server.js"]
|
args: ['server.js']
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
@@ -203,12 +207,9 @@ describe('MCP Configuration Handling', () => {
|
|||||||
|
|
||||||
// New MCP config to be added - references the installed package
|
// New MCP config to be added - references the installed package
|
||||||
const newMCPServer = {
|
const newMCPServer = {
|
||||||
"task-master-ai": {
|
'task-master-ai': {
|
||||||
"command": "npx",
|
command: 'npx',
|
||||||
"args": [
|
args: ['task-master-ai', 'mcp-server']
|
||||||
"task-master-ai",
|
|
||||||
"mcp-server"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -224,19 +225,17 @@ describe('MCP Configuration Handling', () => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Add the taskmaster-ai server if it doesn't exist
|
// Add the taskmaster-ai server if it doesn't exist
|
||||||
if (!mcpConfig.mcpServers["task-master-ai"]) {
|
if (!mcpConfig.mcpServers['task-master-ai']) {
|
||||||
mcpConfig.mcpServers["task-master-ai"] = newMCPServer["task-master-ai"];
|
mcpConfig.mcpServers['task-master-ai'] =
|
||||||
|
newMCPServer['task-master-ai'];
|
||||||
}
|
}
|
||||||
|
|
||||||
// Write the updated configuration
|
// Write the updated configuration
|
||||||
fs.writeFileSync(
|
fs.writeFileSync(mcpJsonPath, JSON.stringify(mcpConfig, null, 4));
|
||||||
mcpJsonPath,
|
|
||||||
JSON.stringify(mcpConfig, null, 4)
|
|
||||||
);
|
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
// Create new configuration on error
|
// Create new configuration on error
|
||||||
const newMCPConfig = {
|
const newMCPConfig = {
|
||||||
"mcpServers": newMCPServer
|
mcpServers: newMCPServer
|
||||||
};
|
};
|
||||||
|
|
||||||
fs.writeFileSync(mcpJsonPath, JSON.stringify(newMCPConfig, null, 4));
|
fs.writeFileSync(mcpJsonPath, JSON.stringify(newMCPConfig, null, 4));
|
||||||
@@ -244,7 +243,7 @@ describe('MCP Configuration Handling', () => {
|
|||||||
} else {
|
} else {
|
||||||
// If mcp.json doesn't exist, create it
|
// If mcp.json doesn't exist, create it
|
||||||
const newMCPConfig = {
|
const newMCPConfig = {
|
||||||
"mcpServers": newMCPServer
|
mcpServers: newMCPServer
|
||||||
};
|
};
|
||||||
|
|
||||||
fs.writeFileSync(mcpJsonPath, JSON.stringify(newMCPConfig, null, 4));
|
fs.writeFileSync(mcpJsonPath, JSON.stringify(newMCPConfig, null, 4));
|
||||||
@@ -353,14 +352,14 @@ describe('MCP Configuration Handling', () => {
|
|||||||
fs.readFileSync.mockImplementation((filePath) => {
|
fs.readFileSync.mockImplementation((filePath) => {
|
||||||
if (filePath.toString().includes('mcp.json')) {
|
if (filePath.toString().includes('mcp.json')) {
|
||||||
return JSON.stringify({
|
return JSON.stringify({
|
||||||
"mcpServers": {
|
mcpServers: {
|
||||||
"existing-server": {
|
'existing-server': {
|
||||||
"command": "node",
|
command: 'node',
|
||||||
"args": ["server.js"]
|
args: ['server.js']
|
||||||
},
|
},
|
||||||
"task-master-ai": {
|
'task-master-ai': {
|
||||||
"command": "custom",
|
command: 'custom',
|
||||||
"args": ["custom-args"]
|
args: ['custom-args']
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
@@ -377,8 +376,10 @@ describe('MCP Configuration Handling', () => {
|
|||||||
// Assert
|
// Assert
|
||||||
// Verify the written data contains the original taskmaster configuration
|
// Verify the written data contains the original taskmaster configuration
|
||||||
const dataWritten = JSON.parse(writeFileSyncSpy.mock.calls[0][1]);
|
const dataWritten = JSON.parse(writeFileSyncSpy.mock.calls[0][1]);
|
||||||
expect(dataWritten.mcpServers["task-master-ai"].command).toBe("custom");
|
expect(dataWritten.mcpServers['task-master-ai'].command).toBe('custom');
|
||||||
expect(dataWritten.mcpServers["task-master-ai"].args).toContain("custom-args");
|
expect(dataWritten.mcpServers['task-master-ai'].args).toContain(
|
||||||
|
'custom-args'
|
||||||
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
test('creates the .cursor directory if it doesnt exist', () => {
|
test('creates the .cursor directory if it doesnt exist', () => {
|
||||||
@@ -392,6 +393,8 @@ describe('MCP Configuration Handling', () => {
|
|||||||
mockSetupMCPConfiguration(tempDir, 'test-project');
|
mockSetupMCPConfiguration(tempDir, 'test-project');
|
||||||
|
|
||||||
// Assert
|
// Assert
|
||||||
expect(fs.mkdirSync).toHaveBeenCalledWith(cursorDirPath, { recursive: true });
|
expect(fs.mkdirSync).toHaveBeenCalledWith(cursorDirPath, {
|
||||||
|
recursive: true
|
||||||
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
@@ -53,7 +53,13 @@ describe('Kebab Case Validation', () => {
|
|||||||
|
|
||||||
describe('detectCamelCaseFlags', () => {
|
describe('detectCamelCaseFlags', () => {
|
||||||
test('should properly detect camelCase flags', () => {
|
test('should properly detect camelCase flags', () => {
|
||||||
const args = ['node', 'task-master', 'add-task', '--promptText=test', '--userID=123'];
|
const args = [
|
||||||
|
'node',
|
||||||
|
'task-master',
|
||||||
|
'add-task',
|
||||||
|
'--promptText=test',
|
||||||
|
'--userID=123'
|
||||||
|
];
|
||||||
const flags = testDetectCamelCaseFlags(args);
|
const flags = testDetectCamelCaseFlags(args);
|
||||||
|
|
||||||
expect(flags).toHaveLength(2);
|
expect(flags).toHaveLength(2);
|
||||||
@@ -68,7 +74,13 @@ describe('Kebab Case Validation', () => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
test('should not flag kebab-case or lowercase flags', () => {
|
test('should not flag kebab-case or lowercase flags', () => {
|
||||||
const args = ['node', 'task-master', 'add-task', '--prompt=test', '--user-id=123'];
|
const args = [
|
||||||
|
'node',
|
||||||
|
'task-master',
|
||||||
|
'add-task',
|
||||||
|
'--prompt=test',
|
||||||
|
'--user-id=123'
|
||||||
|
];
|
||||||
const flags = testDetectCamelCaseFlags(args);
|
const flags = testDetectCamelCaseFlags(args);
|
||||||
|
|
||||||
expect(flags).toHaveLength(0);
|
expect(flags).toHaveLength(0);
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -13,17 +13,17 @@ import { sampleTasks } from '../fixtures/sample-tasks.js';
|
|||||||
|
|
||||||
// Mock dependencies
|
// Mock dependencies
|
||||||
jest.mock('chalk', () => {
|
jest.mock('chalk', () => {
|
||||||
const origChalkFn = text => text;
|
const origChalkFn = (text) => text;
|
||||||
const chalk = origChalkFn;
|
const chalk = origChalkFn;
|
||||||
chalk.green = text => text; // Return text as-is for status functions
|
chalk.green = (text) => text; // Return text as-is for status functions
|
||||||
chalk.yellow = text => text;
|
chalk.yellow = (text) => text;
|
||||||
chalk.red = text => text;
|
chalk.red = (text) => text;
|
||||||
chalk.cyan = text => text;
|
chalk.cyan = (text) => text;
|
||||||
chalk.blue = text => text;
|
chalk.blue = (text) => text;
|
||||||
chalk.gray = text => text;
|
chalk.gray = (text) => text;
|
||||||
chalk.white = text => text;
|
chalk.white = (text) => text;
|
||||||
chalk.bold = text => text;
|
chalk.bold = (text) => text;
|
||||||
chalk.dim = text => text;
|
chalk.dim = (text) => text;
|
||||||
|
|
||||||
// Add hex and other methods
|
// Add hex and other methods
|
||||||
chalk.hex = () => origChalkFn;
|
chalk.hex = () => origChalkFn;
|
||||||
@@ -33,40 +33,44 @@ jest.mock('chalk', () => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
jest.mock('figlet', () => ({
|
jest.mock('figlet', () => ({
|
||||||
textSync: jest.fn(() => 'Task Master Banner'),
|
textSync: jest.fn(() => 'Task Master Banner')
|
||||||
}));
|
}));
|
||||||
|
|
||||||
jest.mock('boxen', () => jest.fn(text => `[boxed: ${text}]`));
|
jest.mock('boxen', () => jest.fn((text) => `[boxed: ${text}]`));
|
||||||
|
|
||||||
jest.mock('ora', () => jest.fn(() => ({
|
jest.mock('ora', () =>
|
||||||
|
jest.fn(() => ({
|
||||||
start: jest.fn(),
|
start: jest.fn(),
|
||||||
succeed: jest.fn(),
|
succeed: jest.fn(),
|
||||||
fail: jest.fn(),
|
fail: jest.fn(),
|
||||||
stop: jest.fn(),
|
stop: jest.fn()
|
||||||
})));
|
}))
|
||||||
|
);
|
||||||
|
|
||||||
jest.mock('cli-table3', () => jest.fn().mockImplementation(() => ({
|
jest.mock('cli-table3', () =>
|
||||||
|
jest.fn().mockImplementation(() => ({
|
||||||
push: jest.fn(),
|
push: jest.fn(),
|
||||||
toString: jest.fn(() => 'Table Content'),
|
toString: jest.fn(() => 'Table Content')
|
||||||
})));
|
}))
|
||||||
|
);
|
||||||
|
|
||||||
jest.mock('gradient-string', () => jest.fn(() => jest.fn(text => text)));
|
jest.mock('gradient-string', () => jest.fn(() => jest.fn((text) => text)));
|
||||||
|
|
||||||
jest.mock('../../scripts/modules/utils.js', () => ({
|
jest.mock('../../scripts/modules/utils.js', () => ({
|
||||||
CONFIG: {
|
CONFIG: {
|
||||||
projectName: 'Test Project',
|
projectName: 'Test Project',
|
||||||
projectVersion: '1.0.0',
|
projectVersion: '1.0.0'
|
||||||
},
|
},
|
||||||
log: jest.fn(),
|
log: jest.fn(),
|
||||||
findTaskById: jest.fn(),
|
findTaskById: jest.fn(),
|
||||||
readJSON: jest.fn(),
|
readJSON: jest.fn(),
|
||||||
readComplexityReport: jest.fn(),
|
readComplexityReport: jest.fn(),
|
||||||
truncate: jest.fn(text => text),
|
truncate: jest.fn((text) => text)
|
||||||
}));
|
}));
|
||||||
|
|
||||||
jest.mock('../../scripts/modules/task-manager.js', () => ({
|
jest.mock('../../scripts/modules/task-manager.js', () => ({
|
||||||
findNextTask: jest.fn(),
|
findNextTask: jest.fn(),
|
||||||
analyzeTaskComplexity: jest.fn(),
|
analyzeTaskComplexity: jest.fn()
|
||||||
}));
|
}));
|
||||||
|
|
||||||
describe('UI Module', () => {
|
describe('UI Module', () => {
|
||||||
@@ -166,9 +170,7 @@ describe('UI Module', () => {
|
|||||||
|
|
||||||
test('should handle missing tasks in the task list', () => {
|
test('should handle missing tasks in the task list', () => {
|
||||||
const dependencies = [1, 999];
|
const dependencies = [1, 999];
|
||||||
const allTasks = [
|
const allTasks = [{ id: 1, status: 'done' }];
|
||||||
{ id: 1, status: 'done' }
|
|
||||||
];
|
|
||||||
|
|
||||||
const result = formatDependenciesWithStatus(dependencies, allTasks);
|
const result = formatDependenciesWithStatus(dependencies, allTasks);
|
||||||
expect(result).toBe('1, 999 (Not found)');
|
expect(result).toBe('1, 999 (Not found)');
|
||||||
|
|||||||
@@ -29,11 +29,11 @@ import {
|
|||||||
|
|
||||||
// Mock chalk functions
|
// Mock chalk functions
|
||||||
jest.mock('chalk', () => ({
|
jest.mock('chalk', () => ({
|
||||||
gray: jest.fn(text => `gray:${text}`),
|
gray: jest.fn((text) => `gray:${text}`),
|
||||||
blue: jest.fn(text => `blue:${text}`),
|
blue: jest.fn((text) => `blue:${text}`),
|
||||||
yellow: jest.fn(text => `yellow:${text}`),
|
yellow: jest.fn((text) => `yellow:${text}`),
|
||||||
red: jest.fn(text => `red:${text}`),
|
red: jest.fn((text) => `red:${text}`),
|
||||||
green: jest.fn(text => `green:${text}`)
|
green: jest.fn((text) => `green:${text}`)
|
||||||
}));
|
}));
|
||||||
|
|
||||||
// Test implementation of detectCamelCaseFlags
|
// Test implementation of detectCamelCaseFlags
|
||||||
@@ -96,7 +96,10 @@ describe('Utils Module', () => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
test('should truncate the string and add ellipsis if longer than maxLength', () => {
|
test('should truncate the string and add ellipsis if longer than maxLength', () => {
|
||||||
const result = truncate('This is a long string that needs truncation', 20);
|
const result = truncate(
|
||||||
|
'This is a long string that needs truncation',
|
||||||
|
20
|
||||||
|
);
|
||||||
expect(result).toBe('This is a long st...');
|
expect(result).toBe('This is a long st...');
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -150,12 +153,20 @@ describe('Utils Module', () => {
|
|||||||
log('error', 'Error message');
|
log('error', 'Error message');
|
||||||
|
|
||||||
// Debug should not be logged (level 0 < 1)
|
// Debug should not be logged (level 0 < 1)
|
||||||
expect(console.log).not.toHaveBeenCalledWith(expect.stringContaining('Debug message'));
|
expect(console.log).not.toHaveBeenCalledWith(
|
||||||
|
expect.stringContaining('Debug message')
|
||||||
|
);
|
||||||
|
|
||||||
// Info and above should be logged
|
// Info and above should be logged
|
||||||
expect(console.log).toHaveBeenCalledWith(expect.stringContaining('Info message'));
|
expect(console.log).toHaveBeenCalledWith(
|
||||||
expect(console.log).toHaveBeenCalledWith(expect.stringContaining('Warning message'));
|
expect.stringContaining('Info message')
|
||||||
expect(console.log).toHaveBeenCalledWith(expect.stringContaining('Error message'));
|
);
|
||||||
|
expect(console.log).toHaveBeenCalledWith(
|
||||||
|
expect.stringContaining('Warning message')
|
||||||
|
);
|
||||||
|
expect(console.log).toHaveBeenCalledWith(
|
||||||
|
expect.stringContaining('Error message')
|
||||||
|
);
|
||||||
|
|
||||||
// Verify the formatting includes icons
|
// Verify the formatting includes icons
|
||||||
expect(console.log).toHaveBeenCalledWith(expect.stringContaining('ℹ️'));
|
expect(console.log).toHaveBeenCalledWith(expect.stringContaining('ℹ️'));
|
||||||
@@ -173,16 +184,26 @@ describe('Utils Module', () => {
|
|||||||
log('error', 'Error message');
|
log('error', 'Error message');
|
||||||
|
|
||||||
// Only error should be logged
|
// Only error should be logged
|
||||||
expect(console.log).not.toHaveBeenCalledWith(expect.stringContaining('Debug message'));
|
expect(console.log).not.toHaveBeenCalledWith(
|
||||||
expect(console.log).not.toHaveBeenCalledWith(expect.stringContaining('Info message'));
|
expect.stringContaining('Debug message')
|
||||||
expect(console.log).not.toHaveBeenCalledWith(expect.stringContaining('Warning message'));
|
);
|
||||||
expect(console.log).toHaveBeenCalledWith(expect.stringContaining('Error message'));
|
expect(console.log).not.toHaveBeenCalledWith(
|
||||||
|
expect.stringContaining('Info message')
|
||||||
|
);
|
||||||
|
expect(console.log).not.toHaveBeenCalledWith(
|
||||||
|
expect.stringContaining('Warning message')
|
||||||
|
);
|
||||||
|
expect(console.log).toHaveBeenCalledWith(
|
||||||
|
expect.stringContaining('Error message')
|
||||||
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
test('should join multiple arguments into a single message', () => {
|
test('should join multiple arguments into a single message', () => {
|
||||||
CONFIG.logLevel = 'info';
|
CONFIG.logLevel = 'info';
|
||||||
log('info', 'Message', 'with', 'multiple', 'parts');
|
log('info', 'Message', 'with', 'multiple', 'parts');
|
||||||
expect(console.log).toHaveBeenCalledWith(expect.stringContaining('Message with multiple parts'));
|
expect(console.log).toHaveBeenCalledWith(
|
||||||
|
expect.stringContaining('Message with multiple parts')
|
||||||
|
);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -203,7 +224,9 @@ describe('Utils Module', () => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
// Mock console.error
|
// Mock console.error
|
||||||
const consoleSpy = jest.spyOn(console, 'error').mockImplementation(() => {});
|
const consoleSpy = jest
|
||||||
|
.spyOn(console, 'error')
|
||||||
|
.mockImplementation(() => {});
|
||||||
|
|
||||||
const result = readJSON('nonexistent.json');
|
const result = readJSON('nonexistent.json');
|
||||||
|
|
||||||
@@ -217,7 +240,9 @@ describe('Utils Module', () => {
|
|||||||
fsReadFileSyncSpy.mockReturnValue('{ invalid json: }');
|
fsReadFileSyncSpy.mockReturnValue('{ invalid json: }');
|
||||||
|
|
||||||
// Mock console.error
|
// Mock console.error
|
||||||
const consoleSpy = jest.spyOn(console, 'error').mockImplementation(() => {});
|
const consoleSpy = jest
|
||||||
|
.spyOn(console, 'error')
|
||||||
|
.mockImplementation(() => {});
|
||||||
|
|
||||||
const result = readJSON('invalid.json');
|
const result = readJSON('invalid.json');
|
||||||
|
|
||||||
@@ -248,7 +273,9 @@ describe('Utils Module', () => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
// Mock console.error
|
// Mock console.error
|
||||||
const consoleSpy = jest.spyOn(console, 'error').mockImplementation(() => {});
|
const consoleSpy = jest
|
||||||
|
.spyOn(console, 'error')
|
||||||
|
.mockImplementation(() => {});
|
||||||
|
|
||||||
// Function shouldn't throw, just log error
|
// Function shouldn't throw, just log error
|
||||||
expect(() => writeJSON('protected.json', testData)).not.toThrow();
|
expect(() => writeJSON('protected.json', testData)).not.toThrow();
|
||||||
@@ -261,7 +288,8 @@ describe('Utils Module', () => {
|
|||||||
describe('sanitizePrompt function', () => {
|
describe('sanitizePrompt function', () => {
|
||||||
test('should escape double quotes in prompts', () => {
|
test('should escape double quotes in prompts', () => {
|
||||||
const prompt = 'This is a "quoted" prompt with "multiple" quotes';
|
const prompt = 'This is a "quoted" prompt with "multiple" quotes';
|
||||||
const expected = 'This is a \\"quoted\\" prompt with \\"multiple\\" quotes';
|
const expected =
|
||||||
|
'This is a \\"quoted\\" prompt with \\"multiple\\" quotes';
|
||||||
|
|
||||||
expect(sanitizePrompt(prompt)).toBe(expected);
|
expect(sanitizePrompt(prompt)).toBe(expected);
|
||||||
});
|
});
|
||||||
@@ -291,7 +319,10 @@ describe('Utils Module', () => {
|
|||||||
const result = readComplexityReport();
|
const result = readComplexityReport();
|
||||||
|
|
||||||
expect(fsExistsSyncSpy).toHaveBeenCalled();
|
expect(fsExistsSyncSpy).toHaveBeenCalled();
|
||||||
expect(fsReadFileSyncSpy).toHaveBeenCalledWith('/path/to/report.json', 'utf8');
|
expect(fsReadFileSyncSpy).toHaveBeenCalledWith(
|
||||||
|
'/path/to/report.json',
|
||||||
|
'utf8'
|
||||||
|
);
|
||||||
expect(result).toEqual(testReport);
|
expect(result).toEqual(testReport);
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -361,7 +392,9 @@ describe('Utils Module', () => {
|
|||||||
expect(findTaskInComplexityReport({}, 1)).toBeNull();
|
expect(findTaskInComplexityReport({}, 1)).toBeNull();
|
||||||
|
|
||||||
// Test with non-array complexityAnalysis
|
// Test with non-array complexityAnalysis
|
||||||
expect(findTaskInComplexityReport({ complexityAnalysis: {} }, 1)).toBeNull();
|
expect(
|
||||||
|
findTaskInComplexityReport({ complexityAnalysis: {} }, 1)
|
||||||
|
).toBeNull();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -519,7 +552,13 @@ describe('CLI Flag Format Validation', () => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
test('detectCamelCaseFlags should identify camelCase flags', () => {
|
test('detectCamelCaseFlags should identify camelCase flags', () => {
|
||||||
const args = ['node', 'task-master', 'add-task', '--promptText=test', '--userID=123'];
|
const args = [
|
||||||
|
'node',
|
||||||
|
'task-master',
|
||||||
|
'add-task',
|
||||||
|
'--promptText=test',
|
||||||
|
'--userID=123'
|
||||||
|
];
|
||||||
const flags = testDetectCamelCaseFlags(args);
|
const flags = testDetectCamelCaseFlags(args);
|
||||||
|
|
||||||
expect(flags).toHaveLength(2);
|
expect(flags).toHaveLength(2);
|
||||||
@@ -534,14 +573,28 @@ describe('CLI Flag Format Validation', () => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
test('detectCamelCaseFlags should not flag kebab-case flags', () => {
|
test('detectCamelCaseFlags should not flag kebab-case flags', () => {
|
||||||
const args = ['node', 'task-master', 'add-task', '--prompt-text=test', '--user-id=123'];
|
const args = [
|
||||||
|
'node',
|
||||||
|
'task-master',
|
||||||
|
'add-task',
|
||||||
|
'--prompt-text=test',
|
||||||
|
'--user-id=123'
|
||||||
|
];
|
||||||
const flags = testDetectCamelCaseFlags(args);
|
const flags = testDetectCamelCaseFlags(args);
|
||||||
|
|
||||||
expect(flags).toHaveLength(0);
|
expect(flags).toHaveLength(0);
|
||||||
});
|
});
|
||||||
|
|
||||||
test('detectCamelCaseFlags should respect single-word flags', () => {
|
test('detectCamelCaseFlags should respect single-word flags', () => {
|
||||||
const args = ['node', 'task-master', 'add-task', '--prompt=test', '--file=test.json', '--priority=high', '--promptText=test'];
|
const args = [
|
||||||
|
'node',
|
||||||
|
'task-master',
|
||||||
|
'add-task',
|
||||||
|
'--prompt=test',
|
||||||
|
'--file=test.json',
|
||||||
|
'--priority=high',
|
||||||
|
'--promptText=test'
|
||||||
|
];
|
||||||
const flags = testDetectCamelCaseFlags(args);
|
const flags = testDetectCamelCaseFlags(args);
|
||||||
|
|
||||||
// Should only flag promptText, not the single-word flags
|
// Should only flag promptText, not the single-word flags
|
||||||
|
|||||||
Reference in New Issue
Block a user