verify

Solid

This skill should be used when the user asks to "verify protocols", "check consistency before commit", "validate definitions", "run pre-commit checks", "verify soundness", or wants to ensure epistemic protocol quality. Invoke explicitly with /verify for pre-commit validation.

AI & Automation 125 stars 11 forks Updated today MIT

Install

View on GitHub

Quality Score: 84/100

Stars 20%
70
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Protocol Verification Verify epistemic protocol consistency before commit through static checks and expert review. ## Purpose Surface potential issues in protocol definitions without blocking commits. Follow Anthropic philosophy: transparency over enforcement, user agency over automation. ## Core Principles | Principle | Implementation | |-----------|----------------| | **Surface, don't enforce** | Present findings; user decides action | | **Zero-context scripts** | Static checks run without consuming context | | **Explicit control** | User invokes `/verify` intentionally | | **Graduated severity** | Critical / Concern / Note categorization | ## Workflow ### Phase 1: Static Checks Run `scripts/static-checks.js` against project root. This script executes without loading into context. ```bash node ${SKILL_DIR}/scripts/static-checks.js ${PROJECT_ROOT} ``` **Output format**: ```json { "pass": [{ "check": "...", "file": "...", "message": "..." }], "fail": [{ "check": "...", "file": "...", "message": "..." }], "warn": [{ "check": "...", "file": "...", "message": "..." }] } ``` **Checks performed**: Structural conformance (JSON schema, Unicode notation, directive verbs, required sections, morphism anatomy, gate-type soundness), cross-reference and routing integrity (cross-reference integrity and scan, routing-index contract, onboard/catalog sync, graph integrity, precedence linear extension, partition invariant), drift prevention (version staleness, codex-manifest...

Details

Author
jongwony
Repository
jongwony/epistemic-protocols
Created
7 months ago
Last Updated
today
Language
JavaScript
License
MIT

Integrates with

Bundled in these plugins

Similar Skills

Semantically similar based on skill content — not just same category