- .gitignore 파일 추가 (node_modules, .env, .DS_Store 등 제외) - Claude 권한 설정 확장 및 알림/중지 훅 추가 - taskmaster-ai MCP 서버 설정 추가
51 lines
932 B
JSON
51 lines
932 B
JSON
{
|
|
"permissions": {
|
|
"allow": [
|
|
"Read",
|
|
"Bash",
|
|
"WebFetch",
|
|
"WebSearch",
|
|
"mcp__ide",
|
|
"mcp__shadcn",
|
|
"mcp__playwright",
|
|
"mcp__sequential-thinking",
|
|
"mcp__shadcn",
|
|
"mcp__context7",
|
|
"mcp__shrimp-task-manager"
|
|
],
|
|
"deny": [],
|
|
"ask": []
|
|
},
|
|
"enableAllProjectMcpServers": true,
|
|
"enabledMcpjsonServers": [
|
|
"playwright",
|
|
"context7",
|
|
"sequential-thinking",
|
|
"shadcn"
|
|
],
|
|
"hooks": {
|
|
"Notification": [
|
|
{
|
|
"matcher": "*",
|
|
"hooks": [
|
|
{
|
|
"type": "command",
|
|
"command": "$CLAUDE_PROJECT_DIR/.claude/hooks/notification-hook.sh"
|
|
}
|
|
]
|
|
}
|
|
],
|
|
"Stop": [
|
|
{
|
|
"matcher": "*",
|
|
"hooks": [
|
|
{
|
|
"type": "command",
|
|
"command": "$CLAUDE_PROJECT_DIR/.claude/hooks/stop-hook.sh"
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|
|
}
|