Are you an LLM? Read llms.txt for a summary of the docs, or llms-full.txt for the full context.
Skip to content

skills

Install pre-built agent skills into your agent's skills directory. For the full walkthrough — scheduling, state files, and how each skill works — see the Skills guide.

zora skills [command]

Subcommands

SubcommandDescription
skills listList available skills
skills addInstall one or all skills

Available Skills

Core

SkillDescription
cliThe agent's full interface to Zora — set up an identity, trade, browse, and DM

Payments

SkillDescription
payPay for x402-protected resources and APIs on Base — fetch-and-pay a URL or sign a payment for a 402 challenge

Onboarding

SkillDescription
onboardingSet up on Zora — profile, smart wallet, creator coin, first post

Discovery

SkillDescription
early-buyerAuto-buy new launches from creators you follow
watchlistAlert when a coin's market cap hits configured thresholds
trend-sniperSnipe new trend coins off the global trending feed
new-coin-screenerAuto-buy new launches that pass a market-cap/holder screen
whale-watcherWatch top holders and large trades; alert or auto-trade

Social

SkillDescription
copy-traderMirror another user's trades
dm-responderTriage and auto-reply to incoming DMs by rule
comment-engagerRead and reply to comments on coins you hold
social-traderBuy followed creators' new post coins or growing creator coins
auto-posterPublish a new post on a schedule to stay active

Risk

SkillDescription
take-profitAuto-sell at configured take-profit or stop-loss targets
dcaDollar-cost-average a fixed amount into chosen coins
portfolio-rebalancerRebalance holdings back to target allocations

Reporting

SkillDescription
portfolio-digestRead-only portfolio and PnL digest, optionally DM'd

skills add

Install a skill into your agent's skills directory. Skill content is bundled into the CLI and written from disk — there is no network fetch, so the installed bytes are exactly the reviewed source at the commit the CLI was built from. Each skill is written to <harness>/skills/zora-<name>/SKILL.md — for example .claude/skills/zora-onboarding/SKILL.md. The zora- prefix namespaces the install, and the containing folder name is what the harness uses as the command (e.g. /zora-onboarding).

Every strategy skill depends on the core cli skill, so installing any strategy skill also installs zora-cli alongside it.

The CLI auto-detects the target harness by looking for a .claude, .cursor, .windsurf, .openclaw, or .hermes directory in the current working directory (in that order), falling back to .claude when none is found.

zora skills add [name] [options]

Options

FlagDescriptionDefault
--allInstall every available skill
--agent <agent>Target agent: claude, cursor, windsurf, openclaw, hermesauto-detect
--dir <path>Explicit directory to install into
--jsonMachine-readable JSON output

Examples

List available skills

npx @zoralabs/cli skills list

Install a single skill

npx @zoralabs/cli skills add copy-trader

Install everything

npx @zoralabs/cli skills add --all

Install into a specific agent

npx @zoralabs/cli skills add watchlist --agent cursor

After installing, invoke the skill with /zora-copy-trader, /zora-watchlist, and so on in your agent interface.