plugins marketplace
← All plugins

block-no-verify

v1.0.1

PreToolUse hook that prevents AI agents from using --no-verify, --no-gpg-sign, and other bypass flags that skip git hooks

CodexClaude Code1 skill

by cskworkMIT38.6kupdated 4 days ago

Source

git clone https://github.com/wshobson/agents

Clone the source, then follow the repository's marketplace instructions for your runtime. The plugin root is plugins/block-no-verify/ inside the repository.

Layout

plugins/block-no-verify/
├── .codex-plugin/plugin.json
├── .claude-plugin/plugin.json
└── skills/block-no-verify-hook/SKILL.md

Skills1

block-no-verify-hookskills/block-no-verify-hook/SKILL.md

Configure a PreToolUse hook to prevent AI agents from skipping git pre-commit hooks with --no-verify and other bypass flags. Use when setting up Claude Code projects that enforce commit quality gates.

Manifests2

plugins/block-no-verify/.codex-plugin/plugin.json
{
  "name": "block-no-verify",
  "version": "1.0.1",
  "description": "PreToolUse hook that prevents AI agents from using --no-verify, --no-gpg-sign, and other bypass flags that skip git hooks",
  "skills": "./skills/",
  "author": {
    "name": "cskwork"
  },
  "license": "MIT",
  "interface": {
    "displayName": "Block No Verify",
    "shortDescription": "PreToolUse hook that prevents AI agents from using --no-verify, --no-gpg-sign, and other bypass flags that skip git…",
    "category": "Coding"
  }
}
plugins/block-no-verify/.claude-plugin/plugin.json
{
  "name": "block-no-verify",
  "version": "1.0.1",
  "description": "PreToolUse hook that prevents AI agents from using --no-verify, --no-gpg-sign, and other bypass flags that skip git hooks",
  "author": {
    "name": "cskwork"
  },
  "license": "MIT"
}