remofirst-install-auth

Featured

RemoFirst install auth — global HR, EOR, and payroll platform integration. Use when working with RemoFirst for global employment, payroll, or compliance. Trigger with phrases like "remofirst install auth", "remofirst-install-auth", "global HR API".

AI & Automation 2,359 stars 334 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# RemoFirst Install Auth ## Overview Set up RemoFirst API authentication for global HR and payroll integration. RemoFirst provides API access for enterprise customers. ## Prerequisites - RemoFirst enterprise account - API credentials from RemoFirst support team - Node.js 18+ or Python 3.9+ ## Instructions ### Step 1: Get API Credentials ```text 1. Contact RemoFirst support for API access 2. Receive API key and base URL 3. Note: Sandbox environment available for testing ``` ### Step 2: Configure Environment ```bash # .env REMOFIRST_API_KEY=your_api_key REMOFIRST_BASE_URL=https://api.remofirst.com/v1 ``` ### Step 3: Initialize Client ```python 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() ``` ### Step 4: Verify Connection ```python company = client.get("/company") print(f"Connected! Company: {company['name']}") print(f"Countries: {len(company.get('ac...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
8 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category