For the complete documentation index, see llms.txt. This page is also available as Markdown.

Agent Skills

Agent Skills

Agent Skills are Markdown files (SKILL.md) that AI coding agents load on demand. They teach the agent how to integrate Panora correctly β€” which package, which method, exact-match token rules, fee-payer flow, error catalog.

Source repo: panora-exchange/agent-skills.

Install

# All four skills (auto-detects Claude Code / Cursor / Codex)
npx skills add panora-exchange/agent-skills

# Or one at a time
npx skills add panora-exchange/agent-skills --skill panora
npx skills add panora-exchange/agent-skills --skill panora-sdk
npx skills add panora-exchange/agent-skills --skill panora-widget
npx skills add panora-exchange/agent-skills --skill panora-rest

The skills CLI (vercel-labs/skills) clones the repo and symlinks the SKILL.md files into ~/.claude/skills/, ~/.cursor/skills/, ~/.codex/skills/ etc.

What each skill covers

Skill
Audience
The agent loads it when...

panora

Traders, ops devs, agents using the CLI / MCP

"Swap APT to USDC", "create a DCA", "list my limit orders"

panora-sdk

Node / browser app developers

"Integrate @panoraexchange/swap-sdk", "do a fee-payer swap"

panora-widget

Frontend engineers embedding swap UI

"Embed Panora swap in my Next.js app"

panora-rest

Python / Go / Rust / curl devs

"Call the Panora API from Python"

The agent picks the right skill based on the user's request β€” you don't pick.

What's inside a skill

Manage installed skills

  • MCP Servers β€” skills point at MCP tools; install both for the full experience.

  • CLI β€” the panora skill's anchor package.

Last updated