Superwall is a versatile skill for managing paywalls and campaigns via an API, as well as querying event data using ClickHouse. It's aimed at developers looking to integrate Superwall functionalities into their applications.
$ npx skills add https://github.com/superwall/skills --skill superwallThe Superwall skill enables developers to programmatically manage paywalls, campaigns, products, entitlements, and webhooks through Superwall's REST API. It includes ClickHouse-backed analytics for querying product data and event information. The skill also provides documentation lookup, SDK integration guidance, and dashboard access without leaving your development environment. Setup requires an org-scoped API key with appropriate permission scopes for read and write operations. Developers can use this skill to automate paywall configuration, monitor entitlements, manage campaigns, and analyze user events across their applications.
Install with `npx skills add https://github.com/superwall/skills --skill superwall`.
Making API calls to manage projects
Querying event data from ClickHouse
Analyzing revenue and subscriptions
Setting up API keys for Superwall
$ npx skills add https://github.com/superwall/skills --skill superwallgit clone https://github.com/superwall/skillsCopy the install command above and run it in your terminal.
Launch Claude Code, Cursor, or your preferred AI coding agent.
Use the prompt template or examples below to test the skill.
Adapt the skill to your specific use case and workflow.
I'm building a [COMPANY] app in the [INDUSTRY] industry and need to integrate Superwall for paywall management and campaign analytics. Can you help me configure the Superwall SDK to handle paywall events and retrieve campaign performance data from ClickHouse? Here's the current [DATA] I have: [PAYWALL_CONFIGURATION].
# Superwall Paywall & Analytics Integration Report
## Paywall Configuration Summary
- **SDK Version**: 2.4.1 (iOS)
- **Paywall Templates Active**: 3 (Premium, Pro, Team)
- **A/B Test Groups**: 2 (Control: 45%, Variant: 55%)
## Key Metrics (Last 7 Days)
| Metric | Value |
|--------|-------|
| Paywall Impressions | 12,487 |
| Conversions | 842 (6.75%) |
| Revenue Generated | $18,245.32 |
| Avg. Revenue Per Paywall (ARPP) | $21.67 |
## ClickHouse Query Results
```sql
SELECT
campaign_id,
event_type,
COUNT(*) as event_count,
SUM(revenue) as total_revenue
FROM superwall_events
WHERE event_date >= today() - 7
GROUP BY campaign_id, event_type
ORDER BY total_revenue DESC;
```
### Top Performing Campaigns
1. **Summer_Sale_2024** (ID: camp_789)
- Impressions: 3,215
- Conversions: 342 (10.64%)
- Revenue: $9,876.50
2. **Referral_Bonus** (ID: camp_456)
- Impressions: 2,891
- Conversions: 289 (9.99%)
- Revenue: $5,234.10
## Recommended Next Steps
- **Optimize Variant A** (currently underperforming with 4.12% conversion vs. 8.43% in Variant B)
- **Increase budget allocation** for Summer_Sale_2024 by 20% based on high ARPP
- **Add exit-intent triggers** to capture users leaving the Premium paywall without convertingTake a free 3-minute scan and get personalized AI skill recommendations.
Take free scan