Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
affaan-m avatar

Gateguard

  • 1.4k installs
  • 238k repo stars
  • Updated August 5, 2026
  • affaan-m/ecc

This is a copy of gateguard by affaan-m - installs and ranking accrue to the original listing.

gateguard is a PreToolUse fact-forcing hook skill that blocks agent edits until concrete file structures, schemas, and import graphs are investigated for developers whose agents guess instead of reading the codebase.

About

gateguard is a Claude Code skill from affaan-m/ecc implementing GateGuard, a PreToolUse hook that forces investigation before any file edit. Instead of LLM self-evaluation prompts like are you sure, gateguard demands concrete facts—actual paths, schema fields, date formats, and import dependencies—so the act of reading creates awareness self-checks never provide. Developers activate it on multi-module codebases, data files with strict schemas, and teams requiring AI edits to match existing patterns. The skill targets workflows where agents tend to hallucinate file layout or API shapes, turning pre-edit investigation into a hard gate rather than a soft suggestion.

  • PreToolUse hook that blocks first Edit/Write/Bash attempt
  • Three-stage gate: DENY → FORCE investigation → ALLOW retry
  • Demands concrete facts such as importers, data schemas, and user instructions
  • Measurably improves output quality by +2.25 points vs ungated agents
  • Bypasses ineffective self-evaluation by forcing real tool calls like Grep and Read

Gateguard by the numbers

  • 1,373 all-time installs (skills.sh)
  • +82 installs in the week ending Aug 5, 2026 (Skillselion tracking)
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/affaan-m/ecc --skill gateguard

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs1.4k
repo stars238k
Last updatedAugust 5, 2026
Repositoryaffaan-m/ecc

How do you stop agents guessing before file edits?

Stop an agent from guessing file structures, schemas, or import graphs and force concrete investigation before any edit.

Who is it for?

Developers using Claude Code on multi-module repos where agents must read schemas, imports, and data formats before editing.

Skip if: Greenfield prototypes with no existing patterns or teams that only need API OAuth gate patterns rather than pre-edit codebase investigation.

When should I use this skill?

An agent is about to edit files in a multi-module codebase, work with strict data schemas, or has a history of guessing paths and imports.

What you get

PreToolUse investigation gate with verified file paths, schema facts, and import graphs recorded before edits proceed.

  • PreToolUse gate configuration
  • investigation checklists
  • verified edit prerequisites

Files

SKILL.mdMarkdownGitHub ↗

GateGuard — Fact-Forcing Pre-Action Gate

A PreToolUse hook that forces Claude to investigate before editing. Instead of self-evaluation ("are you sure?"), it demands concrete facts. The act of investigation creates awareness that self-evaluation never did.

When to Activate

  • Working on any codebase where file edits affect multiple modules
  • Projects with data files that have specific schemas or date formats
  • Teams where AI-generated code must match existing patterns
  • Any workflow where Claude tends to guess instead of investigating

Core Concept

LLM self-evaluation doesn't work. Ask "did you violate any policies?" and the answer is always "no." This is verified experimentally.

But asking "list every file that imports this module" forces the LLM to run Grep and Read. The investigation itself creates context that changes the output.

Three-stage gate:

1. DENY  — block the first Edit/Write/Bash attempt
2. FORCE — tell the model exactly which facts to gather
3. ALLOW — permit retry after facts are presented

No competitor does all three. Most stop at deny.

Evidence

Two independent A/B tests, identical agents, same task:

TaskGatedUngatedGap
Analytics module8.0/106.5/10+1.5
Webhook validator10.0/107.0/10+3.0
Average9.06.75+2.25

Both agents produce code that runs and passes tests. The difference is design depth.

Gate Types

Edit / MultiEdit Gate (first edit per file)

MultiEdit is handled identically — each file in the batch is gated individually.

Before editing {file_path}, present these facts:

1. List ALL files that import/require this file (use Grep)
2. List the public functions/classes affected by this change
3. If this file reads/writes data files, show field names, structure,
   and date format (use redacted or synthetic values, not raw production data)
4. Quote the user's current instruction verbatim

Write Gate (first new file creation)

Before creating {file_path}, present these facts:

1. Name the file(s) and line(s) that will call this new file
2. Confirm no existing file serves the same purpose (use Glob)
3. If this file reads/writes data files, show field names, structure,
   and date format (use redacted or synthetic values, not raw production data)
4. Quote the user's current instruction verbatim

Destructive Bash Gate (every destructive command)

Triggers on: rm -rf, git reset --hard, git push --force, drop table, etc.

1. List all files/data this command will modify or delete
2. Write a one-line rollback procedure
3. Quote the user's current instruction verbatim

Routine Bash Gate (once per session)

1. The current user request in one sentence
2. What this specific command verifies or produces

Quick Start

Option A: Use the ECC hook (zero install)

The hook at scripts/hooks/gateguard-fact-force.js is included in this plugin. Enable it via hooks.json.

If GateGuard blocks setup or repair work, start the session with ECC_GATEGUARD=off. For hook-level control, keep using ECC_DISABLED_HOOKS with the GateGuard hook ID.

Option B: Full package with config

pip install gateguard-ai
gateguard init

This adds .gateguard.yml for per-project configuration (custom messages, ignore paths, gate toggles).

Anti-Patterns

  • Don't use self-evaluation instead. "Are you sure?" always gets "yes." This is experimentally verified.
  • Don't skip the data schema check. Both A/B test agents assumed ISO-8601 dates when real data used %Y/%m/%d %H:%M. Checking data structure (with redacted values) prevents this entire class of bugs.
  • Don't gate every single Bash command. Routine bash gates once per session. Destructive bash gates every time. This balance avoids slowdown while catching real risks.

Best Practices

  • Let the gate fire naturally. Don't try to pre-answer the gate questions — the investigation itself is what improves quality.
  • Customize gate messages for your domain. If your project has specific conventions, add them to the gate prompts.
  • Use .gateguard.yml to ignore paths like .venv/, node_modules/, .git/.

Related Skills

  • safety-guard — Runtime safety checks (complementary, not overlapping)
  • code-reviewer — Post-edit review (GateGuard is pre-edit investigation)

Related skills

How it compares

Pick gateguard for pre-edit fact-forcing on code changes; pick API authorization pattern skills when the problem is endpoint access control design.

FAQ

What does gateguard block?

gateguard is a PreToolUse hook that prevents file edits until agents supply concrete facts—real paths, schema fields, import dependencies—not LLM self-assessment. Investigation must precede any edit.

Why use gateguard over self-evaluation prompts?

gateguard replaces ineffective are-you-sure self-checks with mandatory codebase investigation. Reading actual structures creates awareness that verbal confirmation from the model does not.

AI & Agent Buildingagentsautomation

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.