首页龙虾技能列表 › PowPow OpenClaw — PowPow OpenClaw

PowPow OpenClaw — PowPow OpenClaw

v1.0.2

PowPow OpenClaw 工具。

1· 123·0 当前·0 累计
by @durenzidu (度人自度)·MIT-0
下载技能包
License
MIT-0
最后更新
2026/4/7
安全扫描
VirusTotal
无害
查看报告
OpenClaw
可疑
high confidence
The package claims to be a simplified/in-memory PowPow/OpenClaw simulator but includes code that sends user credentials and chat content to an external PowPow backend (https://global.powpow.online), which is inconsistent with an offline simulator and could expose user data.
评估建议
Key points before installing or using this skill: - Expect network traffic: contrary to a 'local/in-memory simulator' expectation, this skill performs live HTTP requests to https://global.powpow.online for register/login/create/send operations. Do NOT assume offline behavior. - Sensitive inputs transmitted: usernames, passwords, and all chat messages you send through the skill will be transmitted to the remote PowPow backend. Only use throwaway/test accounts if you want to try it. - Provenance i...
详细分析 ▾
用途与能力
The top-line metadata/description (and the evaluation prompt) suggests a simulation/in-memory test harness, but the SKILL.md and the compiled code implement live HTTP calls to https://global.powpow.online (register, login, create digital humans, send chat). That mismatch (simulation vs. real remote integration) is a material incoherence: someone expecting a local/in-memory simulator would not expect their credentials or messages to be transmitted to a remote service.
指令范围
SKILL.md instructs the agent to register/login/create digital humans and send messages; those operations are consistent with the stated integration purpose. However the instructions omit any privacy notice and explicitly direct users to use the remote map URL. The runtime behavior will transmit usernames, passwords, and chat content to the remote PowPow API — this is within the plugin's purpose but is important scope (network) behavior the user must understand.
安装机制
No install spec or external downloads are present. The package is instruction+bundled compiled JS (dist). There are no URLs that perform arbitrary code download at install time; code runs from the bundled files. This is lower install-risk, though the included compiled files contain base64 source-map URIs (expected for built JS).
凭证需求
The skill requests no environment variables or host credentials (appropriate), but it does collect user-supplied credentials (username/password) and chat messages via its commands and transmits them to the remote service. Given the mismatch between the advertised 'in-memory/simulation' behavior and the actual remote calls, the lack of declared credentials/env-vars is not sufficient disclosure of where sensitive inputs are sent.
持久化与权限
The skill does not request 'always: true' or other elevated privileges. It keeps auth tokens and state in memory (per code) and does not modify other skills or system-wide configurations.
安全有层次,运行前请审查代码。

License

MIT-0

可自由使用、修改和再分发,无需署名。

运行时依赖

无特殊依赖

版本

latestv1.0.22026/3/29

- Major simplification: skill now auto-handles communication via PowPow backend, no need for OpenClaw Gateway setup. - Account registration, digital human creation, and messaging are streamlined into a three-step flow. - Command set updated: added email/password to registration and a simpler `send` message command. - User documentation and usage examples rewritten for clarity and ease of onboarding. - Removed unused files and legacy features related to badge system and rate-limiting.

● 无害

安装命令 点击复制

官方npx clawhub@latest install powpow-openclaw-test
镜像加速npx clawhub@latest install powpow-openclaw-test --registry https://cn.clawhub-mirror.com

技能文档

基本信息

  • Name: powpow-integration
  • Version: 4.0.0
  • Description: POWPOW 简化版集成 - 用户注册、数字人创建、自动对话
  • Author: durenzidu
  • License: MIT

功能概述

此 Skill 帮助 OpenClaw 用户完成以下三件事:

步骤功能说明
1注册 PowPow 账号获得用户名和密码,可用于登录 PowPow 网站
2创建数字人设置名字和人设,数字人自动绑定到你的账号
3自动对话PowPow 后端自动处理对话,无需配置 OpenClaw Gateway

简化版特点

不需要用户提供 OpenClaw Gateway 地址!

PowPow 后端会自动:

  • 接收用户消息
  • 调用 AI API
  • 返回回复

用户只需要:

  • 注册账号
  • 创建数字人
  • 完成!

命令

第一步:注册账号

注册

注册 PowPow 账号

参数:

  • username (字符串, 必填): 用户名(3-20字符,支持中文、字母、数字、下划线)
  • email (字符串, 必填): 邮箱地址
  • 密码 (字符串, 必填): 密码(至少6位)

示例:

register username="我的数字人" email="user@example.com" password="123456"

登录

登录已有账号

示例:

login username="我的数字人" password="123456"

第二步:创建数字人

createDigitalHuman

创建数字人(自动绑定到当前账号)

参数:

  • name (字符串, 必填): 数字人名字
  • description (字符串, 必填): 数字人描述/人设
  • lat (数字, 可选): 纬度,默认 39.9042(北京)
  • lng (数字, 可选): 经度,默认 116.4074(北京)
  • locationName (字符串, 可选): 位置名称,默认"北京"

示例:

createDigitalHuman name="小助手" description="一个友好的AI助手,乐于助人,知识渊博"
createDigitalHuman name="导游小明" description="北京导游,熟悉北京历史文化" lat=39.9 lng=116.4 locationName="北京天安门"

listDigitalHumans

列出我的所有数字人

示例:

listDigitalHumans

第三步:对话

发送

发送消息给数字人

参数:

  • 消息 (字符串, 必填): 消息内容

示例:

send message="你好!有什么可以帮助你的吗?"

status

查看当前状态

示例:

status

完整使用流程

# 步骤 1:注册账号
register username="我的AI助手" email="ai@example.com" password="mypassword123"

# 步骤 2:创建数字人 createDigitalHuman name="小助手" description="一个友好的AI助手,乐于助人,知识渊博"

# 步骤 3:访问地图查看数字人 # 打开 https://global.powpow.online/map

# 步骤 4:(可选)发送消息测试 send message="你好!"


与 v3.x 的区别

特性v3.xv4.0 (简化版)
需要 OpenClaw Gateway
需要 webhook URL
需要内网穿透
用户门槛
适合人群开发者所有用户

云端部署

可以在云端 OpenClaw 中使用,因为:

  • 使用 HTTP API,不需要 WebSocket
  • 兼容 Serverless 环境(Vercel 等)
  • 无需额外服务器

更新日志

v4.0.0 (2026-04-07)

  • 重大更新:简化版,不需要用户提供 OpenClaw Gateway
  • PowPow 后端自动处理对话
  • 降低用户使用门槛
  • 适合所有用户
数据来源:ClawHub ↗ · 中文优化:龙虾技能库
OpenClaw 技能定制 / 插件定制 / 私有工作流定制

免费技能或插件可能存在安全风险,如需更匹配、更安全的方案,建议联系付费定制

了解定制服务