一键导入
tasks
When the user wants to see, create, or schedule a task/reminder/wiedervorlage on their personal task list, use tasks.list / tasks.create.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
When the user wants to see, create, or schedule a task/reminder/wiedervorlage on their personal task list, use tasks.list / tasks.create.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | tasks |
| description | When the user wants to see, create, or schedule a task/reminder/wiedervorlage on their personal task list, use tasks.list / tasks.create. |
| metadata | {"openape":{"requires_tools":["tasks.list"]},"openclaw":{"requires":{"bins":["ape-tasks"]}}} |
The owner's personal task list at https://tasks.openape.ai — same one their ape-tasks CLI on Mac and the iOS app use. You're allowed to read it and add to it via the tasks.list and tasks.create tools.
Use tasks.create whenever the user asks for any of:
Use tasks.list when they ask "what's on my list", "any open tasks", "remind me what's due".
tasks.create({
"title": "<short title>",
"notes": "<optional longer body>",
"priority": "low" | "med" | "high", // default med
"due_at": "<ISO 8601 or relative: +2h | +1d | tomorrow 9am>"
})
For wiedervorlage (mail-eskalation) the owner has a separate flow via ape-tasks new --remind-at ... — that path triggers email reminders. If the user wants a reminder (not just a todo), prefer:
bash({ "cmd": "ape-tasks new --title '...' --remind-at '+2d' --context-summary '...' --context-url '...'" })
…because the CLI has more knobs than the tool exposes (assignee, remind-at, context-url).
tasks.list first if the user might have one already.tasks.create, set due_at and explain that the list will surface it, but no push notification fires unless they used ape-tasks --remind-at.When a task can't be done with the other curated tools (file.read, http.get, tasks.create, mail.list, etc.), use bash — runs any shell command on the agent host through the DDISA grant cycle.
When the user asks you to read, write, or check a file in your home directory, use the file.read / file.write tools — they're $HOME-jailed and safer than bash cat.
When the user asks to fetch a webpage, hit a REST API, or POST JSON to an endpoint, use the http.get / http.post tools — never invent URLs.
When the user asks about their inbox — what's there, search for an email, recent unread — use mail.list / mail.search.
When the user asks for the current time, date, or wants a sanity-check that the runtime is alive, use the time.now tool — never guess.
OpenAPE Shapes — grant-aware CLI wrappers with adapter registry for structured, auditable command execution