← 返回 Skills 市场
zhenstaff

Human-Rent

作者 Justin Liu · GitHub ↗ · v0.1.1 · MIT-0
cross-platform ⚠ suspicious
368
总下载
0
收藏
0
当前安装
2
版本数
在 OpenClaw 中安装
/install human-rent
功能描述
Human-as-a-Service for OpenClaw - Dispatch verified human agents to perform physical world tasks and sensory validation
使用说明 (SKILL.md)

Human-Rent Skill

Human-as-a-Service platform for AI Agents

Enable OpenClaw agents to dispatch real human workers for physical world tasks that AI cannot perform: take photos, verify addresses, inspect equipment, make phone calls, and more.

Core Concept

Transform AI agents from "digital-only" to "hybrid intelligence" by giving them the ability to interact with the physical world through verified human workers.

AI Agent → Human-Rent Skill → Human Worker → Physical Task → Verified Result → AI Agent

Installation

The skill is self-contained and ready to use after installation:

clawhub install human-rent

Configuration

Set up your ZhenRent API credentials:

export ZHENRENT_API_KEY="your-api-key-here"
export ZHENRENT_API_SECRET="your-api-secret-here"

Get your credentials at: https://www.zhenrent.com/api/keys

Test Installation

human-rent test

When to Use This Skill

Consider using this skill when the user's request involves:

  • Physical verification: Check if an address exists, verify a business is open
  • Photo evidence: Take a photo of something, get visual proof
  • Real-world inspection: Inspect equipment, check product availability
  • Human interaction: Make phone calls, ask questions in person
  • Trust verification: Confirm something exists in the physical world

Example Scenarios:

  • "I need someone to verify this address in San Francisco"
  • "Take a photo of the building at 123 Main Street"
  • "Check if this store has the product in stock"
  • "Call this number and confirm the appointment"
  • "Inspect this equipment and report its condition"

Do NOT use when:

  • Task can be done with digital APIs (use web search, image API, etc.)
  • No physical presence required
  • Task is illegal or dangerous

Important: User Confirmation Required

This skill ALWAYS requires explicit user confirmation before dispatching human workers because:

  1. Real humans will be dispatched to physical locations
  2. The user will be charged for the service ($15-100 per task)
  3. Physical world actions have real consequences

The CLI will automatically prompt for confirmation. For non-interactive use, set:

export HUMAN_RENT_AUTO_CONFIRM=true  # Use with caution

Usage

Dispatch Human Task

When a user requests physical-world action, execute:

human-rent dispatch "instruction" [options]

# Example with location
human-rent dispatch "Take a photo of 123 Main St entrance" --location="37.7749,-122.4194"

# Example with budget
human-rent dispatch "Inspect warehouse condition" --budget="$50" --location="37.7749,-122.4194"

Options:

  • --location=\x3Clat,lng> - Location coordinates (e.g., "37.7749,-122.4194")
  • --budget=\x3Camount> - Budget in dollars (e.g., "$20" or "$15-25")
  • --priority=\x3Clevel> - Priority: low, normal, high, urgent
  • --timeout=\x3Cminutes> - Task timeout in minutes (default: 30)
  • --type=\x3Ctask_type> - Task type (auto-detected if not specified)

Check Task Status

human-rent status \x3Ctask_id>

# Wait for completion
human-rent status \x3Ctask_id> --wait

List Available Humans

# List all available workers
human-rent humans

# Filter by location and radius
human-rent humans --location="37.7749,-122.4194" --radius=10000

# Search by skills
human-rent humans --skills="photography,legal_reading"

Task Types

Layer 1: Instant Human (Currently Available)

Type Description Latency Cost
photo_verification Take a photo of something 5-15 min $10-20
address_verification Verify physical address exists 10-20 min $15-25
document_scan Scan a physical document 10-20 min $15-25
visual_inspection Detailed visual inspection 15-30 min $20-40
voice_verification Make a phone call and verify 5-10 min $10-20
purchase_verification Check product availability 15-30 min $20-40

Future Layers (Planned)

Layer 2: Expert on Call

  • Legal document review
  • Medical image analysis
  • Code audit
  • Professional consultation

Layer 3: Embodied Agent

  • Attend meetings
  • Equipment installation
  • Long-term physical monitoring

Technical Architecture

Async Function Calling Pattern

