
Your Ultimate Task Management Companion
Stay organized, productive, and in control with Tasker, the all-in-one task manager designed to simplify your life. Whether you’re managing daily to-dos, tracking deadlines, scheduling events, or handling fixed-duration tasks, Tasker has you covered. With its intuitive interface and powerful features, you’ll never miss a beat.
description: A string for the task description.
| is not allowed./ is encountered, as everything after is treated as command arguments.datetime: A date and time in the format d/m/yyyy HHMM.
d: 1 or 2 digit of the day.m: 1 or 2 digit of the month.yyyy: 4 digit of the year.HH: 2 digit 24H format of the hour.MM: 2 digit of the minutes.hours: A positive integer of the hours required.minutes: A positive integer of the minutes required.index: An integer representing a task’s index, obtained from the number beside it in the list command..term: A string to search the tasks description with.Whitespaces between command parts are ignored.
Adds a simple task with a description to be done
todo {description}
todo Read a book
Got it. I've added this task:
[T][] Read a book
Now you have 1 tasks in the list.
TAdds a task with a description and a deadline to complete it by.
deadline {description} /by {datetime}
deadline Complete assignment /by 15/2/2025 1800
Got it. I've added this task:
[D][] Complete assignment (by: Feb 15 2025 1800H)
Now you have 2 tasks in the list.
DAdds a task with a description, a start and an end time.
event {description} /from {datetime} /to {datetime}
event Company meeting /from 16/2/2025 1400 /to 16/2/2025 1800
Got it. I've added this task:
[E][] Company meeting (from: Feb 16 2025 1400H to: Feb 16 2025 1800H)
Now you have 3 tasks in the list.
Edatetime for /from must not be after that for /toAdds a task with a description and a required duration to complete
fixed {description} /hr {hours} /min {minutes}
fixed Wash clothes /hr 1 /min 45
Got it. I've added this task:
[F][] Wash clothes (needs: 1H 45M)
Now you have 4 tasks in the list.
FLists all tasks in the list.
list
Here are the tasks in your list:
1.[T][] Read a book
2.[D][] Complete assignment (by: Feb 15 2025 1800H)
3.[E][] Company meeting (from: Feb 16 2025 1400H to: Feb 16 2025 1800H)
4.[F][] Wash clothes (needs: 1H 45M)
Marks a task as complete.
mark {index}
mark 1
Nice! I've marked this task as done:
[T][X] Read a book
Unmarks a task from being complete.
unmark {index}
unmark 1
Ok, I've marked this task as not done yet:
[T][] Read a book
Finds a task containing the search term in its description.
find {term}
find read
Here are the matching tasks in your list:
[T][] Read a book
Deletes a task from the list.
delete {index}
delete 1
Noted. I've removed this task:
[T][] Read a book
Now you have 3 tasks in the list.
Tasks are stored and loaded from the file at ./data/tasker.txt