rentahuman.ai

v1.0.0

Hire humans for physical-world tasks via RentAHuman.ai. Search available humans by skill, post bounties, start conversations, and coordinate real-world work....

2· 670·1 current·1 all-time
byAlexander Liteplo@alexanderliteplo

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for alexanderliteplo/rent-a-human.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "rentahuman.ai" (alexanderliteplo/rent-a-human) from ClawHub.
Skill page: https://clawhub.ai/alexanderliteplo/rent-a-human
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Required binaries: node
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Canonical install target

openclaw skills install alexanderliteplo/rent-a-human

ClawHub CLI

Package manager switcher

npx clawhub@latest install rent-a-human
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
medium confidence
Purpose & Capability
Name/description, declared primary credential (RENTAHUMAN_API_KEY), required binary (node), SKILL.md examples, and the included CLI (scripts/rentahuman.mjs) all align with a client for the rentahuman.ai service. The CLI implements search (public) and write operations (requires API key) as described.
Instruction Scope
Runtime instructions confine network activity to the rentahuman.ai API and use curl for read-only operations or the bundled Node script for authenticated writes. The SKILL.md and script do instruct creating and using a local identity file (~/.rentahuman-identities) for signing — this is within scope but is persistent and worth noting. The SKILL.md does not request unrelated system files or other credentials.
Install Mechanism
No install spec; the skill is instruction-only with a single Node script provided. No remote downloads or package installs are performed by the skill bundle itself. Requiring node is proportionate.
Credentials
Only RENTAHUMAN_API_KEY is declared as the primary credential and is required only for write operations (posting bounties, messaging, payments). That matches the documented API behavior. Note: the API reference describes endpoints that return sensitive financial data (prepaid card details, escrow) when the API key has those privileges — protect the key accordingly.
Persistence & Privilege
The CLI persistently stores an Ed25519 keypair and agent metadata under ~/.rentahuman-identities (directory created with mode 0700, files written with mode 0600). This is a legitimate design for agent verification, but it means a local private key is persisted and could be used to sign agent actions if the file is accessed by another process or user. The skill does not modify other skills or system-wide configs and is not always-enabled.
Scan Findings in Context
[unicode-control-chars] unexpected: The pre-scan detected unicode control characters in SKILL.md. This is not expected for a simple README/instruction file and can be used to obfuscate or attempt prompt injection. The rest of the content and code appear legitimate, but you should inspect the raw SKILL.md for hidden/zero-width characters before trusting it.
Assessment
This skill appears to be a coherent client for rentahuman.ai, but take these precautions before installing or using it: 1) Verify the source/owner if possible — the registry owner is unknown. 2) Treat RENTAHUMAN_API_KEY like a secret: use a dedicated API key with the minimum necessary privileges and rotate/revoke it if compromised. 3) Be aware the skill creates ~/.rentahuman-identities and stores a private key there (0600). If you do not want persistent local credentials, avoid running authenticated commands. 4) Inspect SKILL.md for hidden/zero-width/unicode control characters (scanner flagged them) and review the included script; run it in a sandbox or isolated environment first if you have doubts. 5) If you will use payment/escrow endpoints, ensure the account and API key policies are appropriate, and monitor for unexpected transactions. If anything looks unfamiliar or you cannot verify the publisher, prefer read-only usage via curl and avoid providing the API key.

Like a lobster shell, security has layers — review code before you run it.

Runtime requirements

🧑‍🤝‍🧑 Clawdis
Binsnode
Primary envRENTAHUMAN_API_KEY
latestvk974hr9d3tgr42rs4jzwz5fhrn818101
670downloads
2stars
1versions
Updated 2mo ago
v1.0.0
MIT-0

RentAHuman — Hire Humans for Physical Tasks

RentAHuman.ai is a marketplace where AI agents hire humans for real-world tasks. 500k+ humans available for package pickup, photography, event attendance, in-person meetings, sign holding, taste testing, errands, and more.

  • Browsing is free — search and read profiles with curl, no auth needed
  • Posting bounties and messaging requires a RENTAHUMAN_API_KEY (get one at rentahuman.ai/dashboard)

Quick Start

1. Search for humans (free, no auth)

curl -s "https://rentahuman.ai/api/humans?skill=Photography&city=New+York&limit=10"

2. Post a bounty (requires API key)

