arkhe-claude-plugins: Skill for Claude Code

.claude/skills/plugin-release-checker/SKILL.md

plugin-release-checker is a skill for Claude Code from joaquimscosta/arkhe-claude-plugins. It costs 71 tokens per session (538 once invoked), scanned A, original, MIT.

A pre-release checker for coding-agent plugins that validates their contents, metadata, documentation links, required files, and versions.

In plain words
What is it for?
Use it before releasing a plugin or running the release workflow to check one plugin or all plugins.
Why use it?
It catches release problems before a plugin is packaged or published, including broken references and inconsistent version information.

Skill for Claude Code

Written for Claude Code: argument-hint in frontmatter.

This is joaquimscosta/arkhe-claude-plugins's own configuration. It tells Claude Code how to work on arkhe-claude-plugins itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything arkhe-claude-plugins configures →

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is ./scripts/release.sh X.Y.Z ← handles git tag + GitHub Release.

Reuse

Borrowing it

Nothing to install: this file belongs to joaquimscosta/arkhe-claude-plugins. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/joaquimscosta/arkhe-claude-plugins/main/.claude/skills/plugin-release-checker/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/joaquimscosta/arkhe-claude-plugins

Made for: Claude Code.

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 plugin-release-checker

README.md
[![agentmods](https://agentmods.dev/badge/skills/joaquimscosta/arkhe-claude-plugins/plugin-release-checker/github.svg)](https://agentmods.dev/skills/joaquimscosta/arkhe-claude-plugins/plugin-release-checker)
Your own site
<a href="https://agentmods.dev/skills/joaquimscosta/arkhe-claude-plugins/plugin-release-checker"><img src="https://agentmods.dev/badge/skills/joaquimscosta/arkhe-claude-plugins/plugin-release-checker/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 plugin-release-checker

Your own site · 80×15
<a href="https://agentmods.dev/skills/joaquimscosta/arkhe-claude-plugins/plugin-release-checker"><img src="https://agentmods.dev/badge/skills/joaquimscosta/arkhe-claude-plugins/plugin-release-checker.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 71 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 538 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00071 $0.00538
Opus 5 $0.00036 $0.00269
Sonnet 5 $0.00014 $0.00108
Haiku 4.5 $0.00007 $0.00054

Measured 9d ago against content hash 824656f15520, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

plugin-release-checker 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 9d ago.

The scan reads SKILL.md. This mod also ships 4 executable files (scripts/check_release_readiness.py, scripts/validate_cross_references.py, scripts/validate_reference_staleness.py, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

.claude/skills/plugin-release-checker/SKILL.md · 74 lines

What it actually says

Plugin Release Checker

Pre-release content quality gate that complements scripts/release.sh. Run before generating the changelog or triggering the release workflow.

Quick Start

Run the validation script to check all plugins:

scripts/check_release_readiness.py --all

Check a specific plugin:

scripts/check_release_readiness.py --plugin core

Release Workflow Integration

/plugin-release-checker   ← THIS: validates plugin content quality
    ↓ (all checks pass)
/changelog                ← generates CHANGELOG entry
    ↓
./scripts/release.sh X.Y.Z  ← handles git tag + GitHub Release

Checks Performed

Check Description
Skill Validation Run skill-validator across all skills in each plugin
Marketplace Sync Verify all plugins in plugins/ have entries in marketplace.json
Version Consistency Check plugin.json versions match CHANGELOG entries
Cross-References Detect broken links in SKILL.md → WORKFLOW.md, EXAMPLES.md, etc.
Required Files Ensure each plugin has plugin.json and README.md
Frontmatter Validate YAML frontmatter in agents, commands, and skills

Output

=== Plugin Release Readiness Report ===

Plugin: core (v2.0.0)
  ✓ All skills pass validation
  ✓ Marketplace entry found
  ✓ Version consistent with CHANGELOG
  ✓ No broken cross-references

Plugin: git (v1.0.0)
  ✗ Skill 'creating-commit': 1 error (SS002: SKILL.md exceeds 500 lines)
  ✓ Marketplace entry found
  ✓ Version consistent with CHANGELOG
  ✓ No broken cross-references

Summary: 9/10 plugins ready, 1 plugin has issues

Command Options

--all                    # Check all plugins (default)
--plugin NAME            # Check specific plugin
--skip-skill-validator   # Skip skill-validator (faster, less thorough)
--format {text,json}     # Output format
Files

What ships with it

4 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 9d ago First seen · 74 lines · 71 tokens per session scan A 824656f15520

Subscribe to this mod's changes

plugin-release-checker is a skill published in the GitHub repository joaquimscosta/arkhe-claude-plugins (21 stars, last pushed 25d ago), licensed MIT. It adds 71 tokens to every session and 538 once invoked, about $0.0004 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.