Agent Skills: Podium Local Dev Loop

|

UncategorizedID: jeremylongshore/claude-code-plugins-plus-skills/podium-local-dev-loop

Install this agent skill to your local

pnpm dlx add-skill https://github.com/jeremylongshore/claude-code-plugins-plus-skills/tree/HEAD/plugins/saas-packs/podium-pack/skills/podium-local-dev-loop

Skill Files

Browse the full folder contents for podium-local-dev-loop.

Download Skill

Loading file tree…

plugins/saas-packs/podium-pack/skills/podium-local-dev-loop/SKILL.md

Skill Metadata

Name
podium-local-dev-loop
Description
"Podium local dev loop \u2014 business messaging and communication platform\

Podium Local Dev Loop

Overview

Implementation patterns for Podium local dev loop using the REST API with OAuth2 authentication.

Prerequisites

  • Completed podium-install-auth setup
  • Valid OAuth2 access token

Instructions

Step 1: API Call Pattern

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 local dev loop
  • 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

Next Steps

See related Podium skills for more workflows.