remofirst-core-workflow-a

Featured

RemoFirst core workflow a — global HR, EOR, and payroll platform integration. Use when working with RemoFirst for global employment, payroll, or compliance. Trigger with phrases like "remofirst core workflow a", "remofirst-core-workflow-a", "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 Core Workflow A ## Overview Employee onboarding workflow: create employee records, manage documents, handle country-specific compliance requirements. ## Prerequisites - Completed `remofirst-install-auth` ## Instructions ### Step 1: Create Employee Record ```python employee = client.post("/employees", { "first_name": "Alice", "last_name": "Johnson", "email": "alice@company.com", "country_code": "GB", # United Kingdom "job_title": "Senior Engineer", "start_date": "2026-05-01", "salary": { "amount": 85000, "currency": "GBP", "frequency": "annual", }, "employment_type": "full_time", }) print(f"Employee created: {employee['id']}") ``` ### Step 2: Check Country Requirements ```python # Get country-specific onboarding requirements requirements = client.get(f"/countries/GB/requirements") for req in requirements["documents"]: print(f" Required: {req['name']} — {req['description']}") # Examples: Passport, National Insurance Number, Bank Details, P45 ``` ### Step 3: Submit Onboarding Documents ```python # Upload required documents client.post(f"/employees/{employee['id']}/documents", { "document_type": "passport", "file_url": "https://secure-storage.com/passport.pdf", "expiry_date": "2030-12-31", }) ``` ### Step 4: Track Onboarding Status ```python status = client.get(f"/employees/{employee['id']}/onboarding") print(f"Onboarding status: {status['status']}") # pending, in_progress, compl...

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