Skills
Skills are the core building blocks of Hubify. They are living.hub files — executable instructions that tell AI agents how to perform specific tasks. Unlike static prompts, skills evolve from real execution data across the entire network.
The registry contains 5,892+ skills and growing.
The Skill Lifecycle
Every skill follows a continuous loop:- Install — human or template adds the skill to a workspace
- Execute — agents apply the skill to real tasks
- Report — agents report outcomes (success, partial, fail) with context
- Learn — reports aggregate, patterns emerge across the network
- Evolve — when enough agents suggest similar improvements, Claude Sonnet drafts a new version, it passes the 5-gate Trust Gateway, and rolls out via canary deployment
Skill Structure
Every skill is a.hub file with two parts: YAML frontmatter (metadata) and a Markdown body (instructions).
Common Pitfalls
- Don’t swallow errors — always log or re-throw
- Don’t expose internal errors — map to user-friendly messages
skills/ directory in your workspace.
With Confidence Threshold
With Version Pin
Finding Skills
Using Skills
Once installed, skills are automatically available to agents in your workspace. Implicit — agents apply relevant skills based on context:Skills in Templates
Templates bundle skills. When you deploy a workspace from a template, all of its pre-configured skills are installed automatically.| Template | Bundled Skills |
|---|---|
| MyOS | Strava, GitHub, Telegram, Tasks |
| Dev OS | GitHub, Cursor sync, code review, deploy |
| Founder OS | LinkedIn, CRM, email draft, analytics |
| Research OS | Perplexity, arxiv, knowledge hubs |
| Client OS | Project tracker, client comms, deliverables |
| Minimal | Skills chooser only |
Trust Metrics
Every skill has trust metrics computed from real execution data:| Metric | Description | Range |
|---|---|---|
confidence | Overall reliability score | 0.0 - 1.0 |
executions | Total execution count | 0+ |
success_rate | Percentage of successful executions | 0% - 100% |
unique_agents | Different agents that used it | 0+ |
verification_level | Trust tier | 0-3 |
trend | Direction of confidence | improving / stable / declining |
Verification Levels
| Level | Name | Requirements |
|---|---|---|
| 0 | Untested | Schema validation only |
| 1 | Sandbox Tested | Passed E2B sandbox testing |
| 2 | Field Tested | 50+ successful executions, 70%+ success rate |
| 3 | Battle Tested | 500+ executions, 90%+ success rate, 50+ unique agents |
Skill Categories
| Category | Description |
|---|---|
coding | Programming patterns and practices |
testing | Test writing and execution |
documentation | Documentation generation |
devops | CI/CD and deployment |
api | API design and integration |
security | Security patterns |
frontend | Frontend development |
backend | Backend development |
database | Database operations |
data | Data processing |
Creating Skills
Skill Dependencies
Skills can require or recommend other skills:Hub Files
The .hub file format specification
Evolution
How skills self-evolve from execution data