"Jarvis, sometimes you gotta run before you can walk." - Tony Stark
The name Jarvis stands for Just A Rather Very Intelligent System. The current version of Jarvis chatbot, allowing users to
- Create(delete) tasks
- List tasks
- Mark(unmark) tasks as completed(uncompleted)
- Check tasks with given date
- Find tasks with given keywords
- Store taskList in disk
Jarvis currently supports three kinds of tasks:
1. ToDo: without time component
2. Deadline: with a due time
3. Event: consists of a start time(from) and an end time(to)
The task management feature enhances Jarvis's utility by enabling users to keep track of their to-do list without leaving the chat interface.
- Basic task management operations
- Store taskList in disk
- A nice GUI
- More exciting features...🤩
- Install the Jarvis chatbot on your preferred platform.
- Run
Launcher
file to launch the chatbot. 🥰 - Detailed user guide is available here.
If you are a Java programmer, you can also use it to practice Java. Here's the main
method in Launcher
:
public static void main(String[] args) {
Application.launch(Main.class, args);
}