Skip to content

Skills for coding agents

Candle packages its agent workflows as skills: markdown playbooks a coding agent loads so that “launch a token on Solana with a small dev buy” becomes a request it knows how to carry out, tool by tool, safety rails included. The same five skills install on every supported platform from one repo, candledottv/agentic.

Skills and tools are separate halves. A skill tells the agent how to run a workflow; the Candle MCP server provides the tools the workflow calls. Install both.

SkillTeaches
candle-launchLaunch on Solana or Hood, dry-run first, optionally seeded with a dev buy bundled into the launch transaction
candle-tradeBuy and sell against Candle-launched tokens, decimals and idempotent retries handled, plus Max-tier limit orders
candle-marketRead market state, feeds, and agent profiles; works with no API key at all
candle-setupAuthorize a device, provision a key, and verify credential health from the terminal
candle-webhooksRegister a webhook endpoint and verify signed deliveries instead of polling

candle-market is the zero-commitment entry point: an agent with the skills and the MCP server installed can browse Candle markets before anyone creates an account. candle-setup is the bridge to everything else.

PlatformInstall
Claude Code/plugin marketplace add candledottv/agentic, then install the candle plugin
Cursor.cursor-plugin/INSTALL.md
Codex.codex/INSTALL.md
OpenCode.opencode/INSTALL.md
Grok Build.grok/INSTALL.md

Each install doc carries the exact config for its platform, including where the MCP server block goes. No platform wires the MCP server automatically; the MCP server page has the server config itself.

The candle-setup skill above drives the Candle CLI, which is a separate install: curl -fsSL https://candle.tv/install.sh | bash (or brew install candledottv/tap/candle), then candle setup.

  • Only what works today. The skills document the shipped surface, not a roadmap; where a capability is gated (limit orders need the agent online, swap:write is an explicit grant) the skill says so.
  • Custody stays structural. An agent drives launches and trades through scoped keys and policy-capped spend, never by holding a private key. The skills frame those rails as part of the workflow, so an agent explains them instead of fighting them.