← 返回 Skills 市场
351
总下载
1
收藏
0
当前安装
5
版本数
在 OpenClaw 中安装
/install loudy-ai-auto-task
功能描述
Loudy.ai 任务自动化工具 - 查询奖池、提交任务链接、追踪审核和支付状态。 重要说明:此工具仅与 loudy.ai API 交互,不包含 Twitter/X 自动发布功能。 使用条件: (1) 用户需要先配置 LOUDY_API_KEY 环境变量 (2) 启动后会定时查询奖池、提交任务链接、查询审核和支付...
使用说明 (SKILL.md)
Loudy.ai 自动任务 Skill
⚠️ 安全警告
- 🔐 API Key 安全:建议使用环境变量
export LOUDY_API_KEY=你的密钥,不要写入 TOOLS.md 或其他共享文件 - 📝 文件系统访问:本工具会读写工作区目录下的文件(默认:
/root/.openclaw/workspace/,可通过OPENCLAW_WORKSPACE环境变量自定义) - ⏰ 可选的 Cron 任务:如需自动检查,需手动配置 cron 任务
快速开始
1. 配置 API Key (推荐环境变量方式)
export LOUDY_API_KEY="你的API密钥"
⚠️ 注意:不建议将密钥写入 TOOLS.md,避免意外泄露
2. 启动任务
告诉 AI:
"查看 loudy 可用奖池"
3. 自动执行流程
- AI 展示可用奖池详情(包括要求、奖金、截止时间、详情页面链接)
- 你根据要求发布推文到 X/Twitter
- 将推文链接发送给 AI
- AI 自动提交到 loudy.ai
工作流程
1. fetch_earning_pools() → 获取进行中的奖池列表
2. 展示奖池详情给用户 → 包括要求、奖金、截止时间、详情页面链接
3. 提示用户根据要求发推文 → 用户手动发布到 X/Twitter
4. 等待用户提供推文链接 → 用户把推文链接发给 AI
5. submit_task() → 自动提交作品链接到 loudy.ai
6. 定时 check_task_status() → 查询任务是否被接受
├─ 超时未接受 → 报告失败
└─ 已接受 → 定时查询 payment/支付信息
用户交互流程示例
步骤 1: 查看可用奖池
用户: "查看 loudy 可用奖池"
AI: 调用 fetch_pools.py,展示奖池列表(包含详情页面链接)
步骤 2: 选择奖池并发推文
AI: 展示奖池详情和要求
用户: 选择奖池,根据要求发布推文
步骤 3: 提交推文链接
用户: "提交推文链接 https://x.com/xxx/status/123 到奖池 3"
AI: 调用 submit_task.py(3, "https://x.com/xxx/status/123")
步骤 4: 查询任务状态
用户: "查询任务状态"
AI: 调用 check_task.py 查询审核和支付状态
API 接口
1. 获取奖池列表
- URL:
GET https://api.loudy.ai/app-api/open-api/v1/earning-pools - Header:
X-API-Key: \x3CLOUDY_API_KEY>
2. 获取奖池详情
- URL:
GET https://api.loudy.ai/app-api/open-api/v1/earning-pools/{id} - Header:
X-API-Key: \x3CLOUDY_API_KEY>
3. 提交任务
- URL:
POST https://api.loudy.ai/app-api/open-api/v1/earning-pool-tasks/submit - Header:
X-API-Key: \x3CLOUDY_API_KEY> - Body:
{
"earningPoolId": 123,
"taskLink": ["https://x.com/xxx/status/123"],
"languageType": "zh_CN"
}
4. 查询我的任务列表(分页)
- URL:
GET https://api.loudy.ai/app-api/open-api/v1/earning-pool-tasks - Header:
X-API-Key: \x3CLOUDY_API_KEY> - Query:
pageNo- 页码(必填)pageSize- 每页条数,最大100(必填)earningPoolId- 奖池ID(可选)taskStatus- 任务状态(可选)
5. 查询任务状态
- URL:
GET https://api.loudy.ai/app-api/open-api/v1/earning-pool-tasks/{id} - Header:
X-API-Key: \x3CLOUDY_API_KEY> - 返回字段:
taskStatus- 任务状态auditStatus- 审核状态 (0=未审核, 1=通过, 2=拒绝)taskLinks- 作品链接
脚本说明
scripts/fetch_pools.py
获取进行中的奖池列表,过滤 Ongoing 状态
scripts/list_my_tasks.py
查询当前用户的任务列表(分页)
scripts/submit_task.py
提交作品链接到奖池
scripts/check_task.py
查询单个任务状态和支付信息
scripts/auto_task_flow.py
优化的任务流程脚本:
- 获取可用奖池列表
- 展示奖池详情(包括要求、奖金、截止时间)
- 显示 Loudy.ai 详情页面链接
- 等待用户提供推文链接
- 自动提交到 loudy.ai
scripts/check_tasks.py
定时检查脚本,获取当前奖池并格式化输出
scripts/cron_check.sh
Cron 定时任务脚本,每5分钟检查一次新任务。使用 OPENCLAW_WORKSPACE 环境变量自定义工作目录。
配置定时检查(可选)
1. 设置环境变量
export LOUDY_API_KEY="你的API Key"
export OPENCLAW_WORKSPACE="/root/.openclaw/workspace" # 可选,默认值
2. 配置 Cron 定时检查(可选)
# 方法1: 使用工作区安装路径(推荐)
SKILL_DIR="/root/.openclaw/workspace/skills/claw-loudyai-skill"
(crontab -l 2>/dev/null; echo "*/5 * * * * $SKILL_DIR/scripts/cron_check.sh") | crontab -
# 方法2: 如果安装到系统路径
(crontab -l 2>/dev/null; echo "*/5 * * * * /usr/lib/node_modules/openclaw/skills/loudy-ai-auto-task/scripts/cron_check.sh") | crontab -
3. 配置 Heartbeat 通知(可选)
在 HEARTBEAT.md 中添加:
## Loudy.ai 任务检查
检查工作区目录下的 loudy_has_new.txt 是否存在:
- 如果存在 → 读取 loudy_tasks.json 内容
- 发送消息通知用户
- 删除 loudy_has_new.txt
注意事项
- ⚠️ API Key 安全:建议使用环境变量
export LOUDY_API_KEY=你的密钥,不要写入 TOOLS.md 或其他共享文件 - 📝 文件系统访问:本工具会读写工作区目录下的文件(默认:
/root/.openclaw/workspace/,可通过OPENCLAW_WORKSPACE环境变量自定义),包括loudy_tasks.json,loudy_has_new.txt - ⏰ 可选的 Cron 任务:如需自动检查,需手动配置 cron 任务(可选功能)
- 🐦 Twitter 功能说明:本工具不包含 Twitter/X 自动发布功能,用户需手动发布推文后提供链接
- ⏳ 任务截止时间:任务有截止时间 (activityEnd),需在截止前提交
- ✅ 审核流程:提交后需等待审核 (auditStatus),建议设置定时检查间隔为 5-10 分钟
安全使用建议
What to check before installing:
- Review the GitHub repo (https://github.com/sfsf332/claw-loudyai-skill) yourself before running install.sh; the installer clones that repo and the current package contents mirror that code.
- install.sh defaults to a system path (/usr/lib/...) and requires write/root privileges — if you prefer less privilege, set OPENCLAW_SKILLS_DIR (or install into your workspace) before running the installer.
- Only provide LOUDY_API_KEY (via environment variable). Do not store the API key in shared files (TOOLS.md, etc.) as the SKILL.md warns.
- The scripts will write/read files under the workspace (loudy_tasks.json, loudy_has_new.txt) and optionally rely on a cron job you must add manually — be sure you want periodic polling.
- The SKILL.md suggests installing an unrelated Binance skill for certain sponsor tasks; that is optional and external — do not install external skills unless you trust their source.
- The registry metadata had a minor formatting glitch for required env vars — confirm LOUDY_API_KEY is the only required secret before proceeding.
If you want higher assurance, inspect the repo history and maintainers on GitHub and run the scripts in a restricted environment (non-root, isolated workspace) first.
功能分析
Type: OpenClaw Skill
Name: loudy-ai-auto-task
Version: 1.1.0
The skill bundle is a legitimate automation tool for the Loudy.ai platform, designed to fetch task pools, submit work links, and monitor audit/payment statuses via the official API (api.loudy.ai). The code (scripts/auto_task_flow.py, scripts/submit_task.py) is transparent, follows the stated purpose, and includes clear security warnings regarding API key management. While it includes an installation script (install.sh) that clones a GitHub repository and a cron-based monitoring script (cron_check.sh), these are standard practices for the tool's intended functionality and do not exhibit malicious intent or unauthorized data exfiltration.
能力评估
Purpose & Capability
Name/description state Loudy.ai task automation and the included scripts (fetch_pools, submit_task, check_task, etc.) perform exactly those Loudy.ai API calls using LOUDY_API_KEY. The README and code consistently reference only Loudy.ai endpoints and workspace files. One minor mismatch: registry metadata shows a malformed required-env field ('[object Object]') while SKILL.md correctly documents LOUDY_API_KEY.
Instruction Scope
Runtime instructions explicitly read/write files in the OpenClaw workspace (loudy_tasks.json, loudy_has_new.txt) and optionally suggest creating a cron job to run every 5 minutes — this matches the skill's polling nature and is documented with warnings. The SKILL.md and scripts also suggest installing/using an external 'binance' skill for specific sponsor tasks; that is an advisory/optional integration and not performed automatically. No instructions ask the agent to read unrelated system config or other credentials.
Install Mechanism
There is no formal install spec in the registry UI, but the package includes an install.sh which clones a GitHub repo (https://github.com/sfsf332/claw-loudyai-skill.git) into a default system path (/usr/lib/node_modules/openclaw/skills) and requires git/python3. Cloning from GitHub is common and expected, but the install script assumes write access to a system directory (root/sudo). If you do not want system-wide install, you can set OPENCLAW_SKILLS_DIR/OPENCLAW_SKILLS_DIR env to use a local workspace. The install script itself is not obfuscated and performs reasonable checks (py_compile).
Credentials
The only required secret is LOUDY_API_KEY (declared in SKILL.md and used by all scripts). Optional environment variables (OPENCLAW_WORKSPACE, OPENCLAW_SKILLS_DIR) are for workspace/install location. There are no other unrelated tokens, keys, or passwords requested by the code.
Persistence & Privilege
The skill is not configured as always: true and will not auto-enable itself. Cron setup is optional and user-driven; scripts create/modify only files within the configured workspace. The package does not attempt to modify other skills or global agent configuration automatically.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install loudy-ai-auto-task - 安装完成后,直接呼叫该 Skill 的名称或使用
/loudy-ai-auto-task触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.1.0
feat: 添加币安任务智能提示功能
- 新增 is_binance_task() 函数,自动检测币安任务
- 优化 display_pools() 函数,为币安任务显示专属提示
- 提供详细的币安 skill 安装和使用指南
- 支持多种使用方式(AI 对话 + 命令行)
- 完善从安装到提交的完整流程说明
相关链接:
https://github.com/binance/binance-skills-hub/tree/main/skills/binance/square-post
v1.0.3
优化用户交互流程,添加详情页面链接,改进任务追踪功能
v1.0.2
优化用户交互流程,添加详情页面链接,改进任务追踪功能
v1.0.1
Fix API error code handling
v1.0.0
Initial release
元数据
常见问题
Loudy.ai Auto Task 是什么?
Loudy.ai 任务自动化工具 - 查询奖池、提交任务链接、追踪审核和支付状态。 重要说明:此工具仅与 loudy.ai API 交互,不包含 Twitter/X 自动发布功能。 使用条件: (1) 用户需要先配置 LOUDY_API_KEY 环境变量 (2) 启动后会定时查询奖池、提交任务链接、查询审核和支付... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 351 次。
如何安装 Loudy.ai Auto Task?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install loudy-ai-auto-task」即可一键安装,无需额外配置。
Loudy.ai Auto Task 是免费的吗?
是的,Loudy.ai Auto Task 完全免费(开源免费),可自由下载、安装和使用。
Loudy.ai Auto Task 支持哪些平台?
Loudy.ai Auto Task 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Loudy.ai Auto Task?
由 jack(@sfsf332)开发并维护,当前版本 v1.1.0。
推荐 Skills