Agent skill

juicebox-hello-world

Create a minimal Juicebox people search example. '

intentsolutions.io2,596★ · 1 repos on radarProfile →
claude-codecan modify filesMIT
Install
npx skills add jeremylongshore/claude-code-plugins-plus-skills --skill juicebox-hello-world --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 2 KB
Bundled scripts: none
Version: 1.16.0
Declared author: Jeremy Longshore <jeremy@intentsolutions.io>
Allowed tools: ReadWriteEditBash(npm:*)Grep
Requires: Designed for Claude Code
Path: plugins/saas-packs/juicebox-pack/skills/juicebox-hello-world/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 2,630
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Juicebox Hello World ## Overview Three examples: natural language people search, profile enrichment, and contact data from 800M+ profiles. ## Instructions ### Example 1: Natural Language Search ```typescript import { JuiceboxClient } from '@juicebox/sdk'; const client = new JuiceboxClient({ apiKey: process.env.JUICEBOX_API_KEY }); const results = await client.search({ query: 'senior ML engineer at FAANG with PhD in Bay Area', limit: 10, filters: { experience_years: { min: 5 } } }); results.profiles.forEach(p => console.log(`${p.name} | ${p.title} at ${p.company} | ${p.location}`) ); ``` ### Example 2: Profile Enrichment ```typescript const enriched = await client.enrich({ linkedin_url: 'https://linkedin.com/in/example', fields: ['skills', 'experience', 'education', 'contact'] }); console.log(`Skills: ${enriched.skills.join(', ')}`); if (enriched.tech_profile?.github) { console.log(`GitHub: ${enriched.tech_profile.github.repos} repos`); } ``` ### Example 3: Contact Data (Python) ```python results = client.search(query='PM fintech NYC', limit=5, include_contact=True) for p in results.profiles: email = p.contact.email if p.contact else 'N/A' print(f"{p.name} | {p.title} | {email}")

What's inside
Steps it walks through
  1. Overview
  2. Instructions
  3. Example 1: Natural Language Search
  4. Example 2: Profile Enrichment
  5. Example 3: Contact Data (Python)
  6. Error Handling
  7. Resources
  8. Next Steps
More from claude-code-plugins-plus-skills
All skills →
About this skill
What does the juicebox-hello-world skill do?

Create a minimal Juicebox people search example. '

How do I install it?

Run `npx skills add jeremylongshore/claude-code-plugins-plus-skills --skill juicebox-hello-world --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From jeremylongshore/claude-code-plugins-plus-skills, a repository with 2,630 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going