基于 SOC 职业分类
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/iamlukethedev/Hermes3D --skill todo命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
| name | todo |
| description | Maintain a shared workspace TODO list with blocked tasks. |
| metadata | {"hermes":{"skillKey":"todo-board"}} |
Use this skill when the user wants to manage a shared task list for the current workspace.
{
"activation": {
"anyPhrases": [
"todo",
"todo list",
"blocked task",
"blocked tasks",
"add to my todo",
"show my todo"
]
},
"movement": {
"target": "desk",
"skipIfAlreadyThere": true
}
}
When this skill is activated, the agent should return to its assigned desk before handling the request.
The authoritative task file is todo-skill/todo-list.json in the workspace root.
todo-skill directory and todo-list.json file if they do not exist.todo-skill/todo-list.json before answering any task-management request.status: "blocked". If the task does not exist and the request is clear, create it directly as blocked.status: "todo" and clear blockReason.TODO and BLOCKED.Use this JSON shape:
{
"version": 1,
"updatedAt": "2026-03-22T00:00:00.000Z",
"items": [
{
"id": "task-1",
"title": "Example task",
"status": "todo",
"createdAt": "2026-03-22T00:00:00.000Z",
"updatedAt": "2026-03-22T00:00:00.000Z",
"blockReason": null
}
]
}
version at 1.prepare-demo or task-2.todo or blocked for status.createdAt, item updatedAt, and top-level updatedAt.blockReason as null unless the user gave a reason or a short precise reason is clearly implied.createdAt values for unchanged items.updatedAt whenever you modify it.updatedAt on every write.TODO and BLOCKED.Capture actionable user requests as persistent tasks, update task status as work progresses, and keep a shared task store in sync. Use when a user asks an agent to do work, check progress, block a task, complete a task, or manage the Kanban board.
Control Spotify playback, search music, and return shareable music links.