Files
ParaWiki/.claude/settings.json
minsung 3bd01e31c9
All checks were successful
Publish ParaWiki / build-and-deploy (push) Successful in 29s
에이전트 협업 인프라 구축 — .claude/ 확장
- PLAN.md · PROGRESS.md 도입: 병렬 에이전트 조정 지점
- CLAUDE.md 린화 + 에이전트 작업 흐름 섹션 (상세는 Output/guides/로 분리)
- Output/guides/cimery-dev-guide.md, obsidian-cli.md 신설
- Agents: cimery-architect-researcher, adr-drafter
- Commands: /plan, /progress, /adr, /research, /cimery-start
- Skill: plan-commit
- Hooks: raw/ 쓰기 차단, SessionStart PLAN/PROGRESS 주입,
  wiki/ADR 변경 시 log 갱신 알림, auto-approve (deny 훅 우선 유지)
- .gitignore: .claude/ 공유 자산 포함, 로컬 상태·바이너리만 유지 제외

Closes #3

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-14 17:21:11 +09:00

101 lines
2.4 KiB
JSON

{
"permissions": {
"allow": [
"mcp__gitea__issue_write",
"Edit(/.claude/skills/ingest-raw/**)",
"Edit(/.claude/skills/query/**)",
"Edit(/.claude/skills/lint/**)",
"Edit(/.claude/skills/plan-commit/**)",
"Edit(/.claude/agents/**)",
"Edit(/.claude/commands/**)",
"Edit(/.claude/hooks/**)",
"mcp__gitea__actions_run_read",
"mcp__gitea__actions_config_read",
"Bash(obsidian:*)",
"Bash(obsidian-cli:*)"
],
"additionalDirectories": [
"d:\\myObsidian\\ParaWiki\\.claude\\skills",
"D:\\myObsidian\\ParaWiki\\.claude\\skills"
]
},
"hooks": {
"SessionStart": [
{
"hooks": [
{
"type": "command",
"command": "python ./.claude/hooks/session-start-context.py",
"timeout": 5
}
]
}
],
"UserPromptSubmit": [
{
"hooks": [
{
"type": "command",
"command": "t=$(mktemp);cat>\"$t\";e=./.claude/hooks/token-usage/claude-hook.exe;[ -x \"$e\" ] && \"$e\" session-context \"$t\";rm -f \"$t\"",
"timeout": 5
}
]
}
],
"PreToolUse": [
{
"matcher": "Write|Edit|MultiEdit",
"hooks": [
{
"type": "command",
"command": "bash ./.claude/hooks/block-raw-writes.sh",
"timeout": 3
}
]
},
{
"hooks": [
{
"type": "command",
"command": "bash ./.claude/hooks/auto-approve.sh",
"timeout": 3
}
]
}
],
"Stop": [
{
"hooks": [
{
"type": "command",
"command": "t=$(mktemp);cat>\"$t\";e=./.claude/hooks/token-usage/claude-hook.exe;[ -x \"$e\" ] && \"$e\" stop-record \"$t\";rm -f \"$t\"",
"timeout": 5
}
]
}
],
"PostToolUse": [
{
"matcher": "Bash",
"hooks": [
{
"type": "command",
"command": "t=$(mktemp);cat>\"$t\";e=./.claude/hooks/token-usage/claude-hook.exe;[ -x \"$e\" ] && \"$e\" aptabase-commit \"$t\";rm -f \"$t\"",
"timeout": 15
}
]
},
{
"matcher": "Write|Edit|MultiEdit",
"hooks": [
{
"type": "command",
"command": "bash ./.claude/hooks/wiki-log-reminder.sh",
"timeout": 3
}
]
}
]
}
}