Askit init marketplace
Skill product-on-purpose/agent-skills-toolkit/skills/askit-init-marketplace
Toolkit and Standard for building, grading, and scaling cross-agent skill libraries (Claude Code + Codex) to a tiered Bronze/Silver/Gold quality bar.
npx -y skills add product-on-purpose/agent-skills-toolkit --skill askit-init-marketplaceAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Creates and validates a marketplace index that catalogs plugins for Claude Code and Codex, checking each entry, its plugin reference, and version consistency. Use when standing up a marketplace, adding a plugin to a marketplace, or validating marketplace entries.
SKILL.md
2.1 KB, as published. Nobody here has run it
askit-init-marketplace
Purpose
Scaffold and validate a distribution index that catalogs plugins, in each target's native format. create scaffolds the marketplace index per target; validate checks that every entry resolves to a real plugin and that versions are consistent. The two native formats and the entry shape are in references/marketplace-format.md.
When to use
When standing up a marketplace, adding a plugin to one, or validating marketplace entries.
create mode
- Read the target agents and the plugin roster to catalog.
- Scaffold the index per target: Claude Code
.claude-plugin/marketplace.json; Codex.agents/plugins/marketplace.json(Standard sec 12). Each entry names the plugin, its source or path, and its version. - Keep the catalog separate from any single plugin's manifest (a marketplace catalogs plugins; it is not itself a plugin).
validate mode
- Each entry resolves to a real plugin (its source/path exists and carries a
library.json). - Versions are consistent (an entry's version matches the plugin's
library.jsonversion; no dangling or duplicate entries).
Scope
A marketplace catalogs plugins for distribution; it is a separate artifact from the plugins it lists (the marketplace-vs-plugin separation rule). The Standard registers a plugin at its first tagged release, not before (sec 12); the toolkit additionally reserves its own marketplace debut for its Gold v1.0.0 tag (Decision C, a product choice, not the normative rule). This skill scaffolds and validates the index at any tier; publishing an entry waits for that first tagged release. askit-init-plugin scaffolds a plugin; this skill scaffolds the marketplace that lists plugins.