AI SummaryEmployee onboarding workflow: create employee records, manage documents, handle country-specific compliance requirements.
Install
Copy this and paste it into Claude Code, Cursor, or any AI assistant:
I want to install the "remofirst-core-workflow-a" skill in my project. Please run this command in my terminal: # Install skill into your project mkdir -p .claude/skills/remofirst-core-workflow-a && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/remofirst-core-workflow-a/SKILL.md "https://raw.githubusercontent.com/jeremylongshore/claude-code-plugins-plus-skills/main/plugins/saas-packs/remofirst-pack/skills/remofirst-core-workflow-a/SKILL.md" Then restart Claude Code (or reload the window in Cursor) so the skill is picked up.
Description
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".
Overview
Employee onboarding workflow: create employee records, manage documents, handle country-specific compliance requirements.
Prerequisites
• Completed remofirst-install-auth
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 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']}") `
Discussion
Health Signals
My Fox Den
Community Rating
Sign in to rate this booster