How skills work
A skill is just a folder with aSKILL.md file and optional scripts. The SKILL.md contains markdown instructions that teach the agent what the skill does and how to use it. No SDK, no API wrapper, no boilerplate - just plain language instructions and the tools to back them up.
Official skills
These ship with every SuperAgent and cover the core trading stack:| Skill | What it does |
|---|---|
| hyperliquid | Trade perpetual futures and spot on HyperLiquid. Market, limit, bracket, and TWAP orders. Position management, account analytics. |
| polymarket | Discover, research, and trade prediction markets. Odds analysis, event tracking, portfolio management. |
| gigabrain-intel | Market research via the Gigabrain Brain API. Web search, news, sentiment analysis, on-chain insights. |
| portfolio-tracker | Portfolio overview, P&L tracking, position monitoring across chains. |
| evm-wallet | EVM wallet operations - transfers, balance checks, transaction history. |
| solana-wallet | Solana wallet operations - transfers, balance checks, token management. |
| solana-swap | Token swaps on Solana via Jupiter. |
Browse all official skills
Full source code and documentation for every official skill.
Installing skills
To install a community skill, paste the GitHub link to the skill on the agent’s Skills tab. The platform pulls the skill and syncs it to your agent automatically. Browse skills from any of these registries:skills.sh
Vercel’s open directory with 110,000+ skills. The largest Agent Skills registry.
ClawHub
OpenClaw’s registry with 2,800+ curated skills.
GitHub
Official Gigabrain skills, open source.
Writing your own skills
You don’t need to be a developer. A skill is just a markdown file that teaches your agent something new. If you can describe it clearly, your agent can learn it.Example: a simple research skill
A skill that gives your agent access to a custom data source. The SKILL.md describes what it does and how to call the script:scripts/fear_greed.py file fetches the API and prints the result. Scripts declare their own dependencies via PEP 723 inline metadata and run in isolation via uv run - no dependency conflicts between skills.
That’s it. Your agent now knows when to check market sentiment, how to call the script, and how to interpret the results.
SKILL.md format
The frontmatter defines metadata:| Field | Required | Description |
|---|---|---|
name | Yes | Lowercase, hyphens only, max 64 chars |
description | Yes | What it does and when to use it, max 1024 chars |
license | No | License identifier (e.g. “MIT”) |
compatibility | No | Environment requirements |
metadata | No | Key-value pairs (author, version, etc.) |
references/ directory for detailed documentation that loads on demand.
Managing skills
Enable or disable
From the agent’s Skills tab on the dashboard, toggle any skill on or off. The agent restarts automatically when skills change. Disabled skills are completely invisible to the agent.Skill tiers
| Tier | Source | How it works |
|---|---|---|
| Official | GigabrainGG/skills | Maintained by Gigabrain. Auto-synced to every agent. |
| Third Party | Skills manifest | Community skills synced from Git repos. |
| Custom | User-installed | Skills you write and install directly. |