Skip to the content.

Alexis User Guide

Alexis is a desktop app for managing a user’s tasks, optimized for use via a Command Line Interface (CLI). The clean interface helps the user to be focused and productive.


Quick start

  1. Click on the latest release of this application and download the `ip.jar` file.

  2. Locate the `ip.jar` file in your directory.

  3. Right-click and open up your terminal.

    The terminal will pop-up. Do double-check that you are in the same folder as the downloaded ip.jar file.

    Alternatively, open your command prompt and navigate to the folder containing the ip.jar file.


  4. Type in java -jar ip.jar and hit Enter.
    You should be able to see this if you have followed the steps correctly:
    
       Hello! I'm Alexis, your trusty helper!
             __      ___       _______  ___  ___   __      ________
            /""\    |"  |     /"     "||"  \/"  | |" \    /"       ) 
           /    \   ||  |    (: ______) \   \  /  ||  |  (:   \___/ 
          /' /\  \  |:  |     \/    |    \\  \/   |:  |   \___  \
         //  __'  \ \\  |___  // ___)_   /\.  \   |.  |    __/  \\ 
        /   /  \\  \( \_|:  \(:      "| /  \   \  /\  |\  /" \   :) 
       (___/    \___)\_______)\_______)|___/\\__|(__\_|_)(_______/
       

  5. Enjoy!! :D

Features

:information_source: Notes about the command format:

1. Create a New Task

Create a new task that is a deadline, an event, or a to-do, and add it to Alexis’s list for him to keep track of your tasks.


2. Display Your Tasks: list


3. Mark Your Tasks as Completed

Tell Alexis that you have completed a task, and he will update it accordingly in his list of tasks.


4. Delete an Existing Task: delete


5. Search for all Tasks Occurring on a Date: show


6. Search for a Task easily: find


7. Exiting the Program: bye


8. Automatic Saving of Task Data to Local Storage


FAQ

Q: How do I transfer my data to another computer?
A: Install the app in the other computer and overwrite the empty data file it creates with the data in the previous ./data/task.txt file


More questions will be added when I gather more feedback upon releasing v1.0 of Alexis.


Command Summary

Action Format, Examples
todo todo TASK
e.g., todo read
deadline deadline TASK /by DATE
e.g., deadline return book /by 28/02/2022
event event TASK /at DATE
e.g., event career fair /at 01/03/2022
mark mark TASK_NUMBER
e.g., mark 2
unmark unmark TASK_NUMBER
e.g., unmark 5
list list
delete delate TASK_NUMBER
e.g., delete 1
show show DATE
e.g., show 08/05/2022
find find KEYWORD
e.g., find book
bye bye

Go back to top