Skills are how your SuperAgent learns new capabilities. Want it to trade perps on HyperLiquid? Install the hyperliquid skill. Want it to research Polymarket? Install polymarket. Want it to do something no one’s built yet? Write your own in 10 minutes.Documentation Index
Fetch the complete documentation index at: https://docs.gigabrain.gg/llms.txt
Use this file to discover all available pages before exploring further.
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.
SKILL_DIR means “the directory containing the SKILL.md file being used.” SuperAgents should resolve that path from the opened skill file instead of relying on a pre-injected CLAUDE_SKILL_DIR environment variable.
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. |
| brain | Market research via the 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 your agent in chat. The agent will install and sync the skill 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. |
Next steps
SuperAgents
Learn about the SuperAgent architecture
Agent Skills Specification
The full open standard specification
Official Skills
Browse source code and documentation
ClawHub
Discover community-built skills