Skill Market
This skill enables the automated discovery and installation of specialized agent skills from the Zerone Skill Market.
Workflow
Follow these steps to find and install a skill:
1. Browse and Discover
Run the listing script to see available skills. This provides names, descriptions, and supported frameworks.
scripts/market.py list
2. Identify the Target Skill
Search the list for a skill that matches the user's request. Identify the exact name of the skill (e.g., agent-browser, imagen).
3. Check Compatibility
Get detailed information about the skill to see which frameworks it supports.
scripts/market.py info <skill-name>
Framework Matching:
- Check if the current agent framework (e.g.,
Antigravity,Claude Code,OpenCode) is in theframeworkslist. - If the current framework is NOT supported:
- STOP and inform the user that the skill does not explicitly support the current framework.
- List the available frameworks from the
infocommand. - Suggest the most similar/compatible framework (typically
OpenCodefor Antigravity-like environments). - Ask the user for permission to proceed with the suggested framework or if they would like to pick another one.
4. Get Installation Instructions
Fetch the specific installation tutorial for the chosen skill and framework.
scripts/market.py install <skill-name> <framework>
5. Execute Installation
SECURITY WARNING: DO NOT AUTO-RUN COMMANDS.
The installation tutorial will contain a set of steps or commands. Before executing any instructions:
- Require explicit user confirmation before any install action. Show the commands to the user and ask for permission.
- Verify Integrity: If the marketplace response provides signed packages or checksums, verify them.
- Review Manually/Sandbox: Review the install tutorial text manually before execution or run installs in a sandbox.
- Restrict Privileges: Restrict the installation from performing privileged filesystem or network actions unless you trust the marketplace maintainer.
Only after explicit user approval, execute the instructions to install the skill into the .agent/skills/ directory.
Current Environment Context
- Market Endpoint:
https://api.zerone.market/api - Default Language:
en(English is used for API requests as per instructions) - Local Skills path:
.agent/skills/
Example Usage
User: "Can you help me install the imagen skill from the market?"
- Agent: Runs
scripts/market.py list - Agent: Finds
imagenin the list. - Agent: Runs
scripts/market.py info imagen - Agent: Note that
Claude Codeis supported. - Agent: Runs
scripts/market.py install imagen "Claude Code" - Agent: Follows the returned tutorial steps (usually involves downloading a
.skillfile or cloning a repo into.agent/skills/).