Files
my-lotto/.claude/settings.local.json
hyeonggil 41f98ee917 🧑‍💻 dx: Claude Code 에이전트·명령어·훅 설정 추가
- agents/: dev(코드리뷰, 앱개발, UI 등), docs(PRD), notion 전문 에이전트
- commands/: git(commit/branch/merge/pr), docs 커스텀 명령어
- hooks/: notification-hook, stop-hook 알림 스크립트
- settings.local.json: MCP 서버 활성화 및 훅 설정 추가
2026-03-15 15:03:19 +09:00

39 lines
800 B
JSON

{
"permissions": {
"allow": [
"Bash(pip3 install selenium 2>&1)",
"Bash(python3 lotto_auto_buy.py 2>&1)"
]
},
"hooks": {
"Notification": [
{
"matcher": "*",
"hooks": [
{
"type": "command",
"command": "powershell -ExecutionPolicy Bypass -File \"$CLAUDE_PROJECT_DIR/.claude/hooks/notification-hook.sh\""
}
]
}
],
"Stop": [
{
"matcher": "*",
"hooks": [
{
"type": "command",
"command": "powershell -ExecutionPolicy Bypass -File \"$CLAUDE_PROJECT_DIR/.claude/hooks/stop-hook.sh\""
}
]
}
]
},
"enabledMcpjsonServers": [
"context7",
"playwright",
"sequential-thinking",
"shadcn"
]
}