Free SKILL.md scraped from GitHub. Clone the repo or copy the file directly into your Claude Code skills directory.
npx versuz@latest install podium-prod-checklistgit clone https://github.com/flight505/skill-forge.gitcp skill-forge/plugins/saas-packs/podium-pack/skills/podium-prod-checklist/SKILL.md ~/.claude/skills/podium-prod-checklist/SKILL.md---
name: podium-prod-checklist
description: "Podium prod checklist \u2014 business messaging and communication platform\
\ integration.\nUse when working with Podium API for messaging, reviews, or payments.\n\
Trigger with phrases like \"podium prod checklist\", \"podium-prod-checklist\".\n"
allowed-tools: Read, Write, Edit, Bash(npm:*), Bash(curl:*), Grep
version: 2.0.0
license: MIT
author: Jeremy Longshore <jeremy@intentsolutions.io>
tags:
- saas
- podium
- messaging
- reviews
- payments
compatibility: Designed for Claude Code, also compatible with Codex and OpenClaw
---
# Podium Prod Checklist
## Overview
Implementation patterns for Podium prod checklist using the REST API with OAuth2 authentication.
## Prerequisites
- Completed `podium-install-auth` setup
- Valid OAuth2 access token
## Instructions
### Step 1: API Call Pattern
```typescript
import 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}`);
```
## Output
- Podium API integration for prod checklist
- OAuth2 authenticated requests
- Error handling and retry logic
## Error Handling
| 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 |
## Resources
- [Podium Developer Portal](https://developer.podium.com/)
- [Podium API Docs](https://docs.podium.com)
## Next Steps
See related Podium skills for more workflows.