This commit significantly improves the functionality by implementing fuzzy semantic search to find contextually relevant dependencies: - Add Fuse.js for powerful fuzzy search capability with weighted multi-field matching - Implement score-based relevance ranking with high/medium relevance tiers - Enhance context generation to include detailed information about similar tasks - Fix context shadowing issue that prevented detailed task information from reaching the AI model - Add informative CLI output showing semantic search results and dependency patterns - Improve formatting of dependency information in prompts with task titles The result is that newly created tasks are automatically placed within the correct dependency structure without manual intervention, with the AI having much better context about which tasks are most relevant to the new one being created. This significantly improves the user experience by reducing the need to manually update task dependencies after creation, all without increasing token usage or costs.
114 lines
3.0 KiB
JSON
114 lines
3.0 KiB
JSON
{
|
|
"name": "task-master-ai",
|
|
"version": "0.14.0",
|
|
"description": "A task management system for ambitious AI-driven development that doesn't overwhelm and confuse Cursor.",
|
|
"main": "index.js",
|
|
"type": "module",
|
|
"bin": {
|
|
"task-master": "bin/task-master.js",
|
|
"task-master-mcp": "mcp-server/server.js",
|
|
"task-master-ai": "mcp-server/server.js"
|
|
},
|
|
"scripts": {
|
|
"test": "node --experimental-vm-modules node_modules/.bin/jest",
|
|
"test:fails": "node --experimental-vm-modules node_modules/.bin/jest --onlyFailures",
|
|
"test:watch": "node --experimental-vm-modules node_modules/.bin/jest --watch",
|
|
"test:coverage": "node --experimental-vm-modules node_modules/.bin/jest --coverage",
|
|
"test:e2e": "./tests/e2e/run_e2e.sh",
|
|
"test:e2e-report": "./tests/e2e/run_e2e.sh --analyze-log",
|
|
"prepare": "chmod +x bin/task-master.js mcp-server/server.js",
|
|
"changeset": "changeset",
|
|
"release": "changeset publish",
|
|
"inspector": "npx @modelcontextprotocol/inspector node mcp-server/server.js",
|
|
"mcp-server": "node mcp-server/server.js",
|
|
"format-check": "prettier --check .",
|
|
"format": "prettier --write ."
|
|
},
|
|
"keywords": [
|
|
"claude",
|
|
"task",
|
|
"management",
|
|
"ai",
|
|
"development",
|
|
"cursor",
|
|
"anthropic",
|
|
"llm",
|
|
"mcp",
|
|
"context"
|
|
],
|
|
"author": "Eyal Toledano",
|
|
"license": "MIT WITH Commons-Clause",
|
|
"dependencies": {
|
|
"@ai-sdk/anthropic": "^1.2.10",
|
|
"@ai-sdk/azure": "^1.3.17",
|
|
"@ai-sdk/google": "^1.2.13",
|
|
"@ai-sdk/mistral": "^1.2.7",
|
|
"@ai-sdk/openai": "^1.3.20",
|
|
"@ai-sdk/perplexity": "^1.1.7",
|
|
"@ai-sdk/xai": "^1.2.15",
|
|
"@anthropic-ai/sdk": "^0.39.0",
|
|
"@openrouter/ai-sdk-provider": "^0.4.5",
|
|
"ai": "^4.3.10",
|
|
"boxen": "^8.0.1",
|
|
"chalk": "^5.4.1",
|
|
"cli-table3": "^0.6.5",
|
|
"commander": "^11.1.0",
|
|
"cors": "^2.8.5",
|
|
"dotenv": "^16.3.1",
|
|
"express": "^4.21.2",
|
|
"fastmcp": "^1.20.5",
|
|
"figlet": "^1.8.0",
|
|
"fuse.js": "^7.1.0",
|
|
"gradient-string": "^3.0.0",
|
|
"helmet": "^8.1.0",
|
|
"inquirer": "^12.5.0",
|
|
"jsonwebtoken": "^9.0.2",
|
|
"lru-cache": "^10.2.0",
|
|
"ollama-ai-provider": "^1.2.0",
|
|
"openai": "^4.89.0",
|
|
"ora": "^8.2.0",
|
|
"uuid": "^11.1.0",
|
|
"zod": "^3.23.8"
|
|
},
|
|
"engines": {
|
|
"node": ">=14.0.0"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/eyaltoledano/claude-task-master.git"
|
|
},
|
|
"homepage": "https://github.com/eyaltoledano/claude-task-master#readme",
|
|
"bugs": {
|
|
"url": "https://github.com/eyaltoledano/claude-task-master/issues"
|
|
},
|
|
"files": [
|
|
"scripts/**",
|
|
"assets/**",
|
|
".cursor/**",
|
|
"README-task-master.md",
|
|
"index.js",
|
|
"bin/**",
|
|
"mcp-server/**",
|
|
"src/**"
|
|
],
|
|
"overrides": {
|
|
"node-fetch": "^3.3.2",
|
|
"whatwg-url": "^11.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@changesets/changelog-github": "^0.5.1",
|
|
"@changesets/cli": "^2.28.1",
|
|
"@types/jest": "^29.5.14",
|
|
"execa": "^8.0.1",
|
|
"ink": "^5.0.1",
|
|
"jest": "^29.7.0",
|
|
"jest-environment-node": "^29.7.0",
|
|
"mock-fs": "^5.5.0",
|
|
"node-fetch": "^3.3.2",
|
|
"prettier": "^3.5.3",
|
|
"react": "^18.3.1",
|
|
"supertest": "^7.1.0",
|
|
"tsx": "^4.16.2"
|
|
}
|
|
}
|