Agent skills are a standardized way to give AI agents instructions on how to integrate Paddle. They give your agent specialized knowledge and instructions for specific Paddle workflows, helping it to build integrations faster and more accurately.
AI agents can make mistakes
Skills make agents more accurate, not infallible. Always review the code an agent writes before merging or deploying it, especially around authentication, webhook secrets, and access gating.
How it works
Skills tell an agent how to use Paddle in code, with framework-specific patterns, verification instructions, and best practices. They're written specifically for agents, rather than humans.
They complement the docs MCP server, which gives agents knowledge of Paddle, and the Paddle MCP server, which lets agents take actions in Paddle. Skills are deliberately short and focused, so agents know exactly what to do. They include links to the relevant docs and MCP tool calls.
Agents automatically load skills on demand when their description matches the task they're working on.
Discovery and verification
Paddle publishes skills using the agent skills discovery RFC. This means agents should be able to automatically discover the skills when hitting developer.paddle.com
The RFC is still in progress, so you can ask your agent to fetch the index at:
https://developer.paddle.com/.well-known/agent-skills/index.jsonSkills are also available on GitHub at @PaddleHQ/paddle-agent-skills.
Available skills
| Skill | What it covers |
|---|---|
paddle-billing-history | Render the authenticated user's billing history in Next.js โ listing transactions via the Paddle Node SDK, the mandatory customer-id filter, pagination via `.next()`/`.hasMore`, status filtering, and formatting raw transaction totals (lowest-unit conversion + Intl.NumberFormat, with the zero-decimal currency special case for JPY/KRW/CLP). |
paddle-catalog-setup | Create the Paddle products and prices that other Paddle skills depend on โ try MCP tools first, fall back to a Node SDK seed script, or dictate dashboard steps as a last resort. |
paddle-checkout-web | Add a Paddle Checkout to a Next.js web app โ overlay or inline, with event handling, customer pre-fill, and dynamic line item updates. |
paddle-customer-portal | Mint a Paddle customer portal session URL from a Next.js Server Action โ the portal-vs-custom-billing-screen trade-off, auth, ownership, URL structure (overview vs deep links), and the security model. |
paddle-pricing-pages | Render country-localized prices on a Next.js pricing page using Paddle.js PricePreview โ country detection, billing frequency toggle, and currency formatting. |
paddle-sandbox-testing | Test a Paddle integration end-to-end using the sandbox environment, test cards, the webhook simulator, and local tunnels โ without taking real money. |
paddle-subscription-cancel | Cancel a Paddle subscription from a Next.js Server Action โ auth, ownership check, safe `effectiveFrom` default, revalidation, and the `canceled` vs `scheduledChange` distinction. |
paddle-subscription-sync | Mirror Paddle subscription and customer state into your database via webhooks โ schema, upsert pattern, status semantics, scheduled changes, and access gating. |
paddle-subscription-update | Change a Paddle subscription's plan from a Next.js Server Action โ auth, ownership check, `prorationBillingMode`, items-array replace semantics, preview-before-commit, and `on_payment_failure` handling. |
paddle-webhooks | Receive and verify Paddle webhooks in a Next.js Route Handler โ signature verification, idempotency, retry semantics, and local testing. |
Each skill is self-contained, but several link to each other. For example, paddle-subscription-sync assumes you have paddle-webhooks working.
Install in your project
Claude Code plugin
If you use Claude Code, the fastest way to install all the skills is via the official Paddle plugin. The plugin also wires up the Paddle docs MCP server for you.
/plugin marketplace add PaddleHQ/paddle-agent-skills/plugin install paddle@paddle-agent-skillsTo update later, run /plugin marketplace update paddle-agent-skills.
Skills CLI
For Cursor, Windsurf, and other agent tools that support the agent skills discovery RFC, use the skills CLI:
pnpm dlx skills add https://developer.paddle.com/npx skills add https://developer.paddle.com/npx skills add https://developer.paddle.com/Manual installation
Save each skill in the .agents/skills directory. For example, to install the paddle-webhooks skill:
mkdir -p .agents/skills # if not createdcurl -fsSL https://developer.paddle.com/.well-known/skills/paddle-webhooks/SKILL.md \ -o .agents/skills/paddle-webhooks/SKILL.mdRepeat for each skill you want available. Claude Code loads skills on demand when their description matches the task you're working on.
To install all skills at once:
for slug in paddle-billing-history paddle-catalog-setup paddle-checkout-web \ paddle-customer-portal paddle-pricing-pages paddle-sandbox-testing \ paddle-subscription-cancel paddle-subscription-sync \ paddle-subscription-update paddle-webhooks; do mkdir -p .agents/skills/$slug # if not created curl -fsSL https://developer.paddle.com/.well-known/skills/$slug/SKILL.md \ -o .agents/skills/$slug/SKILL.mddoneYou can also fork the @PaddleHQ/paddle-agent-skills repository and add the SKILL.md files to your agent's rules or context directory.
Fork or clone paddle-agent-skills on GitHub
Update skills
Paddle updates skills periodically as features are added or changed. Re-fetch periodically (or have your CI do it) to make sure your local copies stay current.