From remofirst-pack
Provides solutions for RemoFirst API errors including 401 unauthorized, 429 rate limits, and 422 validation in Python for global HR, EOR, payroll integrations.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin remofirst-packThis skill is limited to using the following tools:
Implementation patterns for RemoFirst common errors — global HR and EOR platform integration.
Provides Python patterns for RemoFirst SDK integration: API clients, employee queries, error handling for global HR, EOR, payroll, and compliance.
Diagnoses BambooHR REST API errors like 401, 403, 400, 429 via X-BambooHR-Error-Message header. Provides causes, curl auth tests, and fixes for invalid keys, permissions, payloads.
Troubleshoots common errors in Workhuman Social Recognition API for employee rewards, recognitions, and HRIS integrations like Workday.
Share bugs, ideas, or general feedback.
Implementation patterns for RemoFirst common errors — global HR and EOR platform integration.
remofirst-install-auth setupclient = RemoFirstClient()
employees = client.get("/employees", params={"page_size": 10})
print(f"Employees: {len(employees['data'])}")
| Error | Cause | Solution |
|---|---|---|
| 401 Unauthorized | Invalid API key | Contact RemoFirst support |
| 429 Rate Limited | Too many requests | Implement backoff |
| 422 Validation Error | Missing required field | Check API documentation |
See related RemoFirst skills for more workflows.