Claude Skill MartBrowse skillsWhat is a Skill?
Back to list

Marketplace Health Check

Runs a parallel six-dimension audit of a skills-marketplace repo — script safety, docs consistency, PII, PRs, issues, manifest — then reports only the findings you verified yourself.

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

What it does

Launches a parallel fan-out workflow that sweeps the repo along six independent dimensions at once:

  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, both READMEs, CHANGELOG and the git release; wrong skill counts; broken references
  3. Security / PII — keyword-free leaks gitleaks cannot catch (real names, private domains) and the limits of a .security-scan-passed marker
  4. Open-PR triage — worth-merging / needs-changes / decline-as-promotion
  5. Open-issue triage — real bugs vs skill requests vs promotion, including the broken-install-command bug class
  6. Manifest integrity — validation scripts, orphaned skills, missing registrations

The best part is the last step: agent findings are treated as hypotheses. You verify every high/critical item with a one-line command, tag it ✅ real / ⚠️ partly / ❌ false alarm, then report as 🔴 must-fix → 🟠 backlog → 🟢 optional → 💡 key insights.

Who it's for

  • Maintainers of a Claude Code skills/plugin marketplace repo
  • Anyone who wants a pre-release sweep of versions, docs and manifests in one pass
  • Owners of public repos worried about leftover real names, internal domains or personal data
  • Maintainers with a backlog of external PRs and issues needing consistent triage

Example uses

  • "Do a full sweep before I cut the release" → six inspectors run in parallel and surface two version mismatches between marketplace.json and the CHANGELOG with exact line numbers
  • "Is this safe to keep public?" → finds a real internal domain in an example file and explicitly warns against 'fixing' it by listing the real value in a public allowlist
  • "Triage my open PRs and issues" → classifies each PR and flags the ones that touched skill files without bumping the skill's version

· · · Install guide · · ·

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 /tmp/ccs && mkdir -p ~/.claude/skills && cp -r /tmp/ccs/marketplace-health-check ~/.claude/skills/ && rm -rf /tmp/ccs

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

  1. Open a terminal.
  2. Clone the repo into a temp folder: git clone https://github.com/daymade/claude-code-skills.git /tmp/ccs
  3. Make sure the skills folder exists: mkdir -p ~/.claude/skills
  4. Copy just this skill: cp -r /tmp/ccs/marketplace-health-check ~/.claude/skills/
  5. Clean up: rm -rf /tmp/ccs
  6. Confirm the scripts/ and references/ subfolders came along — the bundled workflow script is required.
  7. Install prerequisites: the GitHub CLI (gh auth status, or gh auth login if not signed in) and jq.
  8. Start Claude Code inside the repo you want to audit and ask: "run a full repo health check".
  9. Expect 15-20 minutes and a large token spend per run; review the up-front cost estimate before approving.