Loading...
Loading...
Use this skill when you need to modify a project (add, delete, or modify files) and want to organically synchronize update_plan with CSV: Create a `{Task Name} TO DO list.csv` file in the project root directory, use TODO/IN_PROGRESS/DONE statuses to drive the pending/in_progress/completed status of the plan, advance tasks synchronously, and delete the file after all tasks are completed.
npx skill4agent add hjdyzy/aicoding-cookbook todo-list-csvupdate_planupdate_planin_progresspendingstepitem{Task Name} TO DO list.csv{Task Name} TO DO list.csvid,item,status,done_at,notesiditemstepstatusTODOIN_PROGRESSDONEdone_atnotesTODOIN_PROGRESSDONETODODONETODOpendingIN_PROGRESSin_progressDONEcompletedIN_PROGRESSIN_PROGRESSin_progressIN_PROGRESSadvanceplan --normalizeupdate_planin_progressin_progressDONEcleanupupdate_plancompletedscripts/todo_csv.pypython3 ~/.codex/skills/todo-list-csv/scripts/todo_csv.py init --title "修复登录 bug" --item "复现问题" "加回归测试" "修复实现" "运行测试/构建"python3 ~/.codex/skills/todo-list-csv/scripts/todo_csv.py path --title "修复登录 bug"update_plan--normalizepython3 ~/.codex/skills/todo-list-csv/scripts/todo_csv.py plan --file "{csv_path}" --normalize --explanation "同步自 TODO CSV"python3 ~/.codex/skills/todo-list-csv/scripts/todo_csv.py start --file "{csv_path}" --id 2python3 ~/.codex/skills/todo-list-csv/scripts/todo_csv.py advance --file "{csv_path}" --notes "已通过单测"python3 ~/.codex/skills/todo-list-csv/scripts/todo_csv.py status --file "{csv_path}" --verbosepython3 ~/.codex/skills/todo-list-csv/scripts/todo_csv.py cleanup --file "{csv_path}"