A compliant skill marketplace containing reusable agent skills for AI assistants.
The marketplace.json file is the root catalog for this marketplace. It lists all available skills with their metadata and follows the schema defined in marketplace.schema.json.
| Skill | Description |
|---|---|
| build-check | Runs a structured "build vs. buy vs. borrow" analysis to prevent unnecessary building and surface modern alternatives |
| snoonu | Adds grocery items to cart via the Snoonu delivery platform in Qatar using browser automation |
| comfyui-workflow-research | Researches ComfyUI workflows, LoRAs, and custom nodes from community sources |
Each skill directory contains:
SKILL.md— Instructions for the AI agent with YAML frontmatter (name,description, optionalallowed-tools)skill.json— Machine-readable skill manifest<name>.skill— Packaged.skillarchive (zip) ready for installation
- Create a new directory under the relevant category (or at root level)
- Add a
SKILL.mdwith YAML frontmatter:--- name: my-skill description: What the skill does and when to invoke it. allowed-tools: Read, Bash # optional ---
- Add a
skill.jsonmanifest following the schema inmarketplace.schema.json - Package the skill:
zip -r my-skill.skill my-skill/ - Add the skill entry to
marketplace.json