Integrate Juicebox API into Node.js/Python apps to search/filter 800M+ candidate profiles by skills/location/experience, enrich with AI tech maps/contacts, export to ATS like Greenhouse/Lever, automate outreach sequences, while handling auth, rate limits, CI/CD via GitHub Actions/GCP Cloud Run, monitoring, GDPR compliance, and error debugging.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin juicebox-packConfigure Juicebox CI/CD. Trigger: "juicebox ci", "juicebox pipeline".
Juicebox incident response. Trigger: "juicebox incident", "juicebox outage".
Diagnose and fix Juicebox API errors. Trigger: "juicebox error", "fix juicebox", "debug juicebox".
Execute Juicebox people search with power filters and ATS export. Trigger: "find candidates", "people search", "juicebox search".
Execute Juicebox enrichment and outreach workflow. Trigger: "juicebox enrich", "candidate enrichment", "talent pool".
Optimize Juicebox costs. Trigger: "juicebox cost", "juicebox billing", "juicebox budget".
Juicebox data privacy and GDPR. Trigger: "juicebox data privacy", "juicebox gdpr".
Collect Juicebox debug evidence. Trigger: "juicebox debug", "juicebox support ticket".
Deploy Juicebox integrations. Trigger: "deploy juicebox", "juicebox production deploy".
Configure Juicebox team access. Trigger: "juicebox rbac", "juicebox team roles".
Create a minimal Juicebox people search example. Trigger: "juicebox hello world", "first people search", "test juicebox".
Install and configure Juicebox PeopleGPT API authentication. Use when setting up people search or initializing Juicebox. Trigger: "install juicebox", "setup juicebox", "juicebox auth".
Configure Juicebox local dev workflow. Trigger: "juicebox local dev", "juicebox dev setup".
Migrate to Juicebox from other tools. Trigger: "switch to juicebox", "migrate to juicebox".
Configure Juicebox multi-environment. Trigger: "juicebox environments", "juicebox staging".
Set up Juicebox monitoring. Trigger: "juicebox monitoring", "juicebox metrics".
Optimize Juicebox performance. Trigger: "juicebox performance", "optimize juicebox".
Execute Juicebox production checklist. Trigger: "juicebox production", "deploy juicebox".
Implement Juicebox rate limiting. Trigger: "juicebox rate limit", "juicebox 429", "juicebox throttle".
Implement Juicebox reference architecture. Trigger: "juicebox architecture", "recruiting platform design".
Apply production Juicebox SDK patterns. Trigger: "juicebox patterns", "juicebox best practices".
Apply Juicebox security best practices. Trigger: "juicebox security", "juicebox api key security".
Plan Juicebox SDK upgrades. Trigger: "upgrade juicebox", "juicebox migration".
Handle Juicebox webhooks and events. Trigger: "juicebox webhooks", "juicebox events".
Share bugs, ideas, or general feedback.
Create and validate production-grade agent skills with 100-point marketplace grading
Personal productivity automation skills — expert network survey completion, time-saving automation for professional consultations and paid expertise sharing
Automatically analyzes user prompts and recommends the most relevant skills. Auto-activates at session start, searches external catalogs, and proposes creating new skills when needed.
63 universal AI skills for Claude Code — skill creation, deep research, strategic planning, product management, content processing, UI/UX design, Obsidian knowledge management, and orchestration workflows
Smart skill search engine for agents — discover reusable skills and workflows instantly.
Complete collection of 30 Claude Code skills for document processing, development, business productivity, and creative tasks
416 plugins, 2,574 skills, 154 agents, 16 community contributors — validated and ready to install.
pnpm add -g @intentsolutionsio/ccpi # Install the CLI
ccpi install devops-automation-pack # Install any plugin
Or use Claude's built-in command:
/plugin marketplace add jeremylongshore/claude-code-plugins
Browse the marketplace | Explore plugins | Download bundles
Killer Skill of the Week — token-optimizer by Alex Greenshpun (@alexgreensh)
Ghost tokens eat your context. Find them. Fix them. Prevent rot.
Claude gets measurably dumber as your context fills. Compaction destroys 60-70% of your conversation. Ghost tokens burn through your rate limits on every message. Token Optimizer tracks all of it: live quality scoring on your status line, smart compaction that saves your decisions before they're lost, full analytics dashboard with per-session cost breakdowns, and 6 parallel audit agents that optimize your entire setup. Not a one-time scan. An ongoing intelligence layer for your Claude Code workflow.
"My Claude Code kept leaking tokens. So I built this. Now my limits last longer, context stays fresh, and I have full visibility and control over my usage & setup." — Alex Greenshpun
Grade: A | Week of March 23, 2026 | Install from GitHub
Previous picks: executive-assistant-skills, skill-creator, cursor-pack, crypto-portfolio-tracker. See all at tonsofskills.com.
Option 1: CLI (Recommended)
pnpm add -g @intentsolutionsio/ccpi
ccpi search devops # Find plugins by keyword
ccpi install devops-automation-pack
ccpi list --installed # See what's installed
ccpi update # Pull latest versions
Option 2: Claude Built-in Commands
/plugin marketplace add jeremylongshore/claude-code-plugins
/plugin install devops-automation-pack@claude-code-plugins-plus
Already using an older install? Run
/plugin marketplace remove claude-code-pluginsand re-add with the command above to switch to the new slug.
Browse the catalog: Visit tonsofskills.com or explore plugins/
Agent Skills are instruction files (SKILL.md) that teach Claude Code when and how to perform specific tasks. Unlike commands that require explicit /slash triggers, skills activate automatically when Claude detects relevant conversation context.
1. INSTALL /plugin install ansible-playbook-creator@claude-code-plugins-plus
2. STARTUP Claude reads SKILL.md frontmatter → learns trigger phrases
3. ACTIVATE You say "create an ansible playbook for Apache"
4. EXECUTE Claude matches trigger → reads full skill → follows instructions
---
name: ansible-playbook-creator
description: |
Generate production-ready Ansible playbooks. Use when automating server
configuration or deployments. Trigger with "ansible playbook" or
"create playbook for [task]".
allowed-tools: Read, Write, Bash(ansible:*), Glob
version: 2.0.0
author: Jeremy Longshore <jeremy@intentsolutions.io>
license: MIT
---
# Ansible Playbook Creator
## Overview
Generates idempotent Ansible playbooks following infrastructure-as-code best practices.
## Instructions
1. Gather target host details and desired state
2. Select appropriate Ansible modules
3. Generate playbook with proper variable templating
4. Validate syntax with `ansible-lint`
## Output
- Complete playbook YAML ready for `ansible-playbook` execution