- Add dialogue prompt file writing for audit/debugging - Update README install instructions - Add new RFCs (0053, 0055-0059, 0062) - Add recorded dialogues and expert pools - Add ADR 0018 dynamodb-portable-schema - Update TODO with hook configuration notes Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
68 lines
No EOL
1.2 KiB
Markdown
68 lines
No EOL
1.2 KiB
Markdown
Fix the heartbeat and put these back:
|
|
|
|
/Users/ericg/.claude/settings.json
|
|
```
|
|
"PreToolUse": [
|
|
{
|
|
"matcher": "blue_*",
|
|
"hooks": [
|
|
{
|
|
"type": "command",
|
|
"command": "blue session-heartbeat"
|
|
}
|
|
]
|
|
}
|
|
],
|
|
"SessionEnd": [
|
|
{
|
|
"matcher": "",
|
|
"hooks": [
|
|
{
|
|
"type": "command",
|
|
"command": "blue session-end"
|
|
}
|
|
]
|
|
}
|
|
]
|
|
```
|
|
```
|
|
{
|
|
"hooks": {
|
|
"PreToolUse": [
|
|
{
|
|
"hooks": [
|
|
{
|
|
"command": ".claude/hooks/guard-write.sh",
|
|
"type": "command"
|
|
}
|
|
],
|
|
"matcher": "Write|Edit|MultiEdit"
|
|
}
|
|
],
|
|
"SessionStart": [
|
|
{
|
|
"hooks": [
|
|
{
|
|
"command": ".claude/hooks/session-start.sh",
|
|
"type": "command"
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|
|
}
|
|
```
|
|
|
|
|
|
/Users/ericg/letemcook/blue/.claude/settings.json
|
|
```
|
|
{
|
|
"matcher": "Write|Edit|MultiEdit",
|
|
"hooks": [
|
|
{
|
|
"type": "command",
|
|
"command": "blue guard --path=\"$TOOL_INPUT:file_path\""
|
|
}
|
|
]
|
|
}
|
|
``` |