mirror of
https://github.com/eyaltoledano/claude-task-master.git
synced 2026-01-30 06:12:05 +00:00
Adds a new package @tm/ai-tools that provides AI SDK tool integrations
for Task Master. Starts with Context7 MCP support for documentation
lookup capabilities.
Package features:
- createContext7Tools() - Creates MCP client for Context7 documentation
- createMCPTools() - Auto-detects and combines available MCP tools
- isContext7Available() - Checks if CONTEXT7_API_KEY is configured
- getAvailableMCPTools() - Lists available MCP tool sources
Usage:
import { createContext7Tools } from '@tm/ai-tools/context7';
import { createMCPTools } from '@tm/ai-tools';
The package uses @ai-sdk/mcp for MCP client functionality.
50 lines
1.3 KiB
JSON
50 lines
1.3 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"lib": ["ES2022"],
|
|
"types": ["node"],
|
|
"allowJs": true,
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"noEmit": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@tm/core": ["./packages/tm-core/src/index.ts"],
|
|
"@tm/core/*": ["./packages/tm-core/src/*"],
|
|
"@tm/cli": ["./apps/cli/src/index.ts"],
|
|
"@tm/cli/*": ["./apps/cli/src/*"],
|
|
"@tm/mcp": ["./apps/mcp/src/index.ts"],
|
|
"@tm/mcp/*": ["./apps/mcp/src/*"],
|
|
"@tm/build-config": ["./packages/build-config/src/index.ts"],
|
|
"@tm/build-config/*": ["./packages/build-config/src/*"],
|
|
"@tm/ai-sdk-provider-grok-cli": [
|
|
"./packages/ai-sdk-provider-grok-cli/src/index.ts"
|
|
],
|
|
"@tm/ai-sdk-provider-grok-cli/*": [
|
|
"./packages/ai-sdk-provider-grok-cli/src/*"
|
|
],
|
|
"@tm/bridge": ["./packages/tm-bridge/src/index.ts"],
|
|
"@tm/bridge/*": ["./packages/tm-bridge/src/*"],
|
|
"@tm/ai-tools": ["./packages/ai-sdk-tools/src/index.ts"],
|
|
"@tm/ai-tools/*": ["./packages/ai-sdk-tools/src/*"]
|
|
}
|
|
},
|
|
"tsx": {
|
|
"tsconfig": {
|
|
"allowImportingTsExtensions": false
|
|
}
|
|
},
|
|
"include": [
|
|
"bin/**/*",
|
|
"scripts/**/*",
|
|
"packages/*/src/**/*",
|
|
"apps/*/src/**/*"
|
|
],
|
|
"exclude": ["node_modules", "dist", "**/dist"]
|
|
}
|