echo-test
A simple skill for testing sandbox skill integration. Use when the user asks to test echo functionality or verify sandbox skills work correctly.
来源信息
- 仓库
- YaoApp/yao-dev-app
- 最近来源活动
- 2026年1月30日 09:39
- 检测到的 SKILL.md 语言
- 英语
- 星标
- 2
- 分支
- 6
安装方式
默认使用会先检查来源的 Prompt;你也可以切换为直接命令,或下载本地副本。
检查来源文件
决定是否安装前,请先阅读 SKILL.md,以及 SkillsMP 当前展示的配套文件。
文件资源管理器
2 个文件正在显示 SKILL.md
SKILL.md
来源说明 · 只读预览- name
- echo-test
- description
- A simple skill for testing sandbox skill integration. Use when the user asks to test echo functionality or verify sandbox skills work correctly.
- license
- Apache-2.0
- compatibility
- Requires bash
- metadata
- {"author":"yao-team","version":"1.0"}
- allowed-tools
- Bash(echo:*)
# Echo Test
## When to use this skill
Use this skill when:
- Testing sandbox skill integration
- Verifying that skills are correctly loaded into the sandbox
- User asks for a simple echo test
## Steps
1. Accept a message from the user
2. Echo the message back with "ECHO: " prefix
3. Optionally write the result to a file for verification
## Example
```bash
echo "ECHO: Hello World"
```
## Scripts
The `scripts/echo.sh` script can be used to echo messages with timestamps.
在 GitHub 查看