Official Creem payment integration skills for AI coding assistants
npx claudepluginhub armitage-labs/creem-skillsIntegrate Creem payment infrastructure for checkouts, subscriptions, licenses, and webhooks. Complete API reference with implementation patterns.
Official Creem payment integration skills for AI coding assistants like Claude Code, Cursor, and Windsurf.
Install the Creem skill with two simple commands:
/plugin marketplace add armitage-labs/creem-skills
/plugin install creem-api@creem-skills
That's it! Claude Code now has complete knowledge of the Creem API.
Skills are structured instructions and reference materials that AI assistants use to provide more accurate, contextual help for specific tasks. When you load a skill, the AI assistant gains deep knowledge about the domain and can guide you through implementations with best practices.
A comprehensive skill for integrating the CREEM REST API. Covers:
Contents:
Skill.md - Main skill file with quick reference and implementation patternsREFERENCE.md - Complete API reference with all endpoints and schemasWEBHOOKS.md - Webhook events documentation with payload examplesWORKFLOWS.md - Step-by-step integration guides for common use casesOption 1: Plugin Marketplace (Easiest)
# Add the marketplace
/plugin marketplace add armitage-labs/creem-skills
# Install the skill
/plugin install creem-api@creem-skills
Managing the plugin:
# View installed plugins
/plugin
# Disable temporarily
/plugin disable creem-api@creem-skills
# Enable again
/plugin enable creem-api@creem-skills
# Uninstall
/plugin uninstall creem-api@creem-skills
# Update to latest version
/plugin marketplace update creem-skills
Option 2: Direct Reference
Reference the skill in any conversation:
Help me integrate Creem payments. Use the skill at https://github.com/armitage-labs/creem-skills
Clone the skill repository into your project:
git clone https://github.com/armitage-labs/creem-skills.git .cursor/skills
Reference the skill files in your conversations using @ mentions:
@.cursor/skills/creem-api/Skill.md Help me create a checkout flow
Clone the skill repository:
git clone https://github.com/armitage-labs/creem-skills.git .windsurf/creem
Add to your project's knowledge base in Windsurf settings
Most AI coding assistants support adding custom context. You can:
api-reference/openapi.json) for structured API informationskills/
├── .claude-plugin/
│ └── marketplace.json # Plugin marketplace configuration
├── creem-api/
│ ├── plugin.json # Plugin metadata
│ ├── Skill.md # Core skill instructions
│ ├── REFERENCE.md # Detailed API reference
│ ├── WEBHOOKS.md # Webhook documentation
│ └── WORKFLOWS.md # Integration patterns
└── README.md # This file
This skill focuses on the CREEM REST API. It does not cover:
creem_io) - See TypeScript SDK docs@creem_io/nextjs) - See Next.js SDK docs@creem_io/better-auth) - See Better Auth docsFor SDK-specific help, refer to the SDK documentation.
To improve this skill: