Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

Back to skills

Hermes Gate

ASecurity

Use when a coding agent needs a bounded, receipt-bound completion rail — a cached fast gate for session-scoped deterministic checks, plus repair/review/full/boundary commands that produce exact machine-readable receipts before a commit, PR, or release is called done.

2 stars
0 votes
0 copies
0 views
Added 9/22/2026
developmentpythongobashgit

Security Analysis

A92/100
mediumInstalls packages at runtime which could introduce malicious dependencies

Scanned 9/22/2026

Install to Claude Code

$npx -y skills add hermes-labs-ai/hermes-gate --skill hermes-gate --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Hermes Gate?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Hermes Gate
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/hermes-labs-ai-hermes-gate/badge)](https://www.skillsdirectory.com/skills/hermes-labs-ai-hermes-gate)

More formats (shields.io, HTML) on the badges page.

Download Zip
Files
SKILL.md
---
name: hermes-gate
description: Use when a coding agent needs a bounded, receipt-bound completion rail — a cached fast gate for session-scoped deterministic checks, plus repair/review/full/boundary commands that produce exact machine-readable receipts before a commit, PR, or release is called done.
license: MIT
compatibility: Requires Python 3.10+; installs via `pip install hermes-gate`, executable name is `hermes-gate`. `hermes-gate init` writes a repository profile and runner into the target repo; `fast` requires that profile to exist first.
---

# hermes-gate

hermes-gate is a receipt-bound completion rail for coding agents. It runs a
declared, bounded set of deterministic checks per repository, caches the
session-scoped fast path, and refuses to report success without an exact
machine-readable receipt — closing the gap where an agent claims "done" with
no verifiable evidence.

## Use it for

- Gating a coding-agent session's completion claim against a repo-declared
  deterministic contract (`hermes-gate fast`)
- Validating an exact Git or PR boundary before merge (`hermes-gate
  boundary`)
- Running the complete declared repository contract for a release
  (`hermes-gate full`)
- Read-only diagnostics on an installation without mutating anything
  (`hermes-gate doctor`)

## Do not use it for

- A general-purpose CI runner — it wraps and gates an already-declared
  contract, it does not define your test/lint/build pipeline from scratch
- Enforcing anything in a repo that hasn't run `hermes-gate init` — `fast`
  reports `NOT_CONFIGURED` rather than inventing a check set
- Proving semantic correctness — it proves the declared checks ran and
  passed, not that the change is a good idea

## Quickstart

```bash
pip install hermes-gate
hermes-gate --help
```

Real output running `fast` against a repo with no installed profile:

```json
{
  "command": "fast",
  "elapsed_ms": 0,
  "reason": "run hermes-gate init",
  "schema": "hermes-gate/result-v1",
  "status": "NOT_CONFIGURED"
}
```

After `hermes-gate init` installs a profile, the same command runs the
repo's declared checks and returns a `PASS`/`FAIL` receipt against
`hermes-gate/result-v1`.

## Commands

```
hermes-gate init                 # install a repository profile, runner, workflow, baseline
hermes-gate fast                 # run the cached session-scoped deterministic gate
hermes-gate repair               # run one configured deterministic repair
hermes-gate review               # run one bounded independent review
hermes-gate full                 # run the complete declared repository contract
hermes-gate boundary             # validate exact receipts for a Git or PR boundary
hermes-gate doctor               # read-only installation and receipt diagnostics
```

## Output shape

- Every command returns `hermes-gate/result-v1` JSON: `command`,
  `elapsed_ms`, `status`, plus a `reason` when not `PASS`
- `status` values include `NOT_CONFIGURED`, `PASS`, `FAIL` — a missing
  profile is a distinct, explicit state, never silently treated as pass
- `doctor` is read-only and safe to run at any time to check installation
  state without side effects

## Common gotchas

- Running `fast` before `init` always returns `NOT_CONFIGURED` — this is
  correct behavior, not a bug; there is no implicit default check set.
- `boundary` validates an *exact* Git/PR boundary — it will not pass on a
  fuzzy or partial diff match.
- `full` runs the complete contract and is expected to be slower than
  `fast`; use `fast` for the per-turn session-scoped loop and `full` before
  a release.

## More

Full docs and repository-profile reference:
https://github.com/hermes-labs-ai/hermes-gate

Attribution

hermes-labs-aihermes-labs-ai
View sourceMore from hermes-labs-ai →
SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Related Skills

Browser Extension Developer

Use this skill when developing or maintaining browser extension code in the `browser/` directory, including Chrome/Firefox/Edge compatibility, content scripts, background scripts, or i18n updates.

284072 votes

Seo Optimizer

SEO optimization with keyword analysis, readability assessment, technical validation, content quality. Use for search rankings, blog posts, content audits, or encountering keyword density, readability scores, meta tags, schema markup errors.

2192 votes

Google Official Seo Guide

Official Google SEO guide covering search optimization, best practices, Search Console, crawling, indexing, and improving website search visibility based on official Google documentation

1862 votes

Tanstack Start

Build a full-stack TanStack Start app on Cloudflare Workers from scratch — SSR, file-based routing, server functions, D1+Drizzle, better-auth, Tailwind v4+shadcn/ui. Use whenever the user mentions TanStack Start, asks to scaffold a full-stack Cloudflare app with SSR, wants an SSR dashboard, or asks for a React 19 + Cloudflare Workers app with file-based routing and server functions — even if they don't name TanStack Start specifically. No template repo — Claude generates every file fresh per ...

9881 votes

Pentest

PTES-aligned adversarial security audit for backend, frontend, and mobile applications. Produces a CVSS-scored Hacker Report with verified PoCs and phased remediation.

5491 votes
View all in development →