A simple task manager chatbot for efficient productivity.
Charlie is a chatbot designed to help users manage tasks efficiently. It supports To-Dos, Deadlines, and Events, and allows users to list or delete tasks easily.
Create a simple to-do task without a deadline.
todo <task description>
todo Buy groceries
Got it! I've added this task:
[T][ ] Buy groceries
Now you have 1 task in the list.
Create a task with a specified deadline.
deadline <task description> /by <time>
deadline Finish assignment /by 2025-02-21
Got it! I've added this task:
[D][ ] Finish assignment (by: Feb 21 2025)
Now you have 2 tasks in the list.
Create an event that spans a specific time range.
event <task description> /from <start time> /to <end time>
event Team meeting /from 2pm /to 4pm
Got it! I've added this task:
[E][ ] Team meeting (from: 2pm to: 4pm)
Now you have 3 tasks in the list.
Remove a specific task from the list.
delete <task number>
delete 2
Noted! I've removed this task:
[D][ ] Finish assignment (by: Feb 21 2025)
Now you have 2 tasks in the list.
View all tasks currently stored.
list
Here are the tasks in your list:
1. [T][ ] Buy groceries
2. [E][ ] Team meeting (from: 2pm to: 4pm)
End the session with Charlie.
bye
Goodbye! Hope to see you again soon!
- Download and extract
Charlie.jar. - Open a terminal or command prompt in the extracted folder.
- Run the chatbot using:
java -jar Charlie.jar
- Start managing your tasks!