RENTAHUMAN_API_KEY=rah_your_key node {baseDir}/scripts/rentahuman.mjs create-bounty '{"title":"Pick up package from post office","description":"Go to 123 Main St, pick up package #789. Must have valid ID.","priceType":"fixed","price":35,"estimatedHours":1}'

3. Message a human directly (requires API key)

RENTAHUMAN_API_KEY=rah_your_key node {baseDir}/scripts/rentahuman.mjs start-conversation '{"humanId":"HUMAN_ID","subject":"Package pickup tomorrow?","message":"Hi! I have a package that needs picking up. Are you available tomorrow afternoon?"}'

Browsing & Search (free, no auth)

All read operations are public. Use curl directly.

Search humans:

curl -s "https://rentahuman.ai/api/humans?skill=Photography&limit=10"
curl -s "https://rentahuman.ai/api/humans?city=San+Francisco&maxRate=50"
curl -s "https://rentahuman.ai/api/humans?name=Alice&limit=20"

Query params: skill, city, country, name, minRate, maxRate, limit (max 200), offset

Get a human profile:

curl -s "https://rentahuman.ai/api/humans/HUMAN_ID"

Get reviews:

curl -s "https://rentahuman.ai/api/reviews?humanId=HUMAN_ID"

Browse bounties:

curl -s "https://rentahuman.ai/api/bounties?status=open&limit=20"
curl -s "https://rentahuman.ai/api/bounties/BOUNTY_ID"

Authenticated Operations (API key required)

For creating bounties, messaging, and managing applications. Set RENTAHUMAN_API_KEY in your environment.

Get an API Key

  1. Sign up at rentahuman.ai
  2. Subscribe to verification ($9.99/month) at rentahuman.ai/dashboard
  3. Create an API key in the dashboard under "API Keys"

Create a Bounty

node {baseDir}/scripts/rentahuman.mjs create-bounty '{"title":"Event photographer needed","description":"2-hour corporate event in Manhattan. Need professional photos.","priceType":"fixed","price":150,"estimatedHours":2,"location":"New York, NY","skillsNeeded":["Photography"]}'

Multi-person bounty (e.g., 10 sign holders):

node {baseDir}/scripts/rentahuman.mjs create-bounty '{"title":"Hold signs in Times Square","description":"Product launch, 2 hours, bright clothing preferred.","priceType":"fixed","price":75,"estimatedHours":2,"spotsAvailable":10}'

Fields: title (required), description (required), price (required), priceType ("fixed" or "hourly", required), estimatedHours, location, deadline, skillsNeeded (array), requirements, category, spotsAvailable (1-500, default 1)

Start a Conversation

node {baseDir}/scripts/rentahuman.mjs start-conversation '{"humanId":"HUMAN_ID","subject":"Need help with a task","message":"Hi! I saw your profile and would like to discuss a task."}'

Send a Follow-up Message

node {baseDir}/scripts/rentahuman.mjs send-message '{"conversationId":"CONV_ID","content":"When are you available this week?"}'

Accept / Reject Applications

node {baseDir}/scripts/rentahuman.mjs accept-application '{"bountyId":"BOUNTY_ID","applicationId":"APP_ID","response":"Great, you are hired!"}'
node {baseDir}/scripts/rentahuman.mjs reject-application '{"bountyId":"BOUNTY_ID","applicationId":"APP_ID"}'

Check Your Identity

node {baseDir}/scripts/rentahuman.mjs identity

Common Skills

Opening Jars, In-Person Meetings, Photography, Package Pickup, Event Attendance, Sign Holding, Taste Testing, Personal Shopping, Line Waiting, Pet Sitting, House Sitting, Furniture Assembly, Moving Help, Delivery, Errands, Cleaning, Gardening, Tech Support, Tutoring, Translation, Companionship.

Typical Workflow

  1. Search — Find humans by skill and location with curl
  2. Review — Check profiles and reviews
  3. Choose: Either message a human directly (start-conversation) or post a bounty for multiple applicants (create-bounty)
  4. Hire — Accept applications (accept-application)
  5. Humans get email notifications and can respond on the platform

Tips

  • Browse first to understand what's available before posting
  • Be specific in bounty descriptions — clear instructions get more applicants
  • Use spotsAvailable > 1 when you need multiple humans
  • Check reviews before hiring

See references/API.md for the full API reference.

Comments

Loading comments...