Human tasks are asynchronous and take minutes to hours to complete. The workflow is:

  1. Agent dispatches task (with user confirmation)
  2. Task is assigned to a human worker
  3. Agent receives task ID and continues other work
  4. Agent periodically checks task status
  5. When completed, agent processes results
// Pseudo-code for agent integration
const task = await dispatch({
  instruction: "Take photo of building entrance",
  location: "37.7749,-122.4194"
});

// Returns immediately with task ID
console.log(task.task_id); // "abc-123-def"

// Agent continues other work (non-blocking)
await doOtherStuff();

// Later, check status
const result = await checkStatus(task.task_id);
if (result.status === "completed") {
  // Process human's result
  console.log(result.photos);
  console.log(result.notes);
}

Authentication

All API requests use HMAC-SHA256 authentication:

  1. Generate timestamp
  2. Create message: method + path + timestamp + body
  3. Sign with HMAC-SHA256 using API secret
  4. Include signature in request headers

The CLI handles authentication automatically when you set the environment variables.

Strategic Value

1. Capability Differentiation

Problem: All AI agents are limited to digital information
Solution: OpenClaw can verify physical reality

Example Use Cases:

  • Due diligence: Investor agent verifies company office exists before investment
  • E-commerce: Purchasing agent inspects warehouse before bulk order
  • Security: Safety agent verifies suspicious package before opening

2. Hybrid Intelligence Workflows

Enable "Human-in-the-Loop" automation:

Step 1: AI analysis (confidence: 85%)
Step 2: Human verification (if confidence \x3C 90%)
Step 3: AI decision (based on verified data)

This makes OpenClaw agents auditable and trustworthy for regulated industries (finance, healthcare, legal).

3. New Revenue Model

  • Per-task fee: $15-50/task
  • Platform fee: 20% commission
  • Subscription: $99/month for unlimited tasks

Cost Estimation

Task Type Human Time Human Cost Platform Fee (20%) Total Cost
Quick photo 10 min $10 $2 $12
Address verify 20 min $20 $4 $24
Detailed inspect 30 min $30 $6 $36
Expert consult 60 min $100 $20 $120

Configuration Options

Task Requirements

You can specify requirements when dispatching tasks:

human-rent dispatch "Inspect property condition" \
  --location="37.7749,-122.4194" \
  --budget="$50" \
  --type="visual_inspection"

For advanced requirements, use the API directly with:

requirements: {
  minHumanRating: 4.5,
  requiredSkills: ['photography', 'legal_reading'],
  requiredEquipment: ['smartphone', 'tape_measure'],
  languageRequired: ['en', 'zh'],
  certificationRequired: ['driver_license']
}

Usage Examples

Example 1: Real Estate Investment

Scenario: AI agent analyzing potential property investment

# Agent requests physical inspection
human-rent dispatch \
  "Inspect the property at 123 Main St. Check for: roof condition, foundation cracks, water damage, neighborhood safety. Take 10+ photos." \
  --location="37.7749,-122.4194" \
  --budget="$50" \
  --timeout=60

Example 2: Vendor Verification

Scenario: Procurement agent vetting new supplier

human-rent dispatch \
  "Visit supplier's warehouse at 456 Industrial Rd. Verify: business license displayed, clean facilities, proper safety equipment, actual inventory matches claim. Interview manager if possible." \
  --location="34.0522,-118.2437" \
  --budget="$40"

Example 3: Address Verification

Scenario: Verifying customer shipping address

human-rent dispatch \
  "Go to 789 Oak Street and verify: building exists, address number is visible, location is accessible for delivery." \
  --location="40.7128,-74.0060" \
  --budget="$20"

Troubleshooting

Issue 1: No Humans Available

Error: "No suitable humans found for this task"

Solutions:

  • Expand search radius (use --radius option)
  • Increase budget to attract workers
  • Try different time of day
  • Check if location is accessible

Issue 2: Task Timeout

Error: "Task timed out"

Solutions:

  • Increase timeout (use --timeout option)
  • Check if location is accessible
  • Verify task is clear and reasonable
  • Increase budget for complex tasks

Issue 3: Authentication Error

Error: "Missing credentials" or "Authentication failed"

Solutions:

  • Verify environment variables are set correctly
  • Check API key is valid at https://www.zhenrent.com/api/keys
  • Ensure API secret has not been compromised
  • Try regenerating credentials

Agent Behavior Guidelines

When using this skill, agents should:

