askill
global-hook-setup

global-hook-setupSafety 90Repository

Use when setting up global hooks for Claude Code enforcement. Load when ~/.claude/hooks/ is missing or incomplete, or when explicitly requested. Installs 7 project-agnostic hooks (state transitions, git hygiene, outcome tracking). Run once per machine.

5 stars
1.2k downloads
Updated 1/2/2026

Package Files

Loading files...
SKILL.md

Global Hook Setup

One-time setup for global Claude Code hooks. These hooks work across all projects.

Purpose

Installs 8 project-agnostic hooks that enforce DESIGN-v2 determinism:

  • State machine integrity
  • Git hygiene
  • Learning layer (outcome tracking)
  • Session checkpoints

When to Use

SituationAction
First time setupRun full setup
~/.claude/hooks/ missingRun full setup
After updating hooksRe-run setup
Manual verificationRun verify script

Quick Check

# Check if global hooks exist
ls ~/.claude/hooks/

Expected output:

verify-state-transition.py
require-commit-before-tested.py
require-outcome-update.py
link-feature-to-trace.py
markdownlint-fix.sh
remind-decision-trace.sh
session-end.sh
feature-commit.sh

Setup Steps

1. Install Hooks

~/.claude/skills/global-hook-setup/scripts/setup-global-hooks.sh

This creates:

  • ~/.claude/hooks/ directory
  • 8 hook files
  • Executable permissions (chmod +x)

2. Verify Installation

~/.claude/skills/global-hook-setup/scripts/verify-global-hooks.sh

Hooks Installed

HookEventPurposeBlocks?
verify-state-transition.pyPreToolUseValid state transitions onlyYes
require-commit-before-tested.pyPreToolUseGit clean before testedYes
require-outcome-update.pyPreToolUseUpdate trace outcomeYes
link-feature-to-trace.pyPostToolUseAuto-link featuresNo
markdownlint-fix.shPostToolUseAuto-fix .md lintingNo
remind-decision-trace.shSessionEndRemind to log decisionsNo
session-end.shSessionEndCheckpoint commitNo
feature-commit.shCLI utilityFeature commit helperN/A

Note: feature-commit.sh is a CLI utility (not a hook). Use: ~/.claude/hooks/feature-commit.sh <feature-id> [message]

Settings.json Configuration

Setup script configures ~/.claude/settings.json:

{
  "hooks": {
    "PreToolUse": [
      {
        "matcher": "Write|Edit",
        "hooks": [
          {"type": "command", "command": "python3 ~/.claude/hooks/verify-state-transition.py"},
          {"type": "command", "command": "python3 ~/.claude/hooks/require-commit-before-tested.py"},
          {"type": "command", "command": "python3 ~/.claude/hooks/require-outcome-update.py"}
        ]
      }
    ],
    "PostToolUse": [
      {
        "matcher": "Write|Edit",
        "hooks": [
          {"type": "command", "command": "python3 ~/.claude/hooks/link-feature-to-trace.py"},
          {"type": "command", "command": "/bin/bash ~/.claude/hooks/markdownlint-fix.sh"}
        ]
      }
    ],
    "SessionEnd": [
      {
        "hooks": [
          {"type": "command", "command": "/bin/bash ~/.claude/hooks/session-end.sh"},
          {"type": "command", "command": "/bin/bash ~/.claude/hooks/remind-decision-trace.sh"}
        ]
      }
    ]
  }
}

Exit Criteria (Code Verified)

# Directory exists
[ -d ~/.claude/hooks ]

# All hooks exist and executable
[ -x ~/.claude/hooks/verify-state-transition.py ]
[ -x ~/.claude/hooks/require-commit-before-tested.py ]
[ -x ~/.claude/hooks/require-outcome-update.py ]
[ -x ~/.claude/hooks/link-feature-to-trace.py ]
[ -x ~/.claude/hooks/markdownlint-fix.sh ]
[ -x ~/.claude/hooks/remind-decision-trace.sh ]
[ -x ~/.claude/hooks/session-end.sh ]
[ -x ~/.claude/hooks/feature-commit.sh ]

# Verify script passes
~/.claude/skills/global-hook-setup/scripts/verify-global-hooks.sh

Scripts

ScriptPurpose
setup-global-hooks.shMain setup (install + configure + validate)
configure-settings.pyConfigure settings.json with hook entries
validate-settings.pyValidate hooks configured in settings.json
verify-global-hooks.shVerify hook files exist
install-hooks.shCopy from templates

Troubleshooting

ProblemSolution
Hooks not foundRe-run setup script
Permission deniedRun: chmod +x ~/.claude/hooks/*
Verification failsCheck hook syntax, ensure python3 available
Already existsSetup is idempotent, safe to re-run

Next Steps

After global hooks: Set up project-specific hooks with project-hook-setup skill.

Install

Download ZIP
Requires askill CLI v1.0+

AI Quality Score

93/100Analyzed 2/19/2026

High-quality technical reference skill for setting up global Claude Code hooks. Provides comprehensive setup instructions with specific commands, tables documenting 8 hooks, settings.json configuration, verification steps, and troubleshooting. Well-structured with clear when-to-use guidance, making it highly actionable and reusable across machines. Minor gap is lack of brief intro paragraph, but otherwise complete."

90
95
90
92
95

Metadata

Licenseunknown
Version-
Updated1/2/2026
Publisheringpoc

Tags

llm