bamboohr-pack
Claude Code skill pack for BambooHR (18 skills)
Installation
Open Claude Code and run this command:
/plugin install bamboohr-pack@claude-code-plugins-plus
Use --global to install for all projects, or --project for current project only.
What It Does
> 18 Claude Code skills for building production BambooHR API integrations — employee management, time off, webhooks, and HR data pipelines.
Build real BambooHR integrations with real API endpoints (api.bamboohr.com/api/gateway.php/{company}/v1/), real employee fields, real webhook HMAC verification, and real error handling. Every skill uses the actual BambooHR REST API — no fake SDKs or placeholder code.
Skills (18) plugin-local skills
Configure CI/CD pipelines for BambooHR integrations with GitHub Actions, automated testing, and secret management.
Diagnose and fix BambooHR API errors and exceptions.
Execute BambooHR primary workflows: employee CRUD, directory sync, and custom reports.
Execute BambooHR secondary workflows: time off requests, PTO balances, benefits administration, and employee files/photos.
Optimize BambooHR integration costs through request reduction, caching, and usage monitoring.
Collect BambooHR debug evidence for support tickets and troubleshooting.
Deploy BambooHR integrations to Vercel, Fly.
Create a minimal working BambooHR example — fetch employee directory and single employee.
Install and configure BambooHR API authentication with HTTP Basic Auth.
Configure BambooHR local development with hot reload, mocking, and testing.
Optimize BambooHR API performance with caching, batch reports, incremental sync, and connection pooling.
Execute BambooHR production deployment checklist and rollback procedures.
Implement BambooHR rate limiting, backoff, and request optimization.
Implement BambooHR reference architecture for production HR data pipelines.
Apply production-ready BambooHR API patterns for TypeScript and Python.
Apply BambooHR security best practices for API keys, webhook verification, and PII data handling compliance.
Plan and execute BambooHR API migration with breaking change detection.
Implement BambooHR webhook endpoints with HMAC signature validation and employee change event handling.
How It Works
export BAMBOOHR_API_KEY="your-key"
export BAMBOOHR_COMPANY_DOMAIN="yourcompany"
curl -s -u "${BAMBOOHR_API_KEY}:x" \
"https://api.bamboohr.com/api/gateway.php/${BAMBOOHR_COMPANY_DOMAIN}/v1/employees/directory" \
-H "Accept: application/json" | head -c 200
Then ask Claude: "Help me sync BambooHR employees to my database" and the relevant skills activate automatically.