1.0.0 β’ Published 5 months ago
my-task-tracker v1.0.0
Task Tracker CLI
π Project Source
This project was created as part of roadmap.sh.
A simple command-line tool for tracking your tasks efficiently.
π Features
- Add, update, delete, and list tasks directly from the command line.
- Filter tasks based on their status (Done, In Progress, Not Started).
π Commands
π View Tasks
task
ortask list
β Display all tasks.task list -d
ortask list --done
β Show completed tasks.task list -i
ortask list --in-progress
β Show tasks that are in progress.task list -n
ortask list --not-started
β Show tasks that havenβt started yet.
βοΈ Manage Tasks
task add [title or titles]
β Add new task(s).task update [id] -s done -t 'new title'
β Update a task's status and title.task delete [id]
β Remove a task.
π Usage Example
# Add a new task
task add "Finish project documentation"
# List all tasks
task list
# Mark a task as done and update the title
task update 3 -s done -t "Submit project report"
# Delete a task
task delete 2
1.0.0
5 months ago