juicebox-local-dev-loop

Installation
SKILL.md

Juicebox Local Dev Loop

Project Structure

my-juicebox-app/
├── .env                    # JUICEBOX_API_KEY=jb_live_...
├── src/client.ts           # Singleton
├── src/searches/           # Query definitions
├── tests/fixtures/         # Mock results
└── scripts/dev.ts

Mock Data

export const mockSearch = {
  total: 150,
  profiles: [{ id: 'prof_1', name: 'Jane Smith', title: 'Engineer', company: 'Google' }]
};

Cost Control

const limit = process.env.NODE_ENV === 'development' ? 5 : 50;
const results = await client.search({ query, limit });

Resources

Next Steps

See juicebox-sdk-patterns.

Weekly Installs
25
GitHub Stars
2.1K
First Seen
Feb 18, 2026