chore: task mgmt

This commit is contained in:
Eyal Toledano
2025-04-01 02:09:39 -04:00
parent c98b0cea11
commit bdd0035fc0
3 changed files with 35 additions and 4 deletions

View File

@@ -16,10 +16,11 @@
"test:coverage": "node --experimental-vm-modules node_modules/.bin/jest --coverage", "test:coverage": "node --experimental-vm-modules node_modules/.bin/jest --coverage",
"prepare-package": "node scripts/prepare-package.js", "prepare-package": "node scripts/prepare-package.js",
"prepublishOnly": "npm run prepare-package", "prepublishOnly": "npm run prepare-package",
"prepare": "chmod +x bin/task-master.js bin/task-master-init.js", "prepare": "chmod +x bin/task-master.js bin/task-master-init.js mcp-server/server.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",
"mcp-server": "node mcp-server/server.js"
}, },
"keywords": [ "keywords": [
"claude", "claude",

View File

@@ -947,7 +947,7 @@ Implement the addResearch function in the MCP server's index.js file to enable r
### Details: ### Details:
Implement the addTemplates function in the MCP server's index.js file to enable template-based generation. Configure proper loading of templates from the appropriate directory and ensure they're accessible to all MCP tools that need to generate formatted content. Implement the addTemplates function in the MCP server's index.js file to enable template-based generation. Configure proper loading of templates from the appropriate directory and ensure they're accessible to all MCP tools that need to generate formatted content.
## 38. Implement robust project root handling for file paths [in-progress] ## 38. Implement robust project root handling for file paths [done]
### Dependencies: None ### Dependencies: None
### Description: Create a consistent approach for handling project root paths across MCP tools ### Description: Create a consistent approach for handling project root paths across MCP tools
### Details: ### Details:
@@ -1201,3 +1201,15 @@ const debugMode = config.env.get('DEBUG_MODE', false); // With a default value
This method provides a consistent way to access environment variables defined in the mcp.json configuration file within your FastMCP project in a JavaScript environment. This method provides a consistent way to access environment variables defined in the mcp.json configuration file within your FastMCP project in a JavaScript environment.
</info added on 2025-04-01T01:57:49.848Z> </info added on 2025-04-01T01:57:49.848Z>
## 46. adjust rules so it prioritizes mcp commands over script [pending]
### Dependencies: None
### Description:
### Details:
## 47. adjust rules so it prioritizes mcp commands over script [pending]
### Dependencies: None
### Description:
### Details:

File diff suppressed because one or more lines are too long