{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/payahuman",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=payahuman",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/payahuman",
    "agentPageUrl": "https://openagent3.xyz/skills/payahuman/agent",
    "manifestUrl": "https://openagent3.xyz/skills/payahuman/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/payahuman/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "PayAHuman",
        "body": "Send payouts to creators by email address or social media handle using the Talentir payment platform."
      },
      {
        "title": "Setup",
        "body": "Create a business account at https://www.talentir.com/start/business\nGet your API key from the Talentir dashboard\nSet the environment variable:\nexport TALENTIR_API_KEY=\"your-api-key\""
      },
      {
        "title": "API Basics",
        "body": "All requests need:\n\ncurl -s \"https://www.talentir.com/api/v1/...\" \\\n  -H \"Authorization: Bearer $TALENTIR_API_KEY\" \\\n  -H \"Content-Type: application/json\""
      },
      {
        "title": "Create a payout by email",
        "body": "curl -s -X POST \"https://www.talentir.com/api/v1/payout\" \\\n  -H \"Authorization: Bearer $TALENTIR_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"description\": \"Payment for services\",\n    \"email\": \"creator@example.com\",\n    \"payoutAmount\": \"100.00\",\n    \"currency\": \"EUR\",\n    \"handleType\": \"none\"\n  }' | jq"
      },
      {
        "title": "Create a payout by social media handle",
        "body": "Supported platforms: tiktok, instagram, youtube-channel.\n\ncurl -s -X POST \"https://www.talentir.com/api/v1/payout\" \\\n  -H \"Authorization: Bearer $TALENTIR_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"description\": \"Campaign payout\",\n    \"creatorHandle\": \"@username\",\n    \"handleType\": \"youtube-channel\",\n    \"payoutAmount\": \"250.00\",\n    \"currency\": \"USD\"\n  }' | jq"
      },
      {
        "title": "Create a payout with tags and custom ID",
        "body": "curl -s -X POST \"https://www.talentir.com/api/v1/payout\" \\\n  -H \"Authorization: Bearer $TALENTIR_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"description\": \"Q1 royalty payment\",\n    \"email\": \"creator@example.com\",\n    \"payoutAmount\": \"500.00\",\n    \"currency\": \"USD\",\n    \"handleType\": \"none\",\n    \"tags\": [\"royalties\", \"q1-2025\"],\n    \"customId\": \"INV-2025-001\"\n  }' | jq"
      },
      {
        "title": "Get a payout by ID",
        "body": "curl -s \"https://www.talentir.com/api/v1/payout/{id}\" \\\n  -H \"Authorization: Bearer $TALENTIR_API_KEY\" | jq"
      },
      {
        "title": "Get a payout by custom ID",
        "body": "curl -s \"https://www.talentir.com/api/v1/payout/{customId}?id_type=custom_id\" \\\n  -H \"Authorization: Bearer $TALENTIR_API_KEY\" | jq"
      },
      {
        "title": "List payouts",
        "body": "curl -s \"https://www.talentir.com/api/v1/payouts?limit=20&order_direction=desc\" \\\n  -H \"Authorization: Bearer $TALENTIR_API_KEY\" | jq"
      },
      {
        "title": "Get team info",
        "body": "curl -s \"https://www.talentir.com/api/v1/team\" \\\n  -H \"Authorization: Bearer $TALENTIR_API_KEY\" | jq"
      },
      {
        "title": "List webhooks",
        "body": "curl -s \"https://www.talentir.com/api/v1/webhook\" \\\n  -H \"Authorization: Bearer $TALENTIR_API_KEY\" | jq"
      },
      {
        "title": "Create a webhook",
        "body": "curl -s -X POST \"https://www.talentir.com/api/v1/webhook\" \\\n  -H \"Authorization: Bearer $TALENTIR_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"targetUrl\": \"https://your-server.com/webhook\",\n    \"eventType\": \"payout\",\n    \"environment\": \"production\"\n  }' | jq\n\nSave the returned signingSecret securely - it won't be shown again."
      },
      {
        "title": "Delete a webhook",
        "body": "curl -s -X DELETE \"https://www.talentir.com/api/v1/webhook/{id}\" \\\n  -H \"Authorization: Bearer $TALENTIR_API_KEY\" | jq"
      },
      {
        "title": "Payout Fields Reference",
        "body": "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)"
      },
      {
        "title": "Payout Statuses",
        "body": "created → approved → requested → completed\n\nA payout can also become deleted or expired at any point."
      },
      {
        "title": "Notes",
        "body": "Amounts are strings (e.g. \"100.00\", not 100)\nMinimum payout amount is \"0.1\"\nWebhook signatures use HMAC-SHA256 with headers X-Talentir-Signature and X-Talentir-Timestamp"
      }
    ],
    "body": "PayAHuman\n\nSend payouts to creators by email address or social media handle using the Talentir payment platform.\n\nSetup\nCreate a business account at https://www.talentir.com/start/business\nGet your API key from the Talentir dashboard\nSet the environment variable:\nexport TALENTIR_API_KEY=\"your-api-key\"\n\nAPI Basics\n\nAll requests need:\n\ncurl -s \"https://www.talentir.com/api/v1/...\" \\\n  -H \"Authorization: Bearer $TALENTIR_API_KEY\" \\\n  -H \"Content-Type: application/json\"\n\nPayouts\nCreate a payout by email\ncurl -s -X POST \"https://www.talentir.com/api/v1/payout\" \\\n  -H \"Authorization: Bearer $TALENTIR_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"description\": \"Payment for services\",\n    \"email\": \"creator@example.com\",\n    \"payoutAmount\": \"100.00\",\n    \"currency\": \"EUR\",\n    \"handleType\": \"none\"\n  }' | jq\n\nCreate a payout by social media handle\n\nSupported platforms: tiktok, instagram, youtube-channel.\n\ncurl -s -X POST \"https://www.talentir.com/api/v1/payout\" \\\n  -H \"Authorization: Bearer $TALENTIR_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"description\": \"Campaign payout\",\n    \"creatorHandle\": \"@username\",\n    \"handleType\": \"youtube-channel\",\n    \"payoutAmount\": \"250.00\",\n    \"currency\": \"USD\"\n  }' | jq\n\nCreate a payout with tags and custom ID\ncurl -s -X POST \"https://www.talentir.com/api/v1/payout\" \\\n  -H \"Authorization: Bearer $TALENTIR_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"description\": \"Q1 royalty payment\",\n    \"email\": \"creator@example.com\",\n    \"payoutAmount\": \"500.00\",\n    \"currency\": \"USD\",\n    \"handleType\": \"none\",\n    \"tags\": [\"royalties\", \"q1-2025\"],\n    \"customId\": \"INV-2025-001\"\n  }' | jq\n\nGet a payout by ID\ncurl -s \"https://www.talentir.com/api/v1/payout/{id}\" \\\n  -H \"Authorization: Bearer $TALENTIR_API_KEY\" | jq\n\nGet a payout by custom ID\ncurl -s \"https://www.talentir.com/api/v1/payout/{customId}?id_type=custom_id\" \\\n  -H \"Authorization: Bearer $TALENTIR_API_KEY\" | jq\n\nList payouts\ncurl -s \"https://www.talentir.com/api/v1/payouts?limit=20&order_direction=desc\" \\\n  -H \"Authorization: Bearer $TALENTIR_API_KEY\" | jq\n\nTeam\nGet team info\ncurl -s \"https://www.talentir.com/api/v1/team\" \\\n  -H \"Authorization: Bearer $TALENTIR_API_KEY\" | jq\n\nWebhooks\nList webhooks\ncurl -s \"https://www.talentir.com/api/v1/webhook\" \\\n  -H \"Authorization: Bearer $TALENTIR_API_KEY\" | jq\n\nCreate a webhook\ncurl -s -X POST \"https://www.talentir.com/api/v1/webhook\" \\\n  -H \"Authorization: Bearer $TALENTIR_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"targetUrl\": \"https://your-server.com/webhook\",\n    \"eventType\": \"payout\",\n    \"environment\": \"production\"\n  }' | jq\n\n\nSave the returned signingSecret securely - it won't be shown again.\n\nDelete a webhook\ncurl -s -X DELETE \"https://www.talentir.com/api/v1/webhook/{id}\" \\\n  -H \"Authorization: Bearer $TALENTIR_API_KEY\" | jq\n\nPayout Fields Reference\nField\tRequired\tDescription\ndescription\tYes\tReason for the payout\npayoutAmount\tYes\tAmount as string (minimum \"0.1\")\ncurrency\tYes\tEUR, USD, CHF, or GBP\nemail\tNo\tRecipient email (required when handleType is none)\ncreatorHandle\tNo\tSocial handle starting with @\nhandleType\tNo\ttiktok, instagram, youtube-channel, or none (default)\ntags\tNo\tArray of strings for categorization\ncustomId\tNo\tYour own identifier for the payout\nnotifications\tNo\tallowed (default) or not-allowed\npreApproved\tNo\ttrue to auto-approve (requires payout.api_approve permission)\nPayout Statuses\n\ncreated → approved → requested → completed\n\nA payout can also become deleted or expired at any point.\n\nNotes\nAmounts are strings (e.g. \"100.00\", not 100)\nMinimum payout amount is \"0.1\"\nWebhook signatures use HMAC-SHA256 with headers X-Talentir-Signature and X-Talentir-Timestamp"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/johanneskares/payahuman",
    "publisherUrl": "https://clawhub.ai/johanneskares/payahuman",
    "owner": "johanneskares",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}