Event Hooks
Community

lt-dev

3 events · 11 hooks

Install
1
Install the plugin
$
npx claudepluginhub lennetech/claude-code --plugin lt-dev

Want just this hook?

Then install: npx claudepluginhub u/[userId]/[slug]

Risk Indicators
Executes bash commandsModifies files
Source

Defined in hooks/hooks.json

Configuration
{
  "Stop": [
    {
      "hooks": [
        {
          "type": "command",
          "command": "bash \"${CLAUDE_PLUGIN_ROOT}/hooks/scripts/quality-gate.sh\"",
          "timeout": 10,
          "statusMessage": "Checking for source code changes"
        }
      ]
    }
  ],
  "PreToolUse": [
    {
      "hooks": [
        {
          "type": "command",
          "command": "bash \"${CLAUDE_PLUGIN_ROOT}/hooks/scripts/validate-plugin-frontmatter.sh\"",
          "timeout": 5,
          "statusMessage": "Validating plugin frontmatter"
        }
      ],
      "matcher": "Write|Edit"
    },
    {
      "hooks": [
        {
          "type": "command",
          "command": "bash \"${CLAUDE_PLUGIN_ROOT}/hooks/scripts/block-dangerous-bash.sh\"",
          "timeout": 5,
          "statusMessage": "Checking for dangerous commands"
        }
      ],
      "matcher": "Bash"
    }
  ],
  "UserPromptSubmit": [
    {
      "hooks": [
        {
          "type": "command",
          "command": "bash \"${CLAUDE_PLUGIN_ROOT}/hooks/scripts/quality-gate-reset.sh\"",
          "timeout": 3,
          "statusMessage": "Resetting quality gate"
        },
        {
          "type": "command",
          "command": "bash \"${CLAUDE_PLUGIN_ROOT}/hooks/scripts/quality-gate-baseline.sh\"",
          "timeout": 3,
          "statusMessage": "Capturing baseline state"
        },
        {
          "type": "command",
          "command": "bash \"${CLAUDE_PLUGIN_ROOT}/hooks/scripts/detect-nuxt.sh\"",
          "timeout": 5,
          "statusMessage": "Detecting project context"
        },
        {
          "type": "command",
          "command": "bash \"${CLAUDE_PLUGIN_ROOT}/hooks/scripts/detect-nest-server.sh\"",
          "timeout": 5,
          "statusMessage": "Detecting project context"
        },
        {
          "type": "command",
          "command": "bash \"${CLAUDE_PLUGIN_ROOT}/hooks/scripts/detect-lt-cli.sh\"",
          "timeout": 5,
          "statusMessage": "Detecting project context"
        },
        {
          "type": "command",
          "command": "bash \"${CLAUDE_PLUGIN_ROOT}/hooks/scripts/detect-plugin-dev.sh\"",
          "timeout": 5,
          "statusMessage": "Detecting project context"
        },
        {
          "type": "command",
          "command": "bash \"${CLAUDE_PLUGIN_ROOT}/hooks/scripts/detect-security-context.sh\"",
          "timeout": 5,
          "statusMessage": "Detecting project context"
        },
        {
          "type": "command",
          "command": "bash \"${CLAUDE_PLUGIN_ROOT}/hooks/scripts/detect-npm-maintenance.sh\"",
          "timeout": 5,
          "statusMessage": "Detecting project context"
        }
      ]
    }
  ]
}
Summary
{
  "riskFlags": {
    "touchesBash": true,
    "matchAllTools": false,
    "touchesFileWrites": true
  },
  "typeStats": {
    "command": 11
  },
  "eventStats": {
    "Stop": 1,
    "PreToolUse": 2,
    "UserPromptSubmit": 8
  },
  "originCounts": {
    "absolutePaths": 0,
    "pluginScripts": 11,
    "projectScripts": 0
  },
  "timeoutStats": {
    "commandsWithoutTimeout": 0
  }
}
Stats
Stars0
Forks0
Last CommitMar 17, 2026

Similar Hooks