From podium-pack
Provides Podium CI API integration patterns with OAuth2 auth and REST calls for messaging, reviews, payments. Includes TypeScript examples, error handling.
How this skill is triggered — by the user, by Claude, or both
Slash command
/podium-pack:podium-ci-integrationThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Implementation patterns for Podium ci integration using the REST API with OAuth2 authentication.
Implementation patterns for Podium ci integration 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.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin podium-packProvides TypeScript patterns for Podium API deploy integration using OAuth2-authenticated REST calls for messaging, reviews, and payments.
Guides third-party integrations: APIs, OAuth, webhooks for Stripe, Slack, Zapier, email providers. Includes build-vs-buy framework, auth flows, and maintenance tips.
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.