task-board
A lightweight kanban-style task board that runs entirely from the CLI.
Usage
CODEBLOCK0
Commands
- -
add <title> — Add a new task - INLINECODE1 — Move task to a status (todo, doing, done)
- INLINECODE2 — List tasks (filter with
--status) - INLINECODE4 — Show kanban board view
- INLINECODE5 — Remove a task
Options
- -
--priority — Task priority: low, medium, INLINECODE9 - INLINECODE10 — Filter by status
- INLINECODE11 — Custom database file path
task-board
一个完全在命令行中运行的轻量级看板风格任务面板。
使用方法
bash
添加任务
python3 scripts/tasks.py add 修复登录错误 --priority high
python3 scripts/tasks.py add 更新文档 --priority low
移动任务至不同阶段
python3 scripts/tasks.py move 3 doing
python3 scripts/tasks.py move 3 done
列出任务
python3 scripts/tasks.py list
python3 scripts/tasks.py list --status todo
显示看板
python3 scripts/tasks.py board
删除任务
python3 scripts/tasks.py remove 3
命令
- - add <标题> — 添加新任务
- move <状态> — 将任务移至指定状态(todo、doing、done)
- list — 列出任务(可使用 --status 过滤)
- board — 显示看板视图
- remove — 删除任务
选项
- - --priority — 任务优先级:low、medium、high
- --status — 按状态过滤
- --db — 自定义数据库文件路径