verify-skill-supply-chain

verify-skill-supply-chain is a skill for Claude Code, Codex from astra-sh/qvr. It costs 115 tokens per session (1,450 once invoked), scanned A, original, MIT.

A security and provenance check for agent skills, which are instruction bundles and files that an agent may act on. It scans content, checks it against a locked hash, applies author trust rules, and checks its source, pinning, and signature.

In plain words
What is it for?
Use it to vet third-party skills, detect prompt-injection patterns or leaked credentials, confirm installed content has not drifted, and block unverified skills in CI.
Why use it?
It helps identify unsafe content, altered files, untrusted authors, or unverified origins before a skill is used. It can also detect later changes and make verification part of continuous integration, the automated checks run before code changes are accepted.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to vet third-party skills, detect prompt-injection patterns or leaked credentials, confirm installed content has not drifted, and block unverified skills in CI.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/astra-sh/qvr/verify-skill-supply-chain
View source ↗ astra-sh/qvr
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.

Any agent
npx skills add astra-sh/qvr --skill verify-skill-supply-chain
Clone the repo
git clone --depth 1 https://github.com/astra-sh/qvr

Made for: Claude Code, Codex.

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 verify-skill-supply-chain

README.md
[![agentmods](https://agentmods.dev/badge/skills/astra-sh/qvr/verify-skill-supply-chain/github.svg)](https://agentmods.dev/skills/astra-sh/qvr/verify-skill-supply-chain)
Your own site
<a href="https://agentmods.dev/skills/astra-sh/qvr/verify-skill-supply-chain"><img src="https://agentmods.dev/badge/skills/astra-sh/qvr/verify-skill-supply-chain/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for verify-skill-supply-chain

Your own site · 80×15
<a href="https://agentmods.dev/skills/astra-sh/qvr/verify-skill-supply-chain"><img src="https://agentmods.dev/badge/skills/astra-sh/qvr/verify-skill-supply-chain.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 115 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,450 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.00115 $0.01450
Opus 5 $0.00057 $0.00725
Sonnet 5 $0.00023 $0.00290
Haiku 4.5 $0.00012 $0.00145

Measured 11d ago against content hash 4468f48db961, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

verify-skill-supply-chain 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 11d 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.

skills/verify-skill-supply-chain/SKILL.md · 140 lines

How it starts

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

Verify the skill supply chain with qvr

A skill is code-adjacent: it ships instructions and files an agent will act on. qvr gives four independent checks — a static scan of content, a content hash drift check against the lockfile, an author trust policy per registry, and provenance (source, pinning, signature). This skill combines them into a vetting pass you can run at install time and re-run in CI.

When to use this

  • Before trusting a newly added or third-party skill.
  • To prove an installed skill hasn't been altered since it was pinned.
  • To enforce who is allowed to author skills in a given registry.
  • To gate CI on integrity (fail on drift or unverified entries).

The four checks

1. Scan content (static analysis)

qvr scan reads every file as a string — it never executes anything — and reports categories such as prompt-injection patterns, leaked credentials, hidden/bidi unicode, and risky permissions. The exit code is controlled by --fail-on (default error).

qvr scan my-skill                                   # installed name or a path
qvr scan ./skills/my-skill --fail-on critical       # only fail on the worst
qvr scan my-skill --severity warning                # show warnings and up
qvr scan my-skill --against origin/main             # only findings new vs a ref
qvr scan my-skill --format sarif > scan.sarif       # machine-readable for CI (scan has no -o; redirect)

Install-time scanning is on by default (security.scan_on_install); qvr add --no-scan opts out for a single install (prefer not to).

2. Verify content integrity (hash drift)

qvr lock verify recomputes each entry's subtree hash from disk and compares it to the recorded value, reporting ok, drift, unverified (no recorded hash), missing (worktree gone), link, or failed. It exits non-zero on drift by default so CI can gate:

qvr lock verify                          # default: drift/missing/failed are fatal
qvr lock verify --fail-on unverified     # also fail when an entry has no recorded hash
qvr lock verify --fail-on none           # report only (old behavior, exit 0)

Read the full file on GitHub · 140 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. 11d ago First seen · 140 lines · 115 tokens per session scan A 4468f48db961

Subscribe to this mod's changes

verify-skill-supply-chain is a skill published in the GitHub repository astra-sh/qvr (23 stars, last pushed 2mo ago), licensed MIT. It adds 115 tokens to every session and 1,450 once invoked, about $0.0006 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-30.

Related

Other skills, from other repositories

hyperframes-best-practices

Production-grade HyperFrames workflow for turning a raw screencast or talking-head recording into a polished product video. Covers the smart-cut pipeline (transcript + silence + scene detection with word-boundary buffers), surgical audio scrubbing (con​cat-filter rendering, adeclick, targeted transient mute), the…

anton-abyzov/vskill · 160 tokens

blotato

Blotato social-media publishing and scheduling platform — REST API + MCP server. Publish and schedule posts across X/Twitter, TikTok, Instagram, LinkedIn, YouTube, Facebook, Threads, Pinterest, and more from a single integration. Use this skill whenever the user wants to schedule, publish, queue, or batch-post content…

anton-abyzov/vskill · 164 tokens

figma-connect

Figma-to-code bridge combining Figma MCP server tools with the Code Connect CLI for end-to-end design implementation workflows. Use this skill when implementing UI components from Figma design URLs, publishing Code Connect mappings to Figma Dev Mode, extracting design tokens from Figma variables, setting up Figma Code…

anton-abyzov/vskill · 223 tokens

survey-passing

Find and complete paid expert surveys from expert network platforms (Arbolus, Guidepoint, GLG, AlphaSights, Techsponential) using the user's real professional background. Automates the mechanical form-filling of expert consultations that pay $50-$100+. Use this skill whenever the user mentions surveys, canopy, expert…

anton-abyzov/vskill · 141 tokens

frontend-design

Create distinctive, production-grade frontend interfaces with visual verification. Use this skill when the user asks to build web components, pages, landing pages, dashboards, React/Vue/Svelte components, HTML/CSS layouts, or any web UI that needs to look polished. Also activates when styling, beautifying…

anton-abyzov/vskill · 133 tokens

skill-builder

Meta-skill for creating new skills from natural language. Trigger phrases: "new skill", "create a skill", "build a skill", "make a skill", "generate a skill", "author a skill", "skill builder".

anton-abyzov/vskill · 50 tokens