"Don't let your dreams be dreams" - Shia LaBeouf (source)
The project implements a chatbot that assists users with managing their tasks, offering a streamlined interface for task management. This bot:
- increases efficiency
- helps remember tasks
- is super
complicatedeasy to learn and use
These Are the Features:
- Adding and Deleting Tasks
- Marking Tasks as Completed
- GUI and frontend
How to Use the Features:
- Add a Task: Use the
todo TASK_NAME,deadline TASK_NAME /by DATE (yyyyMMdd HHmm or yyyyMMdd), orevent TASK_NAME /from START /to ENDcommand. - Complete a Task: Mark tasks as done with the
mark TASK_NUMBERcommand. - Delete a Task: Remove tasks using the
delete TASK_NAMEcommand.
The location for storing tasks can be changed easily in Natsbot.java by editing the main method, which is displayed below:
public static void main(String[] args) {
new Natsbot("data/natsbot.txt").run();
}