DO:

  • Use for tasks that REQUIRE physical presence
  • Provide clear, specific instructions
  • Set appropriate budgets (humans value their time)
  • Handle async results (don't block waiting)
  • Verify results before making decisions
  • Respect human workers (polite instructions)

DON'T:

  • Use for tasks that can be done digitally
  • Request illegal or dangerous actions
  • Expect instant results
  • Underpay workers
  • Share sensitive/private information unnecessarily
  • Abuse the service with spam tasks

Security & Privacy

Data Security

  • All API requests use HMAC-SHA256 authentication
  • Credentials are never transmitted in plain text
  • Task data is encrypted in transit (HTTPS)
  • Results are stored securely and deleted after 30 days

Privacy

  • No PII collection without consent
  • Workers cannot see requester identity
  • Location data is anonymized after task completion
  • Photo/document uploads are access-controlled

Safety

  • Dangerous tasks are rejected automatically
  • Workers can decline tasks they deem unsafe
  • Insurance coverage for worker injuries
  • 24/7 safety hotline for workers

Legal & Compliance

Liability

Human workers assume responsibility for their actions (contractor model). The platform facilitates the connection but does not employ workers.

Labor Law

Compliant with gig economy regulations in operating jurisdictions. Workers are independent contractors with full control over which tasks they accept.

Geographic

Currently available in: United States (select cities)
Expanding to: Canada, UK, EU (2026-2027)

API Reference

Command Line Interface

# Dispatch task
human-rent dispatch \x3Cinstruction> [options]

# Check status
human-rent status \x3Ctask_id> [--wait]

# List workers
human-rent humans [--location=\x3Clat,lng>] [--radius=\x3Cmeters>] [--skills=\x3Cskill1,skill2>]

# Test connection
human-rent test

# Show help
human-rent help

Environment Variables

Required:

  • ZHENRENT_API_KEY - Your API key
  • ZHENRENT_API_SECRET - Your API secret

Optional:

Version History

v0.2.0 - Security Refactor (2026-03-31)

  • Self-contained package (no external git clone required)
  • User confirmation prompts before every dispatch
  • Integrity verification with checksums
  • Proper credential declaration in _meta.json
  • Real ZhenRent API integration
  • Removed all unicode control characters
  • Removed auto-trigger language
  • Enhanced error handling and user feedback

v0.1.0 - MVP Release (2026-03-07)

  • Initial release with mock data
  • Async task dispatch system
  • Mock human pool (5 workers in SF)
  • 6 task types supported
  • CLI tools
  • MCP protocol interface

Project Status

Status: Production Beta
License: MIT
Author: @ZhenStaff
Support: https://github.com/ZhenRobotics/openclaw-human-rent/issues
ClawHub: https://clawhub.ai/zhenstaff/human-rent

Quick Start

# 1. Install
clawhub install human-rent

# 2. Configure credentials
export ZHENRENT_API_KEY="your-key"
export ZHENRENT_API_SECRET="your-secret"

# 3. Test
human-rent test

# 4. Dispatch real task
human-rent dispatch "Take a photo of the Golden Gate Bridge" \
  --location="37.8199,-122.4783"

# 5. Check status
human-rent status \x3Ctask_id>

# 6. List humans
human-rent humans

Make AI agents that can touch the physical world.

安全使用建议
This package appears to implement a legitimate Human-as-a-Service CLI, but there are red flags you should address before installing or supplying credentials: 1) Metadata mismatch: files claim v0.2.1 while registry lists v0.1.1 — ask the publisher which is authoritative and why versions differ. 2) Verify provenance: get the upstream repository or signed release (GitHub release, official vendor page) and confirm checksums against that source. 3) Inspect code (lib/api-client.js, lib/dispatch.js): confirm SSRF whitelist, HMAC signing, and that ZHENRENT_BASE_URL validation blocks private IPs as claimed. 4) Do NOT run cleanup-for-upload.sh or any provided removal script until you review what it will delete and you have a safe working copy. 5) Treat ZHENRENT_API_SECRET as highly sensitive: test the CLI in an isolated account with a least-privilege, low‑budget API key to avoid unexpected charges. 6) Avoid setting HUMAN_RENT_AUTO_CONFIRM=true in production or on agents that can act autonomously; require interactive confirmation or instrument explicit operator approval. 7) If you cannot verify the publisher or the code, run the package in an isolated sandbox/container and monitor network calls (to ensure endpoints are legitimate) before supplying production credentials.
功能分析
Type: OpenClaw Skill Name: human-rent Version: 0.1.1 The human-rent skill is a legitimate integration for a 'Human-as-a-Service' platform, allowing AI agents to dispatch physical tasks to human workers. The package demonstrates significant security hardening, including HMAC-SHA256 request signing, SSRF protection with hostname whitelisting and private IP blocking (lib/api-client.js), and mandatory SHA256 integrity verification of all critical files on startup (bin/human-rent.js). While the skill handles sensitive API credentials and initiates financial transactions, it enforces explicit user confirmation for all dispatches (lib/confirmation.js) and lacks any evidence of malicious intent, data exfiltration, or unauthorized execution.
能力评估
Purpose & Capability
The skill's name, description, required binaries (node/npm), and required environment variables (ZHENRENT_API_KEY, ZHENRENT_API_SECRET, ZHENRENT_BASE_URL) are coherent with a Node.js CLI that calls a third‑party 'ZhenRent' human‑dispatch API. However, registry metadata claims 'instruction-only / no install spec' while the package clearly contains a full CLI implementation (bin/ and lib/ JS files). Also the SKILL.md and many documentation files claim version v0.2.1 while the registry metadata lists v0.1.1 — this metadata mismatch is unexplained and suspicious.
Instruction Scope
SKILL.md and the other docs describe normal actions for a human‑dispatch service: prompting user confirmation before dispatch, sample dispatch/status/humans commands, HMAC signing, SSRF protection, and a clear do-not-use-for-illegal warning. The runtime instructions do not appear to request unrelated env vars or to exfiltrate unrelated files. That said, the skill enables real monetary charges and physical actions; the docs also expose an AUTO_CONFIRM flag that will bypass interactive consent if set — a potentially dangerous operational configuration if enabled unintentionally.
Install Mechanism
No external install spec (no downloads) is provided — the package is self-contained, which is lower risk. But the registry claims 'instruction-only' while code is included; the presence of many internal docs and a cleanup script that deletes files (including itself) is unusual packaging behavior. The cleanup script will remove files from the repository when run; this is not inherently malicious but is a destructive operation that should not be run without inspection.
Credentials
The required env vars are limited and appropriate for the claimed API integration (API key, secret, base URL). That level of access is proportionate to dispatching real-world workers. However, these credentials grant the ability to create paid tasks and/or access results; the user must treat them as sensitive (rotate keys, use least-privilege keys, do not enable auto-confirm in shared/automated agents).
Persistence & Privilege
The skill does not request always:true and does not declare unusual system privileges. Autonomous invocation is allowed (platform default). Because the skill can dispatch real humans and charge money, combining autonomous invocation with HUMAN_RENT_AUTO_CONFIRM or a compromised API secret could cause real monetary or physical-world consequences — the user should ensure confirmation behavior is enforced in their environment and avoid auto-confirm in untrusted agents.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install human-rent
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /human-rent 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v0.1.1
- Initial public release with comprehensive CLI usage for dispatching and managing human-powered tasks. - Added support for user confirmation prompts before dispatching real-world human tasks (with auto-confirm option). - Introduced configuration via environment variables for ZhenRent API credentials. - Implemented status checks, human worker listing, location-based queries, and task filtering by skill or radius. - Includes extensive installation and usage documentation, cost estimation, and security setup. - Removed legacy skill documentation files in favor of an updated, streamlined README and guides.
v0.1.0
Initial release: Launch of Human-Rent skill for OpenClaw agents. - Enables AI agents to dispatch verified humans for real-world tasks like photo evidence, address verification, inspections, and calls. - Includes CLI tools for task dispatch, status checks, and human availability. - Provides async task workflow and example agent code for seamless integration. - Outlines supported task types, cost estimates, and verification methods. - Adds configuration options for required skills, languages, and equipment. - Details use cases, strategic value, and monetization models for OpenClaw platform.
元数据
Slug human-rent
版本 0.1.1
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 2
常见问题

Human-Rent 是什么?

Human-as-a-Service for OpenClaw - Dispatch verified human agents to perform physical world tasks and sensory validation. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 368 次。

如何安装 Human-Rent?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install human-rent」即可一键安装,无需额外配置。

Human-Rent 是免费的吗?

是的,Human-Rent 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Human-Rent 支持哪些平台?

Human-Rent 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Human-Rent?

由 Justin Liu(@zhenstaff)开发并维护,当前版本 v0.1.1。

💬 留言讨论