Welcome to Aegis, your Anti-Shadow Suppression Weapon and Task Manager! Aegis helps you manage your daily tasks efficiently while providing a simple, command-based interface. This guide will walk you through how to set up Aegis, use its features, and make the most out of this task manager.
Aegis is a command-line based task manager that helps you keep track of your to-dos, deadlines, and events. With Aegis, you can quickly add tasks, mark them as done, find specific tasks using keywords, and delete tasks when they are no longer needed.
To get started with Aegis, follow these steps:
java -jar Aegis.jar
You can add different types of tasks: ToDos, Deadlines, and Events.
todo <description>
todo Read a book
deadline <description> /by <date and time>
deadline Submit report /by 2024-09-30 1800
event <description> /from <start time> /to <end time>
event Project meeting /from 2024-09-28 1000 /to 2024-09-28 1200
Displays all the tasks in your task list.
list
list
Aegis will display all tasks with their statuses.Marks a specific task as completed.
mark <task number>
mark 2
Marks a specific task as not completed.
unmark <task number>
unmark 2
Deletes a specific task from the task list.
delete <task number>
delete 3
Searches for tasks that contain a specific keyword.
find <keyword>
find book
Exits the Aegis application.
bye
bye
Command | Description |
---|---|
todo <description> |
Adds a ToDo task. |
deadline <description> /by <date and time> |
Adds a Deadline task. |
event <description> /from <start> /to <end> |
Adds an Event task. |
list |
Lists all tasks. |
mark <task number> |
Marks a task as done. |
unmark <task number> |
Marks a task as not done. |
delete <task number> |
Deletes a task. |
find <keyword> |
Finds tasks containing the keyword. |
bye |
Exits the application. |
Q: What happens if I enter an invalid command?
A: Aegis will notify you that the command is not recognized and provide guidance on the correct command format.
Q: Can I save my tasks?
A: Yes, Aegis automatically saves your tasks to a file every time you add, mark, unmark, or delete a task.
Q: How do I know if a task is marked as done?
A: Tasks marked as done will display an [X]
next to their description.
For any additional questions or troubleshooting, please refer to the full documentation at Aegis GitHub Repository.
This user guide should provide you with the necessary information to efficiently use Aegis Task Manager & Chatbot. Happy task managing!