Skip to content
Skillv1.0.0

remofirst-install-auth

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 a

by jeremylongshore(0) 0 installs
Free
Sign in to install

Free account. Installing gives you the manifest plus copy-paste snippets.

See reviews

About

Imported from jeremylongshore/tons-of-skills-marketplace (plugins/saas-packs/remofirst-pack/skills/remofirst-install-auth/SKILL.md). Install upstream with npx skills add jeremylongshore/tons-of-skills-marketplace --skill remofirst-install-auth. Copyright stays with the author (MIT).

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

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

# .env
REMOFIRST_API_KEY=your_api_key
REMOFIRST_BASE_URL=https://api.remofirst.com/v1

Step 3: Initialize Client

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

company = client.get("/company")
print(f"Connected! Company: {company['name']}")
print(f"Countries: {len(company.get('active_countries', []))}")

Output

  • API credentials configured
  • Client initialized with authentication
  • Connection verified

Error Handling

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

Resources

Next Steps

First API call: remofirst-hello-world

Use it

Copy one of these into your project. Installing also returns the manifest and these snippets.

yaml
targets:
  - https://api.opensmartroute.ai/api/v1/registry/jeremylongshore-tons-of-skills-marketplace-remofirst-ins-fbdeaa/manifest   # or paste the manifest below

Manifest

An Open Capability Manifest: the router reads it to know what this does, what it costs and when to pick it.

jeremylongshore-tons-of-skills-marketplace-remofirst-ins-fbdeaa.ocm.jsonjson
{
  "ocm": "1",
  "id": "jeremylongshore-tons-of-skills-marketplace-remofirst-ins-fbdeaa",
  "kind": "skill",
  "name": "remofirst-install-auth",
  "description": "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\".",
  "publisher": "jeremylongshore",
  "version": "1.0.0",
  "capabilities": {
    "domains": [
      "hr",
      "coding"
    ],
    "tags": [
      "skill-md",
      "saas",
      "remofirst",
      "hr",
      "eor",
      "payroll",
      "global-employment",
      "skills-sh"
    ],
    "languages": [
      "en"
    ]
  },
  "quality_prior": 0.6,
  "examples": [
    "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\"."
  ],
  "primary": false,
  "metadata": {
    "source": {
      "provider": "skills.sh",
      "repository": "https://github.com/jeremylongshore/tons-of-skills-marketplace",
      "path": "plugins/saas-packs/remofirst-pack/skills/remofirst-install-auth/SKILL.md",
      "ref": "HEAD",
      "url": "https://github.com/jeremylongshore/tons-of-skills-marketplace/blob/HEAD/plugins/saas-packs/remofirst-pack/skills/remofirst-install-auth/SKILL.md",
      "key": "jeremylongshore/tons-of-skills-marketplace/plugins/saas-packs/remofirst-pack/skills/remofirst-install-auth/SKILL.md"
    },
    "compatibility": "Designed for Claude Code",
    "allowed_tools": [
      "Read,",
      "Write,",
      "Edit,",
      "Bash(npm:*),",
      "Bash(curl:*),",
      "Grep"
    ],
    "license": "MIT"
  },
  "instructions": "# RemoFirst Install Auth\n\n## Overview\n\nSet up RemoFirst API authentication for global HR and payroll integration. RemoFirst provides API access for enterprise customers.\n\n## Prerequisites\n\n- RemoFirst enterprise account\n- API credentials from RemoFirst support team\n- Node.js 18+ or Python 3.9+\n\n## Instructions\n\n### Step 1: Get API Credentials\n\n```text\n1. Contact RemoFirst support for API access\n2. Receive API key and base URL\n3. Note: Sandbox environment available for testing\n```\n\n### Step 2: Configure Environment\n\n```bash\n# .env\nREMOFIRST_API_KEY=your_api_key\nREMOFIRST_BASE_URL=https://api.re",
  "cost": {
    "context_tokens": 532
  }
}

Fetch it by URL: GET /api/v1/registry/jeremylongshore-tons-of-skills-marketplace-remofirst-ins-fbdeaa/manifest?version=1.0.0

Reviews

Star ratings from people who tried it. One review per account; edit yours any time.

No reviews yet. Install it, try it, and be the first to rate it.