The One-Prompt Integration
Copy this and give it to your AI coding assistant (Claude, Cursor, Windsurf, Copilot, etc.):More Specific Examples
You can also be more specific about what you need:Adding Creem Context to Your Agent
If your agent doesn’t support reading URLs, or you want it to have Creem knowledge permanently, you can:- Copy the skill file directly — open creem.io/SKILL.md in your browser and paste its contents into your agent’s context or system prompt
- Download it locally — run
curl -s https://creem.io/SKILL.md > creem-skill.mdand add the file to your project - Use your platform’s built-in tools — most AI coding tools have their own way to add persistent context. See Setup by Tool below for platform-specific instructions
Why This Works
The skill file is a 31KB markdown document optimized for AI consumption. It’s a complete knowledge base your AI can reference instantly, covering all 24 API endpoints, 4 SDKs, 10 webhook events, CLI commands, and common integration patterns. Your AI will:- Read and understand the entire Creem platform
- Ask clarifying questions about your specific needs
- Generate production-ready code tailored to your stack
- Include security patterns and error handling automatically
Level Up: Store Monitoring
If you use OpenClaw or any persistent AI assistant, you can have your AI monitor your store and notify you about:- New sales and transactions
- Subscription cancellations
- Payment failures
- New customers
Alternative: Skills Marketplace
For Claude Code users, you can install the skill permanently:Setup by Tool
Claude Code
Claude Code
Option 1: One-time prompt (easiest)Option 2: Install the skill permanently
Cursor
Cursor
Option 1: Reference in chatOption 2: Add to projectThen reference with
@.cursor/skills/creem.mdOption 3: Add to Cursor Docs
Settings → Features → Docs → Add https://docs.creem.ioWindsurf
Windsurf
Clone the skill to your project:Add to your Cascade knowledge base in settings.
GitHub Copilot
GitHub Copilot
Reference the skill URL in your chat:
Other AI Tools
Other AI Tools
Most AI coding tools support referencing URLs or adding context files:
- Download:
curl -s https://creem.io/SKILL.md > creem-skill.md - Add to your project or AI tool’s context
- Reference when working on payments
What Your AI Will Generate
When you ask your AI to integrate Creem, expect:Checkout Flow
API route to create checkout sessions, redirect to hosted payment page, handle success
Webhook Handler
Signature verification, event routing, access grant/revoke callbacks
Subscription Management
Cancel, pause, resume, upgrade flows with proper error handling
Customer Portal
Self-service billing portal links for payment method updates