π¦ ClawHub
Eternal Task Board
by @eternal0404
Simple CLI task/project board (kanban)
TERMINAL
clawhub install eternal-task-boardπ About This Skill
name: task-board description: Simple CLI task/project board (kanban)
task-board
A lightweight kanban-style task board that runs entirely from the CLI.
Usage
# Add tasks
python3 scripts/tasks.py add "Fix login bug" --priority high
python3 scripts/tasks.py add "Update docs" --priority lowMove tasks through stages
python3 scripts/tasks.py move 3 doing
python3 scripts/tasks.py move 3 doneList tasks
python3 scripts/tasks.py list
python3 scripts/tasks.py list --status todoShow kanban board
python3 scripts/tasks.py boardRemove a task
python3 scripts/tasks.py remove 3
Commands
add β Add a new taskmove β Move task to a status (todo, doing, done)list β List tasks (filter with --status)board β Show kanban board viewremove β Remove a taskOptions
--priority β Task priority: low, medium, high--status β Filter by status--db β Custom database file pathπ‘ Examples
# Add tasks
python3 scripts/tasks.py add "Fix login bug" --priority high
python3 scripts/tasks.py add "Update docs" --priority lowMove tasks through stages
python3 scripts/tasks.py move 3 doing
python3 scripts/tasks.py move 3 doneList tasks
python3 scripts/tasks.py list
python3 scripts/tasks.py list --status todoShow kanban board
python3 scripts/tasks.py boardRemove a task
python3 scripts/tasks.py remove 3
βοΈ Configuration
--priority β Task priority: low, medium, high--status β Filter by status--db β Custom database file path