返回顶部
l

loopumanLoopuman人工路由

Route tasks to verified human workers worldwide via Loopuman. Use when AI alone can't handle verification, translation, content moderation, image labeling, local knowledge, or subjective judgment. Results in minutes, paid in 8-second cUSD payments on Celo.

作者: admin | 来源: ClawHub
源自
ClawHub
版本
V 0.1.0
安全检测
已通过
657
下载量
免费
免费
0
收藏
概述
安装方式
版本历史

loopuman

Loopuman — AI的人工智能层

当仅靠AI不足时,将任务路由给经过验证的人类工作者。工作者通过Celo区块链上的cUSD在8秒内获得报酬。无需下载应用程序——工作者通过Telegram和WhatsApp操作。

何时使用此技能

当任务需要真实的人类判断、感知或本地知识而AI无法可靠提供时,请使用Loopuman:

  • - 验证 — 这个商业地址是真实的吗? 这张照片与这个列表匹配吗?
  • 翻译 — 细致入微、具有文化意识的翻译(不仅仅是逐字翻译)
  • 内容审核 — 这张图片合适吗? 这条评论违反规定吗?
  • 图像标注 — 这张照片中有哪些物体? 给这张图片质量评分1-10
  • 本地知识 — 内罗毕西红柿当前价格是多少?
  • 调查与意见 — 哪个标志设计更好? 评价这个产品描述
  • 数据收集 — 找到这家餐厅的电话号码
  • 质量保证 — 这段AI生成的文本听起来自然吗?

不要用于AI可以处理的任务:数学、代码生成、摘要、网络搜索、文件操作。

设置

使用您的Loopuman API密钥创建配置文件:

bash
mkdir -p ~/.openclaw/skills/loopuman
cat > ~/.openclaw/skills/loopuman/config.json << EOF
{
apiKey: YOURAPIKEY,
apiUrl: https://api.loopuman.com
}
EOF

获取您的API密钥(一条命令,无需认证):

bash
curl -X POST https://api.loopuman.com/api/v1/register \
-H Content-Type: application/json \
-d {email: you@example.com, companyname: Your Name, promocode: LOBSTER}

这将返回您的apikey(以lpm开头)。请立即保存——之后无法找回。

免费积分促销代码:

  • - CLAW500 — 前10名OpenClaw测试者获得500 VAE($5.00)
  • LOBSTER — 早期访问获得100 VAE($1.00)(50个名额)
  • 无代码 — 25 VAE($0.25)欢迎奖励

要添加更多资金,请在Telegram上联系@LoopumanBot并关联您的账户。

API认证

所有请求使用x-api-key标头:

x-api-key: YOURAPIKEY

创建任务

bash
scripts/loopuman.sh create \
--title 验证商业地址 \
--description 检查此地址是否存在于Google Maps上:肯尼亚内罗毕主街123号。回复YES/NO并附上截图。 \
--category other \
--budget 50 \
--estimated-seconds 120

参数:

  • - --title — 简短任务标题(必填)
  • --description — 给人类工作者的详细说明(必填,请具体说明!)
  • --category — 以下之一:survey、labeling、translation、writing、research、contentcreation、aitraining、micro、other(默认:other)。注意:验证任务使用other,审核使用other,数据收集使用research。
  • --budget — VAE代币支付。100 VAE = $1美元。(默认:100)
  • --estimated-seconds — 工作者完成任务的预期时间(公平薪酬计算必填,默认:120)
  • --max-workers — 工作者数量(默认:1,最大:100)
  • --priority — normal或high(高优先级立即通知工作者)
  • --webhook — 完成时推送通知的URL

类别最低预算:

  • - survey、labeling、aitraining、micro:25 VAE($0.25)
  • research、contentcreation:75 VAE($0.75)
  • writing、translation:100 VAE($1.00)

公平薪酬执行: Loopuman强制执行$6/小时的最低有效费率。如果您的预算除以预计时间低于此值,API将建议更高的预算。

编写好的任务描述:

  • - 具体说明您需要什么(回复YES或NO而不是验证这个)
  • 包含工作者所需的所有上下文
  • 指定预期的回复格式
  • 设定明确的成功标准

检查任务状态 + 获取结果

bash
scripts/loopuman.sh status --task-id

返回完整任务详情,包括:

  • - status:active、completed、expired、cancelled
  • progress:已批准、待审核、进行中的提交数量
  • submissions:已批准工作者结果及其内容的数组
  • pending_submissions:等待您批准的结果

