Blaze

Blaze CLI v0.7.0 : Release notes (2026/06/11)

Thank you for using Blaze!


1. Run hooks around tool calls, too

Until now, Blaze CLI hooks fired around lifecycle moments such as the start and end of a session. Starting with this release, you can also run any shell command from ~/.blaze/settings.json right before (PreToolUse) and right after (PostToolUse) Blaze runs a tool.

Use matcher to narrow things down to a specific tool, so you can build your own automation — “notify me only when this tool runs”, or “log every tool call” — right on your own machine. It’s an easy way to tailor Blaze a little more to the way you work!

{
  "hooks": {
    "PreToolUse": [
      {
        "matcher": "*",
        "hooks": [
          { "type": "command", "command": "echo tool start >> ~/blaze.log" }
        ]
      }
    ]
  }
}

See hooks for details.