Welcome to SKD (Simple Keeptracker Duke).
SKD is a personal task manager chatbot designed to help you track tasks easily.
From simple to-dos to complex events and deadlines, SKD helps you organize your day effectively.
todo [task]
: Adds a ToDo task.deadline [task] /by [yyyy-mm-dd hh:mm]
: Adds a Deadline task.event [task] /from [yyyy-mm-dd hh:mm] /to [yyyy-mm-dd hh:mm]
: Adds an Event task.mark [index]
: Marks a task as done.unmark [index]
: Unmarks a task as undone.snooze [index] [days]
: Snoozes a deadline or event by a certain number of days.delete [index]
: Deletes a task.find [keyword]
: Finds tasks containing a keyword.list
: Lists all tasks.bye
: Exits the application.todo [task]
: Adds a ToDo task.todo Buy groceries
Got it. I've added this task:
[T][ ] Buy groceries
Now you have 1 task in the list.
deadline [task] /by [yyyy-mm-dd hh:mm]
: Adds a Deadline task.deadline Submit assignment /by 2024-09-20 23:59
Got it. I’ve added this task:
[D][ ] Submit assignment (by: Sep 20 2024, 23:59)
Now you have 2 tasks in the list.
event [task] /from [yyyy-mm-dd hh:mm] /to [yyyy-mm-dd hh:mm]
: Adds an Event task.event Team meeting /from 2024-09-10 10:00 /to 2024-09-10 12:00
Got it. I’ve added this task:
[E][ ] Team meeting (from: Sep 10 2024, 10:00 to: Sep 10 2024, 12:00)
Now you have 3 tasks in the list.
mark [index]
: Marks a task as complete.mark 2
Nice! I've marked this task as done:
[D][X] Submit assignment (by: Sep 20 2024, 23:59) tasks in the list.
unmark [index]
: Unmarks a task as incomplete.unmark 2
OK, I've marked this task as not done yet:
[D][ ] Submit assignment (by: Sep 20 2024, 23:59)
snooze [index] [days]
: Snoozes a deadline or event by the specified number of days.snooze 2 3
Snoozed deadline task by 3 days:
[D][ ] Submit assignment (by: Sep 23 2024, 23:59)
delete [index]
: Deletes a task from the list.delete 1
Noted. I've removed this task:
[T][ ] Buy groceries
Now you have 2 tasks in the list.
find [keyword]
: Searches for tasks that match the keyword.find meeting
```
Here are the matching tasks in your list:
list
: Displays all tasks in the task list.list
```
Here are the tasks in your list:
bye
: Exits the application.bye
Bye. Hope to see you again soon!
snooze [index] [days]
to delay the task.find [keyword]
command to search for tasks.