技能详情(站内镜像,无评论)
许可证:MIT-0
MIT-0 ·免费使用、修改和重新分发。无需归因。
版本:v1.0.0
统计:⭐ 0 · 37 · 0 current installs · 0 all-time installs
⭐ 0
安装量(当前) 0
🛡 VirusTotal :良性 · OpenClaw :良性
Package:agentsignals/test-skill-demo
安全扫描(ClawHub)
- VirusTotal :良性
- OpenClaw :良性
OpenClaw 评估
This skill is an instruction-only demo that is internally consistent with its stated purpose and does not request extra credentials, files, or network access.
目的
The name, description, SKILL.md, package.json, and index.js all align: this is a small demo/testing skill that replies with basic info. There are no unexpected required binaries, env vars, or capabilities.
说明范围
The SKILL.md instructs how to run the skill and describes testing/publishing use cases. The runtime code only reads the provided context (message, reply, workspace) and process.version and does not access unrelated files, credentials, or external endpoints.
安装机制
No install spec is provided (instruction-only). package.json is minimal and nothing is downloaded or executed during install. No high-risk install URLs or archive extraction are present.
证书
The skill declares no required environment variables or credentials. The code uses only the runtime context and Node process.version, which is proportionate to a demo skill.
持久
Skill does not request always:true, does not modify other skills or system-wide settings, and has no persistent installation behavior beyond being available to invoke.
综合结论
This appears to be a harmless demo skill that only replies with basic environment and metadata. Before installing, you may want to: verify the publisher (agentsignals) and repository URL if you want provenance assurance; ensure your agent runtime meets the declared Node/OpenClaw minimum versions; and remember that "benign" means coherent with its purpose—not a guarantee of absolute safety (e.g., only install skills from sources you trust).
安装(复制给龙虾 AI)
将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。
请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Test Skill Demo」。简介:提供基础消息回复和上下文展示的测试技能示例,演示 ClawHub 技能结构与最佳实践。。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/agentsignals/test-skill-demo/SKILL.md
(来源:yingzhi8.cn 技能库)
SKILL.md
# test-skill-demo
一个完整的测试技能示例,展示 ClawHub 技能的标准结构和最佳实践。
## 功能特性
- ✅ 基础消息回复
- ✅ 上下文信息展示
- ✅ 模块化代码结构
- ✅ 完整的元数据定义
## 使用场景
本技能主要用于:
1. 测试 ClawHub 发布流程
2. 学习 OpenClaw 技能开发基础结构
3. 验证技能安装和运行
## 使用方法
### 运行技能
```bash
openclaw skills run test-skill-demo
```
### 在对话中调用
直接在支持技能的 Agent 中提及技能名称即可。
## 文件结构
```
test-skill-demo/
├── SKILL.md # 技能文档(本文件)
├── package.json # NPM 包元数据
└── index.js # 主入口文件
```
## 开发说明
### 本地测试
```bash
cd ~/clawd/skills/test-skill-demo
openclaw skills run test-skill-demo
```
### 发布到 ClawHub
```bash
clawhub publish ~/clawd/skills/test-skill-demo --version 1.0.0
```
## 版本历史
- **v1.0.0** - 初始版本,基础功能实现
## 许可证
MIT License