validate-marketplace

validate-marketplace is a skill for Claude Code from felipeelias/claude-marketplace. It costs 43 tokens per session (597 once invoked), scanned A, original, MIT.

A marketplace checker that compares plugin entries with their `plugin.json` manifests and checks required marketplace structure and fields.

In plain words
What is it for?
Use it to validate `marketplace.json`, plugin manifests, source paths, names, descriptions, versions, authors, categories, and licenses.
Why use it?
It catches invalid files, missing metadata, and entries that are out of sync before marketplace updates are published.

Skill for Claude Code

Written for Claude Code: PreToolUse hook event.

Good fit Use it to validate marketplace.json, plugin manifests, source paths, names, descriptions, versions, authors, categories, and licenses.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/felipeelias/claude-marketplace/validate-marketplace
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 felipeelias/claude-marketplace --skill validate-marketplace
Clone the repo
git clone --depth 1 https://github.com/felipeelias/claude-marketplace

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 validate-marketplace

README.md
[![agentmods](https://agentmods.dev/badge/skills/felipeelias/claude-marketplace/validate-marketplace/github.svg)](https://agentmods.dev/skills/felipeelias/claude-marketplace/validate-marketplace)
Your own site
<a href="https://agentmods.dev/skills/felipeelias/claude-marketplace/validate-marketplace"><img src="https://agentmods.dev/badge/skills/felipeelias/claude-marketplace/validate-marketplace/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 validate-marketplace

Your own site · 80×15
<a href="https://agentmods.dev/skills/felipeelias/claude-marketplace/validate-marketplace"><img src="https://agentmods.dev/badge/skills/felipeelias/claude-marketplace/validate-marketplace.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 43 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 597 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.00043 $0.00597
Opus 5 $0.00022 $0.00298
Sonnet 5 $0.00009 $0.00119
Haiku 4.5 $0.00004 $0.00060

Measured 12d ago against content hash 850329bfef2b, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

validate-marketplace 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 12d 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/validate-marketplace/SKILL.md · 78 lines

How it starts

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

Validate Marketplace

Validate that marketplace.json plugin entries are in sync with their corresponding plugin.json manifests and that all files follow required conventions.

Validation Checks

Run each check in order. Report all issues found, then summarize pass/fail.

1. Marketplace Structure

Verify .claude-plugin/marketplace.json exists and contains valid JSON with these required fields:

  • $schema — must reference the Anthropic marketplace schema
  • name — marketplace name in kebab-case
  • owner — object with name (and optionally email)
  • plugins — non-empty array

2. Plugin Entry Completeness

For each entry in plugins[], verify these fields are present:

Field Required Notes
name Yes kebab-case
source Yes relative path starting with ./plugins/
description Yes non-empty string
version Recommended semver format
author Recommended object with name
category Recommended one of: development, productivity, security, database, testing
license Recommended e.g. MIT, Apache-2.0

3. Plugin Source Exists

For each plugin entry with a relative source path, verify:

  • The directory at source exists
  • It contains .claude-plugin/plugin.json

4. Manifest Sync

For each plugin, compare the marketplace.json entry against the plugin's own plugin.json. Flag mismatches in:

  • name
  • description
  • version
  • author.name
  • license

The plugin.json is the source of truth. If values differ, recommend updating marketplace.json.

5. Hooks Validation

If a plugin directory contains .claude-plugin/hooks.json, verify:

  • Valid JSON
  • Has a hooks object containing at least one event key
  • Event keys are valid: PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification

Output Format

Present results as a checklist:

## Marketplace Validation Results

- [x] Marketplace structure valid
- [x] Plugin entries complete (N plugins)
- [ ] Manifest sync — version mismatch for "plugin-name" (marketplace: 0.1.0, plugin: 0.2.0)
- [x] Hooks configuration valid

Read the full file on GitHub · 78 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. 12d ago First seen · 78 lines · 43 tokens per session scan A 850329bfef2b

Subscribe to this mod's changes

validate-marketplace is a skill published in the GitHub repository felipeelias/claude-marketplace (1 stars, last pushed 4mo ago), licensed MIT. It adds 43 tokens to every session and 597 once invoked, about $0.0002 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-31.

Related

Other skills, from other repositories

create-site

Creates a new Power Pages code site (SPA) using React, Angular, Vue, or Astro. Guides through the full process from initial concept to deployed site: requirements discovery, scaffolding, component planning, design, implementation, validation, and deployment. Use when the user wants to create, build, or scaffold a new…

microsoft/power-platform-skills · 73 tokens

google-ads-audit

Google Ads account audit and business context setup. Use for account-health audits and business-context setup. Trigger on "audit my ads", "ads audit", "set up my ads", "onboard", "account overview", "how's my account", "ads health check", "what should I fix in my ads", or when the user is new to NotFair and hasn't run…

nowork-studio/notfair-plugin · 86 tokens

review

5-pass structured code review — correctness, security, performance, readability, consistency.

SethGammon/Citadel · 17 tokens

alive:system-upgrade

Upgrade ALIVE to the current version. Handles v1/v2/v3.x source states, multi-surface aware (alive-mcp / Hermes / Codex), retroactive version detection, partial-failure resume, dry-run previews, and rollback inspection.

alivecontext/alive · 57 tokens

extract-resume

Parse a resume's uploaded PDF into structured JSON (basics, experience, projects, skills, education) and save it to the editor.

suxrobGM/jobpilot · 32 tokens

ensure-pipelines-host

Ensures the tenant has a usable Power Platform Pipelines host environment before any pipeline operation runs. Detects host state via the same resolution order as the Power Apps UI (org-db setting → BAP env metadata → default-custom-host setting); if any existing host (Platform or Custom) is found, uses it. If no host…

microsoft/power-platform-skills · 222 tokens