Execute qualquer Skill no Manus
com um clique
com um clique
Execute qualquer Skill no Manus com um clique
Começar$pwd:
$ git log --oneline --stat
stars:1.849
forks:480
updated:23 de março de 2026 às 16:44
Explorador de arquivos
SKILL.md
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.
| name | todo |
| description | Maintain a shared workspace TODO list with blocked tasks. |
| metadata | {"openclaw":{"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.