juicebox-hello-world
Installation
SKILL.md
Juicebox Hello World
Overview
Create a minimal working example to search for people using Juicebox AI.
Prerequisites
- Juicebox SDK installed (
juicebox-install-authcompleted) - Valid API key configured
- Node.js or Python environment
Instructions
Step 1: Create Search Script
// search.ts
import { JuiceboxClient } from '@juicebox/sdk';
const client = new JuiceboxClient({
apiKey: process.env.JUICEBOX_API_KEY
});
Related skills