Files
fe-agent/.claude/settings.local.json
hyeonggil 5c9b13ed19 🔧 chore: Update shrimp_data subproject status and add pre-tool hook configuration
- Marked shrimp_data subproject as dirty
- Added pre-tool hook configuration to settings.local.json
2026-03-30 23:31:37 +09:00

63 lines
1.2 KiB
JSON

{
"permissions": {
"allow": [
"Read",
"Bash",
"WebFetch",
"WebSearch",
"mcp__ide",
"mcp__shadcn",
"mcp__playwright",
"mcp__sequential-thinking",
"mcp__shadcn",
"mcp__context7",
"mcp__shrimp-task-manager",
"mcp__taskmaster-ai"
],
"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"
}
]
}
],
"PreToolUse": [
{
"matcher": "*",
"hooks": [
{
"type": "command",
"command": "$CLAUDE_PROJECT_DIR/.claude/hooks/pre-tool-hook.sh"
}
]
}
],
"Stop": [
{
"matcher": "*",
"hooks": [
{
"type": "command",
"command": "$CLAUDE_PROJECT_DIR/.claude/hooks/stop-hook.sh"
}
]
}
]
}
}