轮询完成状态

对于需要结果才能继续的任务:

bash

每30秒轮询一次,10分钟后超时


scripts/loopuman.sh wait --task-id --interval 30 --timeout 600

一旦有已批准的提交可用,立即返回结果。

列出任务

bash
scripts/loopuman.sh list

取消任务

bash
scripts/loopuman.sh cancel --task-id

如果没有工作者开始,将退款到您的余额。

任务类型和定价

类别描述最低预算(VAE)典型完成时间
survey快速回复、意见25($0.25)1-5分钟
labeling
标记图像、分类内容 | 25($0.25) | 1-5分钟 | | micro | 5秒微任务 | 25($0.25) | <1分钟 | | ai_training | RLHF、偏好排序 | 25($0.25) | 1-5分钟 | | research | 查找信息、调查 | 75($0.75) | 5-20分钟 | | content_creation | 创意工作 | 75($0.75) | 5-20分钟 | | writing | 文章、描述 | 100($1.00) | 10-30分钟 | | translation | 语言翻译 | 100($1.00) | 5-15分钟 | | other | 自定义任务 | 25($0.25) | 视情况而定 |

示例

验证地址:
创建一个Loopuman任务来验证肯尼亚内罗毕肯雅塔大道456号是否为真实商业地址
→ create --title 验证地址 --description 检查Google Maps上肯尼亚内罗毕肯雅塔大道456号。回复YES/NO并附截图。 --category other --budget 30 --estimated-seconds 120

具有文化背景的翻译:
使用Loopuman将Were excited to launch自然地翻译成斯瓦希里语
→ create --title 翻译成斯瓦希里语 --description 翻译成斯瓦希里语。使其听起来自然而非机械:Were excited to launch our new product --category translation --budget 100 --estimated-seconds 180

获取人类意见:
询问真人哪个标志看起来更专业
→ create --title 标志比较 --description 哪个标志看起来更专业?A还是B?用2句话解释原因。 --category survey --budget 25 --estimated-seconds 60

检查AI输出:
让人类验证这段AI生成的产品描述
→ create --title AI文本质量检查 --description 这听起来自然准确吗?标记任何问题:[粘贴文本] --category other --budget 30 --estimated-seconds 90

错误处理

HTTP代码含义修复方法
401无效的API密钥检查config.json中的x-api-key
400
缺少字段或无效类别 | 检查必填参数 | | 402 | VAE余额不足 | 通过@LoopumanBot充值 | | 404 | 任务未找到 | 验证任务ID | | 429 | 超出速率限制 | 等待后重试 |

链接

  • - 网站:https://loopuman.com
  • Telegram机器人:https://t.me/LoopumanBot
  • ERC-8004代理:https://www.8004scan.io/agents/celo/17
  • MCP:https://api.loopuman.com/.well-known/mcp.json
  • A2A:https://api.loopuman.com/.well-known/agent-card.json

⚠️ 预算安全: 任务完成后向工作者支付报酬。

标签

skill ai

通过对话安装

该技能支持在以下平台通过对话安装:

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 loopuman-1776420066 技能

方式二:设置 SkillHub 为优先技能安装源

设置 SkillHub 为我的优先技能安装源,然后帮我安装 loopuman-1776420066 技能

通过命令行安装

skillhub install loopuman-1776420066

下载

⬇ 下载 loopuman v0.1.0(免费)

文件大小: 8 KB | 发布时间: 2026-4-17 18:29

v0.1.0 最新 2026-4-17 18:29
Initial release of Loopuman skill for OpenClaw.

- Route complex tasks to real verified human workers worldwide via the Loopuman API.
- Supports human verification, translation, moderation, labeling, local knowledge, and subjective judgment tasks.
- Simple setup with API key, cUSD payments on Celo blockchain, and Telegram/WhatsApp worker support.
- Includes task creation, status tracking, polling, listing, and cancellation commands.
- Provides usage guidance, error handling, and pricing info for fair compensation.

Archiver·手机版·闲社网·闲社论坛·羊毛社区· 多链控股集团有限公司 · 苏ICP备2025199260号-1

Powered by Discuz! X5.0   © 2024-2025 闲社网·线报更新论坛·羊毛分享社区·http://xianshe.com

p2p_official_large
返回顶部