with one click
todo-finder
从 todos.json 和归档中以多种匹配方式查找 todo
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
从 todos.json 和归档中以多种匹配方式查找 todo
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Inspect and manage guarded Codex App-native or launchd heartbeats for Codex main control threads. Use when the user wants Codex to periodically continue a specific thread only when it is idle, avoid interrupting active work, keep App-visible interactions, inspect thread status, or enable/disable project autopilot heartbeats.
Coordinate Lark/Feishu CLI tasks from Codex. Use when a request involves Feishu/Lark docs, wiki, Drive files, Sheets, Base, Calendar, Minutes, IM, Mail, Tasks, Contacts, Slides, whiteboards, approvals, attendance, or when a Lark URL/token must be read, edited, summarized, routed, or turned into a real work artifact.
Use when the user asks Codex to research, find learning materials, process "素材:" links, "请你读" / "精读" a material, build a material radar, or use SenSight-like broad information retrieval for career learning and Agent infra tracking.
Organize tasting menus, menu photos, and visit notes into the right gourmet note. Use when the user shares a restaurant menu, wants a tasting write-up, or asks to merge a new visit into Notes/Gourmet.md without overwriting earlier visits.
Track and synthesize current AI hotspots into a bilingual HTML daily report. Use when the user says "AI热点", asks for AI日报/AI日报 HTML/AI hot topics, or wants the best recent AI products, papers, viewpoints, and cognition-shifting items from AI/news aggregators.
Extract a Markdown heading tree with line numbers before editing or integrating notes. Use when you need to inspect a long Markdown file quickly and choose the best insertion point instead of editing blind.
| name | todo-finder |
| description | 从 todos.json 和归档中以多种匹配方式查找 todo |
当需要查找 todo 时使用该技能。支持从 todos.json 和归档中以多种匹配方式查找 todo。
python scripts/todo_finder.py "<query>"--id <todo_id> - 按 todo ID 精确匹配--title <keyword> - 按标题关键词匹配--keyword <keyword> - 按关键词匹配(标题、内容、链接等)--status <status> - 按状态匹配(pending/in-progress/completed)--priority <priority> - 按优先级匹配(P0-P9)--assignee <assignee> - 按负责人匹配--archived - 只查找归档中的 todo--all - 查找所有 todo(包括归档)# 按 todo ID 精确匹配
python scripts/todo_finder.py --id todo-20260220-008
# 按标题关键词匹配
python scripts/todo_finder.py --title "Top Lean AI"
# 按关键词匹配
python scripts/todo_finder.py --keyword "调研"
# 按状态匹配
python scripts/todo_finder.py --status in-progress
# 按优先级匹配
python scripts/todo_finder.py --priority P2
# 查找归档中的 todo
python scripts/todo_finder.py --archived --keyword "调研"
# 查找所有 todo(包括归档)
python scripts/todo_finder.py --all --keyword "调研"