Skill
Testing
Skill
/sample-with-evals
帮助用户管理待办事项,支持添加、删除、标记完成、列出任务等操作。
Install
$ npx -y skills add alibaba/skill-up --skill sample-with-evals --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/sample-with-evals
Context preview
The summary Claude sees to decide when to auto-load this skill.
帮助用户管理待办事项,支持添加、删除、标记完成、列出任务等操作。
SKILL.md
sample-with-evals.SKILL.mdname: todo-manager description: 帮助用户管理待办事项,支持添加、删除、标记完成、列出任务等操作。
todo-manager
一个轻量级的待办事项管理 Skill。
功能
- 添加新的待办事项
- 标记事项为已完成
- 删除事项
- 列出所有事项(支持按状态过滤)
触发场景
- 用户说 "添加一个待办"、"我有个任务要记录"
- 用户说 "完成了任务 X"、"删除任务 X"
- 用户说 "看看我还有哪些待办"
脚本
使用 `scripts/todo.py` 进行持久化操作,数据存储在工作区的 `todos.json` 中。

