从 todos.json 和归档中以多种匹配方式查找 todo
66
78%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Passed
No findings from the security scan
Fix and improve this skill with Tessl
tessl review fix ./.trae/openclaw-skills/todo-finder/SKILL.md当需要查找 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 "调研"a2e95c0
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.