| title | Monetize your product in a day. |
|---|---|
| description | Set up in minutes and start selling the same day. Card, Apple Pay, and Google Pay, with subscriptions, tax, invoices, and payouts all handled for you. |
Getting paid shouldn't be harder than building, but for most founders it is: subscriptions, global cards, sales tax, chargebacks, invoices. None of it is your product, and all of it stands between you and revenue. AgentaOS runs the whole money layer so you never build a billing team to get paid.
Paste this into Cursor or Claude Code and it sets up billing and hands you a live checkout link:Read https://agentaos.ai/SKILL.md and set up AgentaOS for me.
AgentaOS is the billing and payments platform for AI founders, and a Merchant of Record. That means we become the legal seller of your product: your buyer pays AgentaOS, and we handle the payment, the VAT, the invoice, and the payout to you. You never register for tax abroad, file a cross-border return, or reconcile three processors. As the registered seller of record we carry the payment and tax liability, not you, and we are PCI-compliant and bank-grade secure. See How it works.
Cross-border VAT means registering and filing in every country you sell to. As your Merchant of Record, AgentaOS calculates, collects, and remits it, so you never file a cross-border return again. Card, Apple Pay, and Google Pay settle to one balance through one typed SDK, with tax and invoicing built in. No stitching a processor, a tax engine, and an invoicing tool together yourself. Everything, from creating a product to sending a receipt, works over a type-safe SDK, a CLI, and an MCP server, so your AI agents can run the store while you ship. Create a shareable link or reusable product. One-time or subscription. No code required. Recurring billing with automatic renewals. List, inspect, and cancel from the API, CLI, or dashboard. Tax-correct invoices issued automatically, with a PDF and a CSV export for accounting. Every payment gets an emailed receipt. Download or resend the PDF any time. Every buyer who paid you, with email, country, and VAT number. Get notified the moment a checkout completes. Signed and verifiable. `@agentaos/pay`. Type-safe, zero runtime dependencies, full API coverage. `agenta`. Manage payments, subscriptions, customers, and invoices from the terminal, with `--json` for scripts. Connect Claude, Cursor, or Windsurf and let your AI agents run your store.Your AI agents can set up and operate AgentaOS on their own. No dashboards, no clicking.
Read https://agentaos.ai/SKILL.md and set up AgentaOS for me
Give this to any AI coding agent (Claude, Cursor, Copilot, Windsurf) and it will install the CLI, sign you in, create your first product and share the link, and wire up webhooks in your codebase.
Sign up at [app.agentaos.ai](https://app.agentaos.ai). No card required. You start in test mode. Grab your test key from Settings. Keys prefixed `sk_test_` use test mode; `sk_live_` goes to production. ```bash SDK npm install @agentaos/pay ``` ```bash CLI curl -fsSL https://agentaos.ai/install | bash agenta login ``` ```typescript SDK import { AgentaOS } from '@agentaos/pay'; const agenta = new AgentaOS('sk_test_...');const link = await agenta.paymentLinks.create({
amount: 49.00, // decimal currency units, not cents
currency: 'EUR',
description: 'Pro plan',
});
console.log(link.checkoutUrl); // share this anywhere
```
```bash CLI
agenta pay checkout -a 49 -c EUR -d "Pro plan"
```
</CodeGroup>