Official skill registry for OpenVole.
vole skill install web-summaryvole skill search web
vole skill search summaryvole skill hub| Skill | Description | Required Tools |
|---|---|---|
web-summary |
Browse a website and provide a concise summary | browser_navigate, browser_content |
- Create your skill locally:
vole skill create my-skill
- Edit
.openvole/skills/my-skill/SKILL.mdwith your instructions - Prepare for publishing:
vole skill publish .openvole/skills/my-skill
- Fork this repo and add your
SKILL.mdinskills/<name>/ - Create a PR — automated checks will validate format and scan for issues
---
name: my-skill
description: "What this skill does"
version: 1.0.0
requiredTools:
- tool_name_1
- tool_name_2
tags:
- category
- keyword
---
# Skill Title
Instructions for the agent when this skill is activated...| Field | Required | Description |
|---|---|---|
name |
Yes | Unique skill name (lowercase, hyphens) |
description |
Yes | One-line description shown in search results |
version |
No | Semantic version (default: 1.0.0) |
requiredTools |
No | Tools this skill needs — skill only activates when all are available |
optionalTools |
No | Tools that enhance the skill but aren't required |
tags |
No | Keywords for search discovery |
Skills activate automatically when their requiredTools are all registered in the tool registry. If web-summary requires browser_navigate and browser_content, it only activates when paw-browser is loaded.
- All skills are verified via SHA-256 hash on install
- Skills are markdown files — no executable code
- Skills can only use tools that are already registered and permitted
- Report suspicious skills by opening an issue
VoleHub skills use the same SKILL.md format as ClawHub. Skills written for OpenClaw work on OpenVole and vice versa:
# Install from ClawHub
vole clawhub install summarize
# Install from VoleHub
vole skill install web-summaryWe welcome community skills! See the publish instructions above. Keep skills focused, well-documented, and test them before submitting.
MIT
