Event Hooks

claude-ultra

6 events · 8 hooks

Install
1
Install the plugin
$
npx claudepluginhub nategarelik/claude-ultra-plugin --plugin claude-ultra

Want just this hook?

Add to a custom plugin, then install with one command.

Risk Indicators
Executes bash commandsModifies filesMatches all tools
Source

Defined in ./hooks/hooks.json

Configuration
{
  "Stop": [
    {
      "hooks": [
        {
          "type": "command",
          "command": "python \"${CLAUDE_PLUGIN_ROOT}/scripts/session-archiver.py\"",
          "timeout": 15
        }
      ]
    }
  ],
  "PreToolUse": [
    {
      "hooks": [
        {
          "type": "command",
          "command": "python \"${CLAUDE_PLUGIN_ROOT}/scripts/safety-gate.py\"",
          "timeout": 5
        },
        {
          "type": "command",
          "command": "python \"${CLAUDE_PLUGIN_ROOT}/scripts/git-safety-net.py\"",
          "timeout": 10
        }
      ],
      "matcher": "Bash"
    },
    {
      "hooks": [
        {
          "type": "command",
          "command": "python \"${CLAUDE_PLUGIN_ROOT}/scripts/token-budget-guardian.py\"",
          "timeout": 10
        }
      ],
      "matcher": "*"
    }
  ],
  "PostToolUse": [
    {
      "hooks": [
        {
          "type": "command",
          "command": "python \"${CLAUDE_PLUGIN_ROOT}/scripts/post-edit-format.py\"",
          "timeout": 30
        }
      ],
      "matcher": "Edit|Write"
    }
  ],
  "SessionStart": [
    {
      "hooks": [
        {
          "type": "command",
          "command": "python \"${CLAUDE_PLUGIN_ROOT}/scripts/session-initializer.py\"",
          "timeout": 10
        }
      ]
    }
  ],
  "SubagentStop": [
    {
      "hooks": [
        {
          "type": "command",
          "command": "python \"${CLAUDE_PLUGIN_ROOT}/scripts/quality-gate.py\"",
          "timeout": 10
        }
      ]
    }
  ],
  "UserPromptSubmit": [
    {
      "hooks": [
        {
          "type": "command",
          "command": "python \"${CLAUDE_PLUGIN_ROOT}/scripts/skill-auto-activator.py\"",
          "timeout": 10
        }
      ]
    }
  ]
}
Summary
{
  "riskFlags": {
    "touchesBash": true,
    "matchAllTools": true,
    "touchesFileWrites": true
  },
  "typeStats": {
    "command": 8
  },
  "eventStats": {
    "Stop": 1,
    "PreToolUse": 3,
    "PostToolUse": 1,
    "SessionStart": 1,
    "SubagentStop": 1,
    "UserPromptSubmit": 1
  },
  "originCounts": {
    "absolutePaths": 0,
    "pluginScripts": 8,
    "projectScripts": 0
  },
  "timeoutStats": {
    "commandsWithoutTimeout": 0
  }
}
Stats
Stars0
Forks0
Last CommitDec 20, 2025
Actions

Similar Hooks