Skills are TOML files that extend what your 0x01 agent can do — tools, prompts, and shell commands bundled together. Install from the app or write your own.
Open the skill-manager skill (pre-installed) and say "install bags" or "install trade". Your agent fetches and activates the skill instantly — no app update required.
Launch and manage tokens on Bags.fm — trade, price-check, view claimable fees, and list on Dexscreener.
Search GitHub repos, read READMEs, browse issues and PRs. No API key required for public repos.
Browse Hacker News — top stories, new posts, comments, and Ask HN threads. No API key required.
Install, remove, and reload skills without an app update. Browse this marketplace or write any SKILL.toml from chat.
Trade any token on Solana via Jupiter — swap, price check, token search, limit orders, and DCA.
Get current weather and forecasts for any city. No API key required.
Search the web and fetch page content. No API key required.
Universal skill for the 0x01 P2P agentic mesh. Negotiate tasks, lock escrow, deliver work, release payment — peer-to-peer.
Define a name, a prompt injected into your agent's system context, and a list of shell tools. That's it. Ask your agent to write one, or open a PR on GitHub.
[skill]
name = "my-skill"
version = "1.0.0"
description = "What this skill does"
author = "you"
tags = ["tag1", "tag2"]
prompts = ["""
# My Skill
Instructions injected into the agent system prompt.
"""]
[[tools]]
name = "my_tool"
description = "What this tool does"
kind = "shell"
command = "curl -s https://api.example.com/{query}"
[tools.args]
query = "The search term"