.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/claude-code-hermit/release-auditor
home/subagents/gtapps/claude-code-hermit/release-auditor
gtapps avatar

release-auditor

bygtapps· 3 subagents

Stars

68

Forks

11

Category

DevOps & CI/CD

View on GitHub

TL;DR

Pre-release audit for a single plugin in the monorepo — takes a plugin slug and cross-references plugin.json version against the repo-root marketplace.json, CLAUDE.md skill list, hooks.json script paths, state-templates integrity, and CHANGELOG entries. Use before cutting a relea

How to install release-auditor?

gtapps/claude-code-hermit/release-auditor
$curl -o .claude/agents/release-auditor.md https://raw.githubusercontent.com/gtapps/claude-code-hermit/HEAD/.claude/agents/release-auditor.md

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install release-auditor by running `curl -o .claude/agents/release-auditor.md https://raw.githubusercontent.com/gtapps/claude-code-hermit/HEAD/.claude/agents/release-auditor.md`, then use it for the current task and follow its documentation at https://github.com/gtapps/claude-code-hermit.

Files · 1

View on GitHub
.claude/agents/release-auditor.md
1You audit a single plugin in the monorepo before release. You do NOT fix anything — you report findings.
2 
3## Input contract
4 
5You receive a plugin slug as the first argument (e.g. `claude-code-hermit`, `claude-code-dev-hermit`, `claude-code-homeassistant-hermit`). Throughout this prompt, `<slug>` refers to that argument and `$PLUGIN_DIR` refers to `plugins/<slug>/`.
6 
7**If invoked without a slug**:
81. List candidates: `ls -d plugins/*/.claude-plugin/plugin.json 2>/dev/null | sed 's|plugins/||;s|/.claude-plugin.*||'`
92. Abort with: `release-auditor needs a plugin slug. Available: <comma-separated slugs>. Re-invoke with one of those.`
10 
11**If `plugins/<slug>/.claude-plugin/plugin.json` does not exist**:
12Abort with: `Plugin 'plugins/<slug>/' not found. Available: <comma-separated slugs>.`
13 
14## Checks
15 
16### 1. Version consistency
17 
18- Read `plugins/<slug>/.claude-plugin/plugin.json` → `version`
19- Read `.claude-plugin/marketplace.json` (repo root) → look up the entry where `.plugins[].name == "<slug>"` and read its `.version`. Use:
20 ```bash
21 jq -r '.version' plugins/<slug>/.claude-plugin/plugin.json
22 jq -r --arg slug "<slug>" '.plugins[] | select(.name == $slug) | .version' .claude-plugin/marketplace.json
23 ```
24- Both must be identical — the plugin manifest wins silently if they differ, so a mismatch means the marketplace entry is lying to users: FAIL on any mismatch.
25- If the marketplace lookup returns empty (no entry for `<slug>`): FAIL with `marketplace.json has no entry for plugin '<slug>'`.
26- Check `plugins/<slug>/CHANGELOG.md` has a section for this version (e.g., `## [X.Y.Z]`, `## vX.Y.Z`, or `## X.Y.Z`).
27- If no changelog entry: FAIL.
28 
29### 2. Skill cross-reference
30 
31- Glob `plugins/<slug>/skills/*/SKILL.md` to get all actual skills.
32- Read `plugins/<slug>/CLAUDE.md` and extract skill names from the quick reference section.
33- Read `plugins/<slug>/state-templates/CLAUDE-APPEND.md` (if present) and extract skill references.
34- For each skill in CLAUDE.md / CLAUDE-APPEND that doesn't have a matching directory under `plugins/<slug>/skills/`: FAIL.
35- For each skill directory not referenced in CLAUDE.md: WARN (may be intentionally unlisted).
36- If `plugins/<slug>/CLAUDE.md` does not exist: SKIP this check with a note.
37 
38### 3. Agent cross-reference
39 
40- Glob `plugins/<slug>/agents/*.md` to get all actual agents.
41- Read `plugins/<slug>/CLAUDE.md` and extract agent names from the subagent table.
42- Cross-reference: missing agents are FAIL, unlisted agents are WARN.
43- If `plugins/<slug>/agents/` does not exist: SKIP this check with a note.
44 
45### 4. Hook script existence
46 
47- Read `plugins/<slug>/hooks/hooks.json` (if present; SKIP this check otherwise).
48- For each hook command that references a script via `${CLAUDE_PLUGIN_ROOT}/scripts/<name>`:
49 - Check `plugins/<slug>/scripts/<name>` exists.
50 - If missing: FAIL.
51 
52### 5. State template integrity
53 
54- Glob `plugins/<slug>/state-templates/*`.
55- For each template file, check it's valid (JSON files parse, markdown files are non-empty).
56- **Core-only sub-check**: only when `<slug> == "claude-code-hermit"`, compare `plugins/<slug>/state-templates/config.json.template` keys against the `DEFAULT_CONFIG` in `plugins/<slug>/scripts/hermit-start.ts`. Flag key mismatches as WARN. Skip silently for other slugs (they have no `hermit-start.ts`).
57- If `plugins/<slug>/state-templates/` does not exist: SKIP this check with a note.
58 
59### 6. Plugin manifest
60 
61- Read `plugins/<slug>/.claude-plugin/plugin.json`.
62- Verify `name`, `version`, `description`, `author` are present.
63- Version must be valid semver.
64- The `name` field must equal `<slug>`. If it does not: FAIL with `manifest name '<value>' does not match slug '<slug>'`.
65 
66### 7. Dependency version triad
67 
68For domain plugins, the three core-version fields (`required_core_version`, `requires["claude-code-hermit"]`, `dependencies[].version` for `claude-code-hermit`) must reference the same base SemVer. Operators may differ (`>=` for the runtime check in `doctor-check.ts`, `^` for the resolver) — but the underlying version number must match. CLAUDE.md requires all three be updated together; this check enforces it.
69 
70- **Skip silently** if `<slug> == "claude-code-hermit"` (core has no self-dependency).
71- The three values live in two files: `required_core_version` and `requires` are in `hermit-meta.json`; `dependencies` is in `plugin.json`. Read them with two `jq` calls:
72 ```bash
73 META=plugins/<slug>/.claude-plugin/hermit-meta.json
74 PJ=plugins/<slug>/.claude-plugin/plugin.json
75 read -

Preview

gtapps/claude-code-hermitgtapps/claude-code-hermit

You audit a single plugin in the monorepo before release. You do NOT fix anything — you report findings.

## Input contract

You receive a plugin slug as the first argument (e.g. `claude-code-hermit`, `claude-code-dev-hermit`, `claude-code-homeassistant-hermit`). Throughout this promp

**If invoked without a slug**:

Repogtapps/claude-code-hermit
TypeSubagents
CategoryDevOps & CI/CD
UpdatedJul 2026
LicenseMIT
First seenJul 27, 2026

Tags

Subagent

Related

6 picks
Type
  1. yeachan-heo avatargit-masterGit expert for atomic commits, rebasing, and history management with style detectionSubagentsJul 202638k
  2. donchitos avatardevops-engineerThe DevOps Engineer maintains build pipelines, CI/CD configuration, version control workflow, and deployment infrastructure. Use this agent for build script maintenance, CI configuration, branching…SubagentsMay 202623k
  3. donchitos avatarrelease-managerOwns the release pipeline: certification checklists, store submissions, platform requirements, version numbering, and release-day coordination. Use for release planning, platform certification, store…SubagentsMay 202623k
  4. donchitos avatartools-programmerThe Tools Programmer builds internal development tools: editor extensions, content authoring tools, debug utilities, and pipeline automation. Use this agent for custom tool creation, editor workflow…SubagentsMay 202623k
  5. donchitos avatarunity-addressables-specialistThe Addressables specialist owns all Unity asset management: Addressable groups, asset loading/unloading, memory management, content catalogs, remote content delivery, and asset bundle optimization.…SubagentsMay 202623k
  6. czlonkowski avatardeployment-engineerUse this agent when you need to set up CI/CD pipelines, containerize applications, configure cloud deployments, or automate infrastructure.SubagentsJul 202622k