juicebox-install-auth
Provides authentication setup and connectivity verification for the Juicebox PeopleGPT API.
Install
mkdir -p .claude/skills/juicebox-install-auth && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/2742" && unzip -o skill.zip -d .claude/skills/juicebox-install-auth && rm skill.zipInstalls to .claude/skills/juicebox-install-auth
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Install and configure Juicebox PeopleGPT API authentication.Key capabilities
- →Install the Juicebox SDK using npm or pip
- →Configure Juicebox API key as an environment variable
- →Verify connection to the Juicebox PeopleGPT API
- →Handle invalid API key errors
- →Manage plan limit exceeded errors
How it works
The skill provides installation commands for the Juicebox SDK and instructions for setting the API key as an environment variable. It includes code examples in TypeScript and Python to verify the API connection by performing a search.
Inputs & outputs
When to use juicebox-install-auth
- →Install Juicebox SDK
- →Configure API authentication
- →Verify API connection
- →Initialize project integration
About this skill
Juicebox Install & Auth
Overview
Set up Juicebox PeopleGPT API for AI-powered people search across 800M+ professional profiles.
Prerequisites
- Juicebox account at app.juicebox.ai
- API key from Dashboard > Settings > API Keys
- Node.js 18+ or Python 3.8+
Instructions
Step 1: Install SDK
npm install @juicebox/sdk
# or: pip install juicebox-sdk
Step 2: Configure Authentication
export JUICEBOX_API_KEY="jb_live_..."
echo 'JUICEBOX_API_KEY=jb_live_your-key' >> .env
Step 3: Verify Connection
import { JuiceboxClient } from '@juicebox/sdk';
const client = new JuiceboxClient({ apiKey: process.env.JUICEBOX_API_KEY });
const results = await client.search({ query: 'engineer', limit: 1 });
console.log(`Connected! ${results.total} profiles available`);
from juicebox import JuiceboxClient
client = JuiceboxClient(api_key=os.environ['JUICEBOX_API_KEY'])
results = client.search(query='engineer', limit=1)
print(f'Connected! {results.total} profiles')
Error Handling
| Error | Code | Solution |
|---|---|---|
| Invalid API key | 401 | Verify at app.juicebox.ai/settings |
| Plan limit exceeded | 403 | Upgrade plan or check quota |
| Rate limited | 429 | Check Retry-After header |
Resources
Next Steps
After auth, proceed to juicebox-hello-world.
When not to use it
- →When a Juicebox account or API key is not available
Prerequisites
Limitations
- →Requires a Juicebox account
- →Requires an API key from the Juicebox Dashboard
- →Plan limits can be exceeded
How it compares
This skill provides specific installation and authentication steps for the Juicebox SDK, unlike a generic API setup that would not include SDK-specific commands or verification methods.
Compared to similar skills
juicebox-install-auth side by side with the closest alternatives in the catalog.
| Skill | Installs | Updated | Safety | Difficulty |
|---|---|---|---|---|
| juicebox-install-auth (this skill) | 2 | 27d | Review | Beginner |
| telegram-bot-builder | 106 | 6mo | Review | Intermediate |
| reddit-api | 3 | 4mo | Review | Intermediate |
| lindy-sdk-patterns | 1 | 27d | Caution | Intermediate |
Try saying
Example prompts that trigger this skill in your AI assistant.
More by jeremylongshore
View all by jeremylongshore →You might also like
telegram-bot-builder
davila7
Expert in building Telegram bots that solve real problems - from simple automation to complex AI-powered bots. Covers bot architecture, the Telegram Bot API, user experience, monetization strategies, and scaling bots to thousands of users. Use when: telegram bot, bot api, telegram automation, chat bot telegram, tg bot.
reddit-api
alinaqi
Reddit API with PRAW (Python) and Snoowrap (Node.js)
lindy-sdk-patterns
jeremylongshore
Lindy AI SDK best practices and common patterns. Use when learning SDK patterns, optimizing API usage, or implementing advanced agent features. Trigger with phrases like "lindy SDK patterns", "lindy best practices", "lindy API patterns", "lindy code patterns".
windsurf-mcp-integration
jeremylongshore
Manage integrate MCP servers with Windsurf for extended capabilities. Activate when users mention "mcp integration", "model context protocol", "external tools", "mcp server", or "cascade tools". Handles MCP server configuration and integration. Use when working with windsurf mcp integration functionality. Trigger with phrases like "windsurf mcp integration", "windsurf integration", "windsurf".
groq-webhooks-events
jeremylongshore
Implement Groq webhook signature validation and event handling. Use when setting up webhook endpoints, implementing signature verification, or handling Groq event notifications securely. Trigger with phrases like "groq webhook", "groq events", "groq webhook signature", "handle groq events", "groq notifications".
emailable-automation
onfire7777
Automate Emailable tasks via Rube MCP (Composio). Always search tools first for current schemas.