Claude Skill MartBrowse skillsQuick linesLearn by videoTerminal guideWhat is a Skill?
Back to list

Marketplace Repo Health Check

A parallel six-inspector audit workflow for a Claude Code skills marketplace repo that verifies every serious finding before reporting it by priority.

AutomationAdvanced1,323212AI score 8/10Last updated: Aug 8, 2026

What it does

Launches a fan-out Dynamic Workflow with six independent inspectors running in parallel:

  1. Code & script safety — dangerous deletes, secret leaks, hardcoded real paths, bare except, injection, missing shebangs
  2. Docs / SSOT consistency — version drift across marketplace.json, READMEs, CHANGELOG and git releases; skill counts; broken references
  3. Security / PII — keyword-free leaks gitleaks can't catch (real names, private domains) and the .security-scan-passed marker blind spot
  4. Open-PR triage — worth-merging / needs-changes / decline-as-promotion
  5. Open-issue triage — real bugs vs skill requests vs promotion
  6. Marketplace manifest integrity — check scripts, orphans, suite registration

The real value is the discipline afterward: agent findings are treated as hypotheses. Every high/critical item must be re-verified with a one-line command, tagged ✅ real / ⚠️ partly / ❌ false alarm, and delivered as a 6-dimension health table plus 🔴 must-fix / 🟠 backlog / 🟢 optional tiers. It also bakes in hard-won rules: never "fix" a PII leak by listing the real value in a public allowlist, be honest about git-history exposure, never force-push unprompted, and require a version bump for any skill change.

Who it's for

  • Maintainers running their own Claude Code skills marketplace repo
  • Open-source repo owners who want a pre-release sweep of versions, docs, PRs and issues
  • Anyone needing a semantic (not just regex) PII review of a public repo

Examples

  • "Run a full audit before I cut the release" → six parallel inspectors, then a prioritized verified report
  • "Triage my open PRs and issues" → separates mergeable PRs from promotional ones and flags missing version bumps
  • "Is any personal info still exposed publicly?" → catches keyword-free leaks and honestly flags what remains in git history

⚠️ Prerequisites: the Workflow tool, gh CLI and jq; must run inline (not forked). Each run takes ~15-20 min and 400-500k output tokens.

· · · Install guide · · ·

Try it now, no install

Paste this into Claude to use the skill without installing anything.

Read the instructions in this file and follow them to help me:
https://raw.githubusercontent.com/daymade/claude-code-skills/HEAD/marketplace-health-check/SKILL.md

What I want: (describe your task here)

If Claude can't open the link, open it yourself and paste the contents instead.

If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.

Install in the Claude app (no terminal)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Download ZIP
Install in Claude Code

Let Claude do it — paste this into Claude Code

Install the skill I found on Claude Skill Mart.
Copy the marketplace-health-check folder from the GitHub repo daymade/claude-code-skills into my ~/.claude/skills/marketplace-health-check/.
When it's done, tell me in one line what this skill can do.

Install with a command instead

git clone https://github.com/daymade/claude-code-skills.git && mkdir -p ~/.claude/skills && cp -r claude-code-skills/marketplace-health-check ~/.claude/skills/

This is a third-party skill. Check the source repository before installing.

  1. Open a terminal.
  2. Clone the repo: git clone https://github.com/daymade/claude-code-skills.git
  3. Create the skills folder if needed: mkdir -p ~/.claude/skills
  4. Copy the skill in: cp -r claude-code-skills/marketplace-health-check ~/.claude/skills/
  5. Confirm the scripts/ and references/ folders came along — the workflow script and methodology doc are both required.
  6. Verify tooling: gh auth status and jq --version.
  7. Restart Claude Code and ask "run a health check on this repo". Confirm the time/token cost it quotes before letting it proceed.