podium-install-auth
Install and configure Podium SDK/CLI authentication. Use when setting up a new Podium integration, configuring API keys, or initializing Podium in your project. Trigger with phrases like "install podium", "setup podium", "podium auth", "configure podium API key".
claude-code
Allowed Tools
ReadWriteEditBash(npm:*)Bash(pip:*)Grep
Provided by Plugin
podium-pack
Claude Code skill pack for Podium (18 skills)
Installation
This skill is included in the podium-pack plugin:
/plugin install podium-pack@claude-code-plugins-plus
Click to copy
Instructions
Podium Install & Auth
Overview
Set up Podium SDK/CLI and configure authentication credentials.
Prerequisites
- Node.js 18+ or Python 3.10+
- Package manager (npm, pnpm, or pip)
- Podium account with API access
- API key from Podium dashboard
Instructions
Step 1: Install SDK
# Node.js
npm install @podium/sdk
# Python
pip install podium
Step 2: Configure Authentication
# Set environment variable
export PODIUM_API_KEY="your-api-key"
# Or create .env file
echo 'PODIUM_API_KEY=your-api-key' >> .env
Step 3: Verify Connection
// Test connection code here
Output
- Installed SDK package in node_modules or site-packages
- Environment variable or .env file with API key
- Successful connection verification output
Error Handling
| Error | Cause | Solution |
|---|---|---|
| Invalid API Key | Incorrect or expired key | Verify key in Podium dashboard |
| Rate Limited | Exceeded quota | Check quota at https://docs.podium.com |
| Network Error | Firewall blocking | Ensure outbound HTTPS allowed |
| Module Not Found | Installation failed | Run npm install or pip install again |
Examples
TypeScript Setup
import { PodiumClient } from '@podium/sdk';
const client = new PodiumClient({
apiKey: process.env.PODIUM_API_KEY,
});
Python Setup
from podium import PodiumClient
client = PodiumClient(
api_key=os.environ.get('PODIUM_API_KEY')
)
Resources
Next Steps
After successful auth, proceed to podium-hello-world for your first API call.