Alison Aquinas logoAlison's LLM Plugins

claude-hook-verification

Included in pluginshared-skillsView on GitHub ↗

Files

SKILL.mdagentsreferences

Install

Install the containing plugin
/plugin install shared-skills@llm-skills
Invoke this skill after installation
/shared-skills:claude-hook-verification
Download claude-hook-verification-skill.zip
This skill is bundled inside shared-skills. Install the plugin once, then Claude Code can use any of its included skills. Browse the full plugin repository at github.com/alisonaquinas/llm-shared-skills.

SKILL.md


name: claude-hook-verification description: > Verification phase for hook automation rule development. Use when planning, designing, building, testing, validating, or refining a hook automation rule as it moves through a full delivery lifecycle. Triggers include drafting the hook spec, locking contracts, wiring runtime placement, scoring quality, running live scenarios, or choosing the right re-entry point after a failure.

Hook Verification

Run the static and contract-level checks that confirm the implementation still matches the design.

Intent Router

Load reference files on demand only when the corresponding topic is active:

  • references/verification-checklist.md — Load when confirming hook config, return shapes, and idempotency

Quick Start

[ ] Capture the current hook spec
[ ] Complete the required outputs for this phase
[ ] Record evidence for the gate
[ ] Hand off the evidence to the next phase

Phase Workflow

Start from the current hook spec and tighten only the decisions owned by this phase. Work forward until the gate is satisfied, then hand the evidence to the next phase in the family. Keep the workflow description portable even when the runtime wiring is specific to one environment.

Example Evidence

| Check | Status | Notes |
|---|---|---|
| Event contract matches design | PASS | |
| Required files present | PASS | |
| Return decisions documented | PASS | |
| Safety constraints enforced | PASS | |

Gate

Verification is complete when all required checklist items pass and no unresolved mismatch remains between design and implementation.

Safety Notes

Verification failures are upstream failures. Fix the underlying design or creation gap instead of papering over the mismatch.

Resource Index

Reference FileLoad When
references/verification-checklist.mdLoad when confirming hook config, return shapes, and idempotency
← Back to marketplace