juicebox-install-auth
SolidInstall and configure Juicebox PeopleGPT API authentication. Use when setting up people search or initializing Juicebox. Trigger: "install juicebox", "setup juicebox", "juicebox auth".
AI & Automation 2,266 stars
315 forks Updated today MIT
Install
Quality Score: 97/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# 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](https://app.juicebox.ai)
- API key from Dashboard > Settings > API Keys
- Node.js 18+ or Python 3.8+
## Instructions
### Step 1: Install SDK
```bash
npm install @juicebox/sdk
# or: pip install juicebox-sdk
```
### Step 2: Configure Authentication
```bash
export JUICEBOX_API_KEY="jb_live_..."
echo 'JUICEBOX_API_KEY=jb_live_your-key' >> .env
```
### Step 3: Verify Connection
```typescript
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`);
```
```python
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
- [Juicebox Docs](https://docs.juicebox.work)
- [PeopleGPT](https://juicebox.ai/peoplegpt)
## Next Steps
After auth, proceed to `juicebox-hello-world`.
Details
- Author
- jeremylongshore
- Repository
- jeremylongshore/claude-code-plugins-plus-skills
- Created
- 7 months ago
- Last Updated
- today
- Language
- Python
- License
- MIT
Integrates with
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Solid
juicebox-hello-world
Create a minimal Juicebox people search example. Trigger: "juicebox hello world", "first people search", "test juicebox".
2,266 Updated today
jeremylongshore AI & Automation Featured
juicebox-security-basics
Apply Juicebox security best practices. Trigger: "juicebox security", "juicebox api key security".
2,266 Updated today
jeremylongshore AI & Automation Featured
juicebox-prod-checklist
Execute Juicebox production checklist. Trigger: "juicebox production", "deploy juicebox".
2,266 Updated today
jeremylongshore AI & Automation Solid
juicebox-migration-deep-dive
Migrate to Juicebox from other tools. Trigger: "switch to juicebox", "migrate to juicebox".
2,266 Updated today
jeremylongshore AI & Automation Featured
juicebox-upgrade-migration
Plan Juicebox SDK upgrades. Trigger: "upgrade juicebox", "juicebox migration".
2,266 Updated today
jeremylongshore