validator-protocol

validator-protocol is a skill for Claude Code from gustavo-meilus/superpipelines. It costs 38 tokens per session (1,745 once invoked), scanned A, original, MIT.

A supporting skill that supplies the operating rules for validating YAML configuration files in the parity-test-h pipeline. It checks that the input exists, can be read, and contains valid YAML.

In plain words
What is it for?
Use it behind the run-parity-test-h entry skill to check required configuration fields and write validator findings as JSON.
Why use it?
It gives the validator consistent responses for missing, empty, or malformed configuration files and records validation status and findings.

Skill for Claude Code

Written for Claude Code: disable-model-invocation in frontmatter. Also seen: built for cline.

Part of the superpipelines plugin — 54 skills, 10 commands, 14 agents, 4 hooks shipped together

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/gustavo-meilus/superpipelines/validator-protocol
Any agent
npx skills add gustavo-meilus/superpipelines --skill validator-protocol
Clone the repo
git clone --depth 1 https://github.com/gustavo-meilus/superpipelines

Made for: Claude Code.

Or install superpipelines, the plugin that ships this one along with the rest of its 54 skills, 10 commands, 14 agents, 4 hooks.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for validator-protocol

README.md
[![agentmods](https://agentmods.dev/badge/skills/gustavo-meilus/superpipelines/validator-protocol.svg)](https://agentmods.dev/skills/gustavo-meilus/superpipelines/validator-protocol)
Your own site
<a href="https://agentmods.dev/skills/gustavo-meilus/superpipelines/validator-protocol"><img src="https://agentmods.dev/badge/skills/gustavo-meilus/superpipelines/validator-protocol.svg" alt="Measured on agentmods" height="20"></a>
Per session 38 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,745 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00038 $0.01745
Opus 5 $0.00019 $0.00873
Sonnet 5 $0.00008 $0.00349
Haiku 4.5 $0.00004 $0.00175

Measured 6d ago against content hash cabd1a0a2d16, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

validator-protocol scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.superpipelines/skills/superpipelines/parity-test-h/validator-protocol/SKILL.md · 158 lines

How it starts

The opening of the file, as written. The whole thing — 158 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Validator — Operational Protocol

Protocol

1. DISCOVER

  1. Read inputs from the orchestrator execution context:
    • input_path: path to the input YAML config file to read.
    • findings_output_path: path where validator-findings.json must be written.
    • state_path: path to pipeline-state.json for status updates.
    • run_id: current run identifier.
    • root: resolved scope root.
  2. Verify input_path exists and is a readable file. If not: update pipeline-state.json phases[0].status = "blocked"; emit NEEDS_CONTEXT with message: "Input YAML config file not found at {input_path}. Provide a valid path and re-run."
  3. Read the file content and parse it as YAML. If the file is empty: write a zero-findings validator-findings.json and emit DONE_WITH_CONCERNS with message: "Input file at {input_path} is empty. Findings file written with zero entries."
  4. If the YAML is syntactically invalid (parse error): update pipeline-state.json phases[0].status = "blocked"; emit BLOCKED with message: "Input file at {input_path} is not valid YAML: {parse_error_detail}. Fix the syntax and re-run."

2. PROCESS

Step 2.1 — Check required fields:

Verify each of the following fields is present at the top level of the parsed YAML document:

name, version, environment, timeout, resources

For each missing field, create a finding:

{
  "id": "F-{NNN}",
  "category": "required_field",
  "key": "{field_name}",
  "message": "Required field '{field_name}' is missing.",
  "severity": "error"
}

Read the full file on GitHub · 158 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 6d ago First seen · 158 lines · 38 tokens per session scan A cabd1a0a2d16

Subscribe to this mod's changes

validator-protocol is a skill published in the GitHub repository gustavo-meilus/superpipelines (4 stars, last pushed 1mo ago), licensed MIT. It adds 38 tokens to every session and 1,745 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

Email Composer

Draft professional emails for various contexts including business, technical, and customer communication. Use when the user needs help writing emails or composing professional messages.

Justdvp/claude-code-templates · 31 tokens

Excel Analysis

Analyze Excel spreadsheets, create pivot tables, generate charts, and perform data analysis. Use when analyzing Excel files, spreadsheets, tabular data, or .xlsx files.

Justdvp/claude-code-templates · 36 tokens

Git Commit Helper

Generate descriptive commit messages by analyzing git diffs. Use when the user asks for help writing commit messages or reviewing staged changes.

Justdvp/claude-code-templates · 29 tokens

multi-agent-skill-sharing

Install a skill once and make it usable across multiple AI coding agents (Claude Code, Codex CLI, Cursor, Gemini CLI, Cline, etc.) that work on the same repository. Use this when the user wants a skill / ruleset / prompt to be shared and switchable across several AI products, asks "why can only one tool use this…

BreetyGreen/Myco · 141 tokens

pdf

Comprehensive PDF manipulation toolkit for extracting text and tables, creating new PDFs, merging/splitting documents, and handling forms. When Claude needs to fill in a PDF form or programmatically process, generate, or analyze PDF documents at scale.

Justdvp/claude-code-templates · 50 tokens

xlsx

Comprehensive spreadsheet creation, editing, and analysis with support for formulas, formatting, data analysis, and visualization. When Claude needs to work with spreadsheets (.xlsx, .xlsm, .csv, .tsv, etc) for: (1) Creating new spreadsheets with formulas and formatting, (2) Reading or analyzing data, (3) Modify…

Justdvp/claude-code-templates · 96 tokens