🔧 chore: 프로젝트 설정 파일 추가 및 MCP 서버 업데이트

- .gitignore 파일 추가 (node_modules, .env, .DS_Store 등 제외)
- Claude 권한 설정 확장 및 알림/중지 훅 추가
- taskmaster-ai MCP 서버 설정 추가
This commit is contained in:
hyeonggil
2026-03-24 22:26:01 +09:00
parent d65bb12a15
commit 8257ed94bd
3 changed files with 82 additions and 4 deletions

View File

@@ -1,11 +1,50 @@
{
"permissions": {
"allow": [
"WebFetch(domain:static-pubcomm.onstove.com)"
]
"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": [
"shrimp-task-manager"
"playwright",
"context7",
"sequential-thinking",
"shadcn"
],
"enableAllProjectMcpServers": true
"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"
}
]
}
]
}
}