Open Source Skills
How Claw0x uses open standards to make AI skills transparent, auditable, and composable.
Claw0x is built on the belief that AI agent skills should be transparent. When an agent calls a skill, both the developer and the agent should be able to inspect what it does, how it handles data, and what dependencies it uses.
Open-source skills on Claw0x have their source code publicly available on GitHub. This means:
- You can read the code before using a skill
- Automated security scans (OSV) can check for vulnerabilities
- The community can report issues and suggest improvements
- AI agents can read the SKILL.md to understand capabilities
Not all skills are open source — some sellers keep their implementation private. But open-source skills get higher trust scores and are preferred by the automated discovery system.
Every Claw0x skill can include a SKILL.md file in its repository. This is a structured markdown document that serves as both human documentation and machine-readable metadata.
SKILL.md Structure
--- skill_name_id: my-skill description: One-line description for agent discovery allowed_tools: computer, text_editor --- # My Skill ## When to use - Trigger phrase 1 - Trigger phrase 2 ## Prerequisites - What the user needs before calling ## API Call ```bash curl -X POST https://api.claw0x.com/v1/call ... ``` ## Input Parameters | Parameter | Type | Required | Description | |-----------|------|----------|-------------| | query | string | yes | The search query | ## Output | Field | Type | Description | |---------|--------|-------------| | results | array | Search results | ## Error Handling | Code | Description | Handling | |------|-------------|----------| | 400 | Bad input | Check parameters | ## Pricing - $0.005 per call - Free tier: 100 calls/day
How SKILL.md is used:
- The YAML frontmatter (
skill_name_id,description) is indexed for agent auto-discovery - The markdown body is rendered as rich documentation on the skill detail page
- Sections like "When to use" become trigger phrases that help AI agents match skills to tasks
- Input/Output tables are parsed and displayed as interactive schema viewers
- Code blocks get syntax highlighting and copy buttons
The OpenClaw CLI is an open-source command-line tool for managing skills in your agent project.
# Install globally npm install -g @claw0x/cli # Search for skills npx @claw0x/cli search "web scraper" # Add a skill to your agent npx @claw0x/cli add scrape # List installed skills npx @claw0x/cli list # Browse the catalog npx @claw0x/cli browse
When you run add, the CLI fetches the skill's SKILL.md and schema, then updates your project's SOUL.md with the skill's configuration. Your agent can then invoke the skill through the Claw0x gateway.
A Claw0x skill is a serverless function that receives JSON input and returns JSON output. The typical structure:
my-skill/ ├── handler.ts # The skill logic (serverless function) ├── SKILL.md # Documentation & metadata └── package.json # Dependencies
handler.ts
The core function. Receives a request with JSON input, processes it, and returns a JSON response. Skills are stateless — each call is independent.
SKILL.md
Documentation and metadata. Parsed by the platform for catalog display, agent discovery, and schema validation.
Deployment
Skills are deployed as serverless functions. The Claw0x gateway routes API calls to the skill's endpoint, handles authentication, billing, and error tracking.
Open-source skills benefit from additional quality signals:
Automated Security Scanning
Dependencies are scanned against the OSV vulnerability database
Source Code Inspection
Anyone can read the code and verify what the skill does
License Transparency
License type (MIT, Apache 2.0, etc.) is displayed on the skill page
Higher Trust Score
Open-source skills receive a trust score boost in the ranking algorithm
Skill Lifecycle Guide — Full buyer journey from discovery to production
OpenClaw CLI Docs — Install and manage skills from the terminal
Sell a Skill — Publish your own open-source skill
Browse Skills — See open-source skills in the catalog
