Claude-code-plugins-plus remofirst-hello-world

install
source · Clone the upstream repo
git clone https://github.com/jeremylongshore/claude-code-plugins-plus-skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/jeremylongshore/claude-code-plugins-plus-skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/plugins/saas-packs/remofirst-pack/skills/remofirst-hello-world" ~/.claude/skills/jeremylongshore-claude-code-plugins-plus-remofirst-hello-world && rm -rf "$T"
manifest: plugins/saas-packs/remofirst-pack/skills/remofirst-hello-world/SKILL.md
source content

RemoFirst Hello World

Overview

Implementation patterns for RemoFirst hello world — global HR and EOR platform integration.

Prerequisites

  • Completed
    remofirst-install-auth
    setup

Instructions

Step 1: API Pattern

client = RemoFirstClient()
employees = client.get("/employees", params={"page_size": 10})
print(f"Employees: {len(employees['data'])}")

Output

  • RemoFirst integration for hello world

Error Handling

ErrorCauseSolution
401 UnauthorizedInvalid API keyContact RemoFirst support
429 Rate LimitedToo many requestsImplement backoff
422 Validation ErrorMissing required fieldCheck API documentation

Resources

Next Steps

See related RemoFirst skills for more workflows.