Created
July 6, 2025 14:40
-
-
Save tommy-ca/41ea375badaa5a2d586efa5f59f0a7d8 to your computer and use it in GitHub Desktop.
Taskmaster configuration with Claude Code provider setup
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "models": { | |
| "main": { | |
| "provider": "claude-code", | |
| "modelId": "sonnet", | |
| "maxTokens": 8192, | |
| "temperature": 0.2 | |
| }, | |
| "research": { | |
| "provider": "claude-code", | |
| "modelId": "sonnet", | |
| "maxTokens": 8192, | |
| "temperature": 0.1 | |
| }, | |
| "fallback": { | |
| "provider": "openrouter", | |
| "modelId": "deepseek/deepseek-chat-v3-0324:free", | |
| "maxTokens": 8192, | |
| "temperature": 0.2 | |
| } | |
| }, | |
| "global": { | |
| "logLevel": "info", | |
| "debug": false, | |
| "defaultNumTasks": 10, | |
| "defaultSubtasks": 5, | |
| "defaultPriority": "medium", | |
| "projectName": "Taskmaster", | |
| "ollamaBaseURL": "http://localhost:11434/api", | |
| "bedrockBaseURL": "https://bedrock.us-east-1.amazonaws.com", | |
| "responseLanguage": "English", | |
| "userId": "1234567890", | |
| "azureBaseURL": "https://your-endpoint.azure.com/", | |
| "defaultTag": "master" | |
| }, | |
| "claudeCode": {} | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment