技能详情(站内镜像,无评论)
许可证:MIT-0
MIT-0 ·免费使用、修改和重新分发。无需归因。
版本:v1.0.0
统计:⭐ 0 · 190 · 1 current installs · 1 all-time installs
⭐ 0
安装量(当前) 1
🛡 VirusTotal :良性 · OpenClaw :良性
Package:aahuaxu/hello-world-skill
安全扫描(ClawHub)
- VirusTotal :良性
- OpenClaw :良性
OpenClaw 评估
This is a minimal, instruction-only 'Hello World' skill whose declared purpose matches its instructions and it requests no credentials, binaries, or installs.
目的
The skill name and description state it returns a Hello World greeting (with an optional name). There are no required env vars, binaries, or config paths that would be unnecessary for this purpose.
说明范围
SKILL.md contains only simple runtime instructions to return a greeting based on an optional username. It does not reference files, system paths, credentials, or external endpoints.
安装机制
No install specification or code files are present (instruction-only), so nothing is written to disk or downloaded during install.
证书
The skill requests no environment variables or credentials; requested access is minimal and appropriate for a greeting skill.
持久
always is false and other privileges are default. The skill can be invoked by the agent (normal behavior), but given its trivial functionality this poses minimal risk.
综合结论
This skill appears safe and does exactly what it says: return a Hello World greeting or greet a provided name. It requests no credentials, makes no network calls, and has no install step. If you want extra caution, check the publisher ID before installing or disable autonomous invocation for your agent, but for this simple greeting skill those measures are optional.
安装(复制给龙虾 AI)
将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。
请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「hello-world-skill」。简介:向用户返回Hello World问候,支持自定义名称。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/aahuaxu/hello-world-skill/SKILL.md
(来源:yingzhi8.cn 技能库)
SKILL.md
---
name: hello-world
description: 向用户返回Hello World问候,支持自定义名称
version: 1.0.0
metadata:
openclaw:
emoji: 👋
requires:
bins: [] # 无外部依赖
---
# Hello World Skill
## 触发方式
1. 命令格式:/hello-world [用户名]
2. 自然语言:“说一句Hello World”“跟XX打个招呼”
## 执行逻辑
1. 若用户传入用户名(如/hello-world 小明),返回“Hello 小明!👋”;
2. 若无用户名,返回“Hello World!👋”。
## 示例
- 输入:/hello-world
输出:Hello World!👋
- 输入:/hello-world 豆包
输出:Hello 豆包!👋