Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/huangruiteng/CS-Notes --skill todo-finder명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
Qualify the exact final diff for a LoopX-managed goal. Use when goal policy enables change_quality_qualification, before a non-trivial delivery or merge, and when producing or repairing an exact-scope quality receipt. The workflow is language-neutral, permits at most one policy-authorized safe-fix pass, and never grants merge or repository authority.
Operate an explicitly activated LoopX Material Lifecycle for a connected project. Use for material-store inventory, lossless migration, candidate/archive transitions, exact-read-backed ranking, ranked-entry rebuilds, bounded Explore intake, owner-gated apply, rollback, and audit. Do not use for ordinary one-off reading or research when the project has not activated Material Lifecycle.
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. Do not use the career/Agent-infra routing bias for user-directed `整理笔记` into a named note.
SKILL.md 표시 중
| 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 "调研"