From podium-pack
Provides Podium production checklist for API integrations in messaging, reviews, payments using OAuth2 REST calls, TypeScript examples, and error handling.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin podium-packThis skill is limited to using the following tools:
Implementation patterns for Podium prod checklist using the REST API with OAuth2 authentication.
Provides Podium CI API integration patterns with OAuth2 auth and REST calls for messaging, reviews, payments. Includes TypeScript examples, error handling.
Provides production readiness checklist for Fathom API integrations: secrets, rate limiting, error handling, webhooks, PII compliance, monitoring. Trigger on 'fathom production' phrases.
Guides Next.js Cache Components and Partial Prerendering (PPR): 'use cache' directives, cacheLife(), cacheTag(), revalidateTag() for caching, invalidation, static/dynamic optimization. Auto-activates on cacheComponents: true.
Share bugs, ideas, or general feedback.
Implementation patterns for Podium prod checklist using the REST API with OAuth2 authentication.
podium-install-auth setupimport axios from 'axios';
const podium = axios.create({
baseURL: 'https://api.podium.com/v4',
headers: { 'Authorization': `Bearer ${process.env.PODIUM_ACCESS_TOKEN}` },
});
const { data } = await podium.get('/locations');
console.log(`Locations: ${data.data.length}`);
| Error | Cause | Solution |
|---|---|---|
| 401 Unauthorized | Expired token | Refresh OAuth token |
| 429 Rate Limited | Too many requests | Implement backoff |
| 403 Forbidden | Missing scope | Update OAuth app scopes |
See related Podium skills for more workflows.