# Send Pay a Human to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "payahuman",
    "name": "Pay a Human",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/johanneskares/payahuman",
    "canonicalUrl": "https://clawhub.ai/johanneskares/payahuman",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/payahuman",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=payahuman",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/payahuman"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/payahuman",
    "downloadUrl": "https://openagent3.xyz/downloads/payahuman",
    "agentUrl": "https://openagent3.xyz/skills/payahuman/agent",
    "manifestUrl": "https://openagent3.xyz/skills/payahuman/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/payahuman/agent.md"
  }
}
```
## Documentation

### PayAHuman

Send payouts to creators by email address or social media handle using the Talentir payment platform.

### Setup

Create a business account at https://www.talentir.com/start/business
Get your API key from the Talentir dashboard
Set the environment variable:
export TALENTIR_API_KEY="your-api-key"

### API Basics

All requests need:

curl -s "https://www.talentir.com/api/v1/..." \\
  -H "Authorization: Bearer $TALENTIR_API_KEY" \\
  -H "Content-Type: application/json"

### Create a payout by email

curl -s -X POST "https://www.talentir.com/api/v1/payout" \\
  -H "Authorization: Bearer $TALENTIR_API_KEY" \\
  -H "Content-Type: application/json" \\
  -d '{
    "description": "Payment for services",
    "email": "creator@example.com",
    "payoutAmount": "100.00",
    "currency": "EUR",
    "handleType": "none"
  }' | jq

### Create a payout by social media handle

Supported platforms: tiktok, instagram, youtube-channel.

curl -s -X POST "https://www.talentir.com/api/v1/payout" \\
  -H "Authorization: Bearer $TALENTIR_API_KEY" \\
  -H "Content-Type: application/json" \\
  -d '{
    "description": "Campaign payout",
    "creatorHandle": "@username",
    "handleType": "youtube-channel",
    "payoutAmount": "250.00",
    "currency": "USD"
  }' | jq

### Create a payout with tags and custom ID

curl -s -X POST "https://www.talentir.com/api/v1/payout" \\
  -H "Authorization: Bearer $TALENTIR_API_KEY" \\
  -H "Content-Type: application/json" \\
  -d '{
    "description": "Q1 royalty payment",
    "email": "creator@example.com",
    "payoutAmount": "500.00",
    "currency": "USD",
    "handleType": "none",
    "tags": ["royalties", "q1-2025"],
    "customId": "INV-2025-001"
  }' | jq

### Get a payout by ID

curl -s "https://www.talentir.com/api/v1/payout/{id}" \\
  -H "Authorization: Bearer $TALENTIR_API_KEY" | jq

### Get a payout by custom ID

curl -s "https://www.talentir.com/api/v1/payout/{customId}?id_type=custom_id" \\
  -H "Authorization: Bearer $TALENTIR_API_KEY" | jq

### List payouts

curl -s "https://www.talentir.com/api/v1/payouts?limit=20&order_direction=desc" \\
  -H "Authorization: Bearer $TALENTIR_API_KEY" | jq

### Get team info

curl -s "https://www.talentir.com/api/v1/team" \\
  -H "Authorization: Bearer $TALENTIR_API_KEY" | jq

### List webhooks

curl -s "https://www.talentir.com/api/v1/webhook" \\
  -H "Authorization: Bearer $TALENTIR_API_KEY" | jq

### Create a webhook

curl -s -X POST "https://www.talentir.com/api/v1/webhook" \\
  -H "Authorization: Bearer $TALENTIR_API_KEY" \\
  -H "Content-Type: application/json" \\
  -d '{
    "targetUrl": "https://your-server.com/webhook",
    "eventType": "payout",
    "environment": "production"
  }' | jq

Save the returned signingSecret securely - it won't be shown again.

### Delete a webhook

curl -s -X DELETE "https://www.talentir.com/api/v1/webhook/{id}" \\
  -H "Authorization: Bearer $TALENTIR_API_KEY" | jq

### Payout Fields Reference

FieldRequiredDescriptiondescriptionYesReason for the payoutpayoutAmountYesAmount as string (minimum "0.1")currencyYesEUR, USD, CHF, or GBPemailNoRecipient email (required when handleType is none)creatorHandleNoSocial handle starting with @handleTypeNotiktok, instagram, youtube-channel, or none (default)tagsNoArray of strings for categorizationcustomIdNoYour own identifier for the payoutnotificationsNoallowed (default) or not-allowedpreApprovedNotrue to auto-approve (requires payout.api_approve permission)

### Payout Statuses

created → approved → requested → completed

A payout can also become deleted or expired at any point.

### Notes

Amounts are strings (e.g. "100.00", not 100)
Minimum payout amount is "0.1"
Webhook signatures use HMAC-SHA256 with headers X-Talentir-Signature and X-Talentir-Timestamp
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: johanneskares
- Version: 1.0.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-30T16:55:25.780Z
- Expires at: 2026-05-07T16:55:25.780Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/payahuman)
- [Send to Agent page](https://openagent3.xyz/skills/payahuman/agent)
- [JSON manifest](https://openagent3.xyz/skills/payahuman/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/payahuman/agent.md)
- [Download page](https://openagent3.xyz/downloads/payahuman)