Agent skill

juicebox-local-dev-loop

Configure Juicebox local dev workflow. Trigger: "juicebox local dev", "juicebox dev setup".

Stars 1,803
Forks 241

Install this agent skill to your Project

npx add-skill https://github.com/jeremylongshore/claude-code-plugins-plus-skills/tree/main/plugins/saas-packs/juicebox-pack/skills/juicebox-local-dev-loop

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

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

Cost Control

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

Resources

Next Steps

See juicebox-sdk-patterns.

Expand your agent's capabilities with these related and highly-rated skills.

Didn't find tool you were looking for?

Be as detailed as possible for better results