From juicebox-pack
Installs Juicebox PeopleGPT SDK via npm or pip, configures API key authentication, and verifies connection for AI-powered people search across 800M+ profiles.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin juicebox-packThis skill is limited to using the following tools:
Set up Juicebox PeopleGPT API for AI-powered people search across 800M+ professional profiles.
Provides Juicebox SDK examples for natural language people search, profile enrichment, and contact data in TypeScript and Python. Useful for recruiting app prototypes.
Configures Instantly.ai API v2 authentication: generates scoped keys, sets .env vars via bash, and creates TypeScript REST client wrapper.
Generates TypeScript/axios examples for Apollo.io API: people search (free), person enrichment, organization enrichment. For starting integrations, testing setup, or learning basics.
Share bugs, ideas, or general feedback.
Set up Juicebox PeopleGPT API for AI-powered people search across 800M+ professional profiles.
npm install @juicebox/sdk
# or: pip install juicebox-sdk
export JUICEBOX_API_KEY="jb_live_..."
echo 'JUICEBOX_API_KEY=jb_live_your-key' >> .env
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 | 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 |
After auth, proceed to juicebox-hello-world.