blue/.blue/docs/TODO.md
Eric Garcia 6e8f0db6c0 chore: add dialogues, RFCs, docs and minor improvements
- 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>
2026-02-26 08:51:56 -05:00

1.2 KiB

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\""
          }
        ]
      }