From remofirst-pack
Sets up RemoFirst API authentication with env config, Python client, and connection verification for global HR, EOR, payroll integration.
How this skill is triggered — by the user, by Claude, or both
Slash command
/remofirst-pack:remofirst-install-authThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Set up RemoFirst API authentication for global HR and payroll integration. RemoFirst provides API access for enterprise customers.
Set up RemoFirst API authentication for global HR and payroll integration. RemoFirst provides API access for enterprise customers.
1. Contact RemoFirst support for API access
2. Receive API key and base URL
3. Note: Sandbox environment available for testing
# .env
REMOFIRST_API_KEY=your_api_key
REMOFIRST_BASE_URL=https://api.remofirst.com/v1
import os, requests
class RemoFirstClient:
def __init__(self):
self.base_url = os.environ["REMOFIRST_BASE_URL"]
self.headers = {
"Authorization": f"Bearer {os.environ['REMOFIRST_API_KEY']}",
"Content-Type": "application/json",
}
def get(self, path, params=None):
resp = requests.get(f"{self.base_url}{path}", headers=self.headers, params=params)
resp.raise_for_status()
return resp.json()
def post(self, path, data):
resp = requests.post(f"{self.base_url}{path}", headers=self.headers, json=data)
resp.raise_for_status()
return resp.json()
client = RemoFirstClient()
company = client.get("/company")
print(f"Connected! Company: {company['name']}")
print(f"Countries: {len(company.get('active_countries', []))}")
| Error | Cause | Solution |
|---|---|---|
401 Unauthorized | Invalid API key | Contact RemoFirst support |
403 Forbidden | API access not enabled | Request API access from account manager |
| Connection refused | Wrong base URL | Verify URL with RemoFirst |
First API call: remofirst-hello-world
5plugins reuse this skill
First indexed Jul 10, 2026
npx claudepluginhub luxdevnet/claude-plus-lux --plugin remofirst-packSets up RemoFirst API authentication for global HR and payroll integration. Guides through credential retrieval, client initialization, and connection verification.
Guides collaborative design exploration before implementation: explores context, asks clarifying questions, proposes approaches, and writes a design doc for user approval.
Creates structured, bite-sized implementation plans from specs or requirements before writing code. Useful for breaking down multi-step tasks into testable steps with file structure and task boundaries.