Labels.io

Wire an integration

The one-prompt flow, walked through with billing.

Every integration follows the same five-minute pattern. Here it is with billing as the example.

Say what you want

Tell your agent: "add billing with Stripe". The trigger table routes it to agent-skills/wire-billing.md.

The agent finds the seam

grep -rn "🔌 INTEGRATION: Billing" app/

The seam comment names every file involved and what is mock in each.

Mock becomes real

The agent swaps the mock data source for live calls, adds the env vars you need to .env, and tells you which Stripe dashboard steps only you can do (create the product, copy the keys).

Verify

The screen looks identical, because the UI never changed. The skill ends with a checklist: run through checkout in test mode, confirm the webhook fires, check the invoice list renders live data.

Wire in any order

Seams are independent. Auth, billing, chat, files: pick whichever earns you the next customer and leave the rest on mocks.

On this page