一键导入
find-task-by-title
Look up task IDs by title — helper for the next update_task / delete / mark_done step.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Look up task IDs by title — helper for the next update_task / delete / mark_done step.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Create a new contact (person or business) with ALL its channels and address in one call.
Fetch the full body and metadata of a single email by message_id.
Record a new bill / recurring expense
Create a new calendar event in Yorik's local calendar
Attach a postal address (home, work, billing, shipping) to an existing contact.
Attach a channel (email, phone, whatsapp, signal, sms, website, social) to a contact.
| name | find_task_by_title |
| description | Look up task IDs by title — helper for the next update_task / delete / mark_done step. |
| when_to_use | When the user names a SPECIFIC task ("delete the milk task", "mark the gym one done", "change the deadline of the Steuer-Erklärung") and you need its `task_id` to call update_task / delete_task / mark_task_done. check_tasks renders cards to the user but hides titles + IDs from the LLM (anti-enumeration). This skill is the complement — LLM-only output, no cards, returns the exact rows needed. Default `include_done=true` so "mark the milk task done" finds already- completed tasks too (the user may want to re-open or delete them). After this returns: - 0 hits → tell the user, ask them to clarify. - 1 hit → use task_id directly in the follow-up call. - 2+ hits → ask the user which one (quote title + due_date). |
| inputs | {"query":{"type":"string","required":true,"description":"Substring or word fragment to match against task title. Case-insensitive. Wildcards not needed — implementation already does LIKE-style matching."},"include_done":{"type":"boolean","required":false,"default":true,"description":"Include completed tasks. Default true (covers \"the milk task I marked done earlier\")."},"limit":{"type":"integer","required":false,"default":10,"description":"Cap result count. Stays small because this is LLM-internal."}} |
| outputs | {"matches":{"type":"array","description":"Each row has id, title, due_date, done, parent_task_id. Read these directly; do NOT quote to the user except for disambiguation when multiple matches."},"count":{"type":"integer"}} |
| side_effects | None. No UI emission, no LLM-visible cards. |
| cost | One indexed SQLite LIKE query. |
| permissions | ["*"] |
| tags | ["tasks","resolver","internal"] |
Title resolver for the tasks table. Companion to check_tasks — that
one shows cards to the user without leaking titles to the LLM; this
one returns IDs to the LLM without showing anything to the user.
Use this BEFORE update_task / delete_task / mark_task_done whenever the user names the task by title rather than by ID.