config: 설정 파일에서 권한 구조 변경 및 모델 제공자 업데이트

This commit is contained in:
2025-07-13 22:10:41 +09:00
parent abb1ee7e71
commit 339f13d14e
3 changed files with 49 additions and 21 deletions

View File

@ -1,5 +1,6 @@
{ {
"allowedTools": [ "permissions": {
"allow":[
"Bash(grep:*)", "Bash(grep:*)",
"Bash(rg:*)", "Bash(rg:*)",
"Bash(npx tsc:*)", "Bash(npx tsc:*)",
@ -10,4 +11,5 @@
"Bash(npm run *)", "Bash(npm run *)",
"mcp__task_master_ai__*" "mcp__task_master_ai__*"
] ]
}
} }

23
.mcp.json Normal file
View File

@ -0,0 +1,23 @@
{
"mcpServers": {
"context7-mcp": {
"command": "npx",
"args": [
"-y",
"@smithery/cli@latest",
"run",
"@upstash/context7-mcp",
"--key",
"ccc459cf-e7b3-4f27-b6e0-b73784be55dc"
]
},
"taskmaster-ai": {
"command": "npx",
"args": [
"-y",
"--package=task-master-ai",
"task-master-ai"
]
}
}
}

View File

@ -1,32 +1,35 @@
{ {
"models": { "models": {
"main": { "main": {
"provider": "claude-code", "provider": "gemini-cli",
"modelId": "sonnet", "modelId": "gemini-2.5-pro",
"maxTokens": 64000, "maxTokens": 65536,
"temperature": 0.2 "temperature": 0.2
}, },
"research": { "research": {
"provider": "claude-code", "provider": "gemini-cli",
"modelId": "opus", "modelId": "gemini-2.5-pro",
"maxTokens": 32000, "maxTokens": 65536,
"temperature": 0.1 "temperature": 0.1
}, },
"fallback": { "fallback": {
"provider": "claude-code", "provider": "gemini-cli",
"modelId": "sonnet", "modelId": "gemini-2.5-pro",
"maxTokens": 64000, "maxTokens": 65536,
"temperature": 0.2 "temperature": 0.2
} }
}, },
"global": { "global": {
"logLevel": "info", "logLevel": "info",
"debug": false, "debug": false,
"defaultNumTasks": 10,
"defaultSubtasks": 5, "defaultSubtasks": 5,
"defaultPriority": "medium", "defaultPriority": "medium",
"projectName": "Task Master", "projectName": "Task Master",
"ollamaBaseURL": "http://localhost:11434/api", "ollamaBaseURL": "http://localhost:11434/api",
"bedrockBaseURL": "https://bedrock.us-east-1.amazonaws.com", "bedrockBaseURL": "https://bedrock.us-east-1.amazonaws.com",
"responseLanguage": "Korean",
"userId": "1234567890" "userId": "1234567890"
} },
"claudeCode": {}
} }