Files
nuxt-claude/.claude/settings.local.json
NEW_GIL_HOME\hyeon 196a0478c7
Some checks failed
ci / ci (22, ubuntu-latest) (push) Failing after 25m7s
feat: Update Claude hooks to PowerShell scripts and add Notion DB expert agent
- Replaced shell scripts with PowerShell scripts for notification and stop hooks to improve compatibility on Windows.
- Introduced a new agent, `notion-db-expert`, for managing Notion API interactions, including detailed guidelines and examples for database operations.
- Updated settings to reflect the new PowerShell command paths in `.claude/settings.local.json`.
- Added documentation for the new agent in `docs/PRD_PROMPT.md` and `docs/PRD.md` to support project development.
2026-03-15 14:27:32 +09:00

48 lines
1022 B
JSON

{
"permissions": {
"allow": [
"Read",
"Bash",
"WebFetch",
"WebSearch",
"mcp__ide",
"mcp__shadcn",
"mcp__playwright",
"mcp__sequential-thinking",
"mcp__shadcn__search_items_in_registries",
"mcp__context7__resolve-library-id",
"mcp__context7__get-library-docs"
],
"deny": [],
"ask": []
},
"enableAllProjectMcpServers": true,
"enabledMcpjsonServers": [
"playwright"
],
"hooks": {
"Notification": [
{
"matcher": "*",
"hooks": [
{
"type": "command",
"command": "powershell -ExecutionPolicy Bypass -File \"$CLAUDE_PROJECT_DIR/.claude/hooks/notification-hook.ps1\""
}
]
}
],
"Stop": [
{
"matcher": "*",
"hooks": [
{
"type": "command",
"command": "powershell -ExecutionPolicy Bypass -File \"$CLAUDE_PROJECT_DIR/.claude/hooks/stop-hook.ps1\""
}
]
}
]
}
}