Event Hooks

quoth

7 events · 9 hooks

From quoth
Install
1
Run in your terminal
$
npx claudepluginhub montinou/quoth
Risk Indicators
Executes bash commandsModifies files
Source

Defined in hooks/hooks.json

Configuration
{
  "Stop": [
    {
      "hooks": [
        {
          "type": "command",
          "command": "${CLAUDE_PLUGIN_ROOT}/hooks/stop.sh"
        }
      ],
      "matcher": "*"
    }
  ],
  "PreToolUse": [
    {
      "hooks": [
        {
          "type": "command",
          "command": "${CLAUDE_PLUGIN_ROOT}/hooks/pre-tool-gate.sh"
        }
      ],
      "matcher": "Edit|Write"
    }
  ],
  "PostToolUse": [
    {
      "hooks": [
        {
          "type": "command",
          "command": "${CLAUDE_PLUGIN_ROOT}/hooks/post-tool-log.sh"
        }
      ],
      "matcher": "Edit|Write|Bash|Read|Glob|Grep|Task"
    },
    {
      "hooks": [
        {
          "type": "command",
          "command": "${CLAUDE_PLUGIN_ROOT}/hooks/post-quoth-tool.sh"
        }
      ],
      "matcher": "quoth_*"
    }
  ],
  "SessionStart": [
    {
      "hooks": [
        {
          "type": "command",
          "command": "${CLAUDE_PLUGIN_ROOT}/hooks/session-start.sh"
        }
      ],
      "matcher": "*"
    }
  ],
  "SubagentStop": [
    {
      "hooks": [
        {
          "type": "command",
          "command": "${CLAUDE_PLUGIN_ROOT}/hooks/subagent-stop.sh"
        }
      ],
      "matcher": "!quoth-memory"
    }
  ],
  "SubagentStart": [
    {
      "hooks": [
        {
          "type": "command",
          "command": "${CLAUDE_PLUGIN_ROOT}/hooks/memory-agent-track.sh"
        }
      ],
      "matcher": "quoth-memory"
    },
    {
      "hooks": [
        {
          "type": "command",
          "command": "${CLAUDE_PLUGIN_ROOT}/hooks/subagent-start.sh"
        }
      ],
      "matcher": "!quoth-memory"
    }
  ],
  "UserPromptSubmit": [
    {
      "hooks": [
        {
          "type": "command",
          "command": "${CLAUDE_PLUGIN_ROOT}/hooks/user-prompt.sh"
        }
      ],
      "matcher": "*"
    }
  ]
}
Summary
{
  "riskFlags": {
    "touchesBash": true,
    "matchAllTools": false,
    "touchesFileWrites": true
  },
  "typeStats": {
    "command": 9
  },
  "eventStats": {
    "Stop": 1,
    "PreToolUse": 1,
    "PostToolUse": 2,
    "SessionStart": 1,
    "SubagentStop": 1,
    "SubagentStart": 2,
    "UserPromptSubmit": 1
  },
  "originCounts": {
    "absolutePaths": 0,
    "pluginScripts": 9,
    "projectScripts": 0
  },
  "timeoutStats": {
    "commandsWithoutTimeout": 9
  }
}
Stats
Parent Repo Stars0
Parent Repo Forks0
Last CommitJan 29, 2026