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,13 +1,15 @@
{
"allowedTools": [
"Bash(grep:*)",
"Bash(rg:*)",
"Bash(npx tsc:*)",
"Edit",
"Bash(task-master *)",
"Bash(git commit:*)",
"Bash(git add:*)",
"Bash(npm run *)",
"mcp__task_master_ai__*"
]
"permissions": {
"allow":[
"Bash(grep:*)",
"Bash(rg:*)",
"Bash(npx tsc:*)",
"Edit",
"Bash(task-master *)",
"Bash(git commit:*)",
"Bash(git add:*)",
"Bash(npm run *)",
"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": {
"main": {
"provider": "claude-code",
"modelId": "sonnet",
"maxTokens": 64000,
"provider": "gemini-cli",
"modelId": "gemini-2.5-pro",
"maxTokens": 65536,
"temperature": 0.2
},
"research": {
"provider": "claude-code",
"modelId": "opus",
"maxTokens": 32000,
"provider": "gemini-cli",
"modelId": "gemini-2.5-pro",
"maxTokens": 65536,
"temperature": 0.1
},
"fallback": {
"provider": "claude-code",
"modelId": "sonnet",
"maxTokens": 64000,
"provider": "gemini-cli",
"modelId": "gemini-2.5-pro",
"maxTokens": 65536,
"temperature": 0.2
}
},
"global": {
"logLevel": "info",
"debug": false,
"defaultNumTasks": 10,
"defaultSubtasks": 5,
"defaultPriority": "medium",
"projectName": "Task Master",
"ollamaBaseURL": "http://localhost:11434/api",
"bedrockBaseURL": "https://bedrock.us-east-1.amazonaws.com",
"responseLanguage": "Korean",
"userId": "1234567890"
}
},
"claudeCode": {}
}