Are you a manager of small teams looking to record tasks remotely? Look no further, presenting to you... TEAMSCAPE
TeamScape is a desktop app for managing contacts and the tasks under it, optimized for use via a Command Line Interface (CLI) while still having the benefits of a Graphical User Interface (GUI). If you can type fast and confident to remember command format, TeamScape can get your contact/task management tasks done faster than traditional GUI apps. Adopted from AB3.
Target user profile:
Value proposition:
Ensure you have Java 17 or above installed in your Computer.
Mac users: Ensure you have the precise JDK version prescribed here.
Download the latest .jar file from here.
Copy the file to the folder you want to use as the home folder for your TeamScape.
Open a command terminal, cd into the folder you put the jar file in, and use the java -jar TeamScape.jar command to run the application.
A GUI similar to the below should appear in a few seconds. Note how the app contains some sample data.

Type the command in the command box and press Enter to execute it. e.g. typing help and pressing Enter will open the help window.
Some example commands you can try:
list : Lists all contacts.
add n/John Doe p/98765432 e/johnd@example.com tele/@john pos/student a/John street, block 123, #01-01 : Adds a contact named John Doe to the Address Book.
delete 3 : Deletes the 3rd contact shown in the current list.
clear : Deletes all contacts.
exit : Exits the app.
Refer to the Features below for details of each command.
Notes about the command format:
All commands word input are case-insensitive
Words in UPPER_CASE are the parameters to be supplied by the user.
e.g. in add n/NAME, NAME is a parameter which can be used as add n/John Doe.
Items in square brackets are optional.
e.g n/NAME [t/TAG] can be used as n/John Doe t/friend or as n/John Doe.
Items with … after them can be used multiple times including zero times.
e.g. [t/TAG]… can be used as (i.e. 0 times), t/friend, t/friend t/family etc.
Parameters can be in any order, unless specified by the particular command.
e.g. if the command specifies n/NAME p/PHONE_NUMBER, p/PHONE_NUMBER n/NAME is also acceptable.
Extraneous parameters for commands that do not take in parameters (such as help, list, exit and clear) will be ignored.
e.g. if the command specifies help 123, it will be interpreted as help.
If you are using a PDF version of this document, be careful when copying and pasting commands that span multiple lines as space characters surrounding line-breaks may be omitted when copied over to the application.
Task Status can only take on one of the following: yet to start, in progress, completed.
For months with varying numbers of days, if the use enter a date that exceeds the last day of the month (but <= 31), the system will automatically adjust the date to the last valid day of the month. This adjusted date will be displayed in the success message on the GUI. However, if the user enters a day that exceeds the valid range (e.g., a day beyond 31), the date will be considered invalid.
helpShows a message explaining how to access the help page.
Format: help
addAdds a member to the address book.
Format: add n/NAME p/PHONE_NUMBER e/EMAIL tele/TELEGRAM pos/POSITION a/ADDRESS [t/TAG]… [skill/SKILL]… [o/OTHER]… [task/TASK]…
Note:
Examples:
add n/John Doe p/98765432 e/johnd@example.com tele/@john pos/student a/John street, block 123, #01-01 task/barbeque, 2025-05-28 14:00, yet to startadd n/Betsy Crowe t/friend e/betsycrowe@example.com tele/@besty pos/teacher a/Newgate Prison p/92345678 t/criminal task/barbeque, 2025-05-28 14:00, yet to start 
taskAdds a task to the specified member.
Format: task MEMBER_INDEX task/TASK_DESCRIPTION[, DUE_DATE][, TASK_STATUS]
Note:
[ ] signifies optional field.yet to start, in progress, completed.yet to start., in the correct order: description, due date (if any),
and then status (if any).task/ inputs are allowed in the description, but only the first one is treated as the command prefix to add a new task. In other words, everything after the first task/ is considered part of the description.completed) or due date format (e.g. 2025-07-12 12:30)
, it will be interpreted strictly as such. Ensure the correct order of parameters to avoid misinterpretation.Limitations:
Related:
Examples:
listShows a list of all members in the address book.
editEdits an existing member in the address book.
Format: edit INDEX [n/NAME] [p/PHONE_NUMBER] [e/EMAIL] [tele/TELEGRAM] [pos/POSITION] [a/ADDRESS] [t/TAG]… [skill/SKILL]… [o/OTHER]… [task/TASK]…
INDEX. The index refers to the index number shown in the displayed member list. The index must be a positive integer 1, 2, 3, …t/ without
specifying any tags after it. Same for skills, others and tasks.Examples:
edit 1 p/91234567 e/johndoe@example.com Edits the phone number and email address of the 1st member to be 91234567 and johndoe@example.com respectively.edit 2 n/Betsy Crower t/ Edits the name of the 2nd member to be Betsy Crower and clears all existing tags.

setduedateSet a due date for a specific task of a member.
Format: setduedate MEMBER_INDEX taskint/TASK_INDEX due/yyyy-mm-dd hh:mm
TASK_INDEX of the member at the specified MEMBER_INDEX.TASK_INDEX refers to the index number shown in the task list of a member.yyyy-mm-dd hh:mm.Examples:
listtasksLists the tasks of the specified member from the address book.
Format: listtasks INDEX
INDEX.Examples:
listtasks 2 list the tasks the 2nd person in TeamScape/displayed person list.Possible Combinations of Commands
find n/ Betsy then enter, followed by listtasks 1 lists the tasks of 1st person in the results of the find command.Example results listtasks 2:
Example results of combination of find n/ Betsy and listtasks 1:
deltaskDelete a specific task of a member.
Format: deltask MEMBER_INDEX TASK_INDEX
TASK_INDEX of the member at the specified MEMBER_INDEX.TASK_INDEX refers to the index number shown in the task list of a member.Examples:
updatetaskUpdate a specific task of a member.
You may update the description, due date, and/or status.
Format: updatetask MEMBER_INDEX TASK_INDEX [TASK_DESCRIPTION][, DUE_DATE][, TASK_STATUS]
Note:
[ ] signifies optional field.,).yet to start, in progress, completed.yyyy-MM-dd HH:mmyet to start, in progress, completed (case-insensitive)Limitations:
Examples: (all possible combinations)
updatetask 1 1 Fix backend bug
Updates only the task description.updatetask 1 2 Fix backend bug, 2025-10-31 14:00
Updates the task description and due date.updatetask 1 1 2025-12-12 23:59, completed
Updates the due date and status.updatetask 1 1 completed
Updates only the task status.updatetask 1 2 Fix backend bug, 2025-10-31 14:00, completed
Updates all three fields.

findFinding members by name:
Format: find n/ KEYWORD [MORE_KEYWORDS]
Finds members whose names contain any of the given keywords.
Hans Bo will match Bo HansHan will not match HansOR search).
e.g. Hans Bo will return Hans Gruber, Bo YangExamples:
Finding members by tags:
Format: find t/ KEYWORD [MORE_KEYWORDS]
Finds members whose tags contain any of the given keywords.
Example Usage:
Finding members by tasks:
Format: find task/ KEYWORD [MORE_KEYWORDS]
Finds members whose task description contain any of the given keywords.
Example Usage:
Usage Notes:
Format: find PREFIX/KEYWORD
This finds all members who meet the condition specified by the single prefix and keyword. Only one prefix (n/, t/, or task/) can be used at a time, and the keyword cannot be blank.
Important Notes:
Correct Examples:
find n/John finds all members whose names contain "John".find t/friends finds all members tagged as "friends".find task/barbeque finds all members with task descriptions containing "barbeque".Incorrect Examples:
find n/John t/friends (Error: Multiple prefixes used.)find n/John n/Doe (Error: Repeated prefix.)find n/ (Error: Keyword is blank.)find task/ (Error: Keyword is blank.)find (Error: No prefix or keyword provided.)reportShows a summary of all tasks and their completion statuses.
Format: report
deleteDeletes the specified member from the address book.
Format: delete INDEX
INDEX.Examples:
clearClears all entries from the address book.
Format: clear
exitExits the program.
Format: exit
TeamScape data are saved in the hard disk automatically after any command that changes the data. There is no need to save manually.
TeamScape data are saved automatically as a JSON file [JAR file location]/data/addressbook.json. Advanced users are welcome to update data directly by editing that data file.
Caution:
If your changes to the data file makes its format invalid, TeamScape will discard all data and start with an empty data file at the next run. Hence, it is recommended to take a backup of the file before editing it.
Furthermore, certain edits can cause the TeamScape to behave in unexpected ways (e.g., if a value entered is outside the acceptable range). Therefore, edit the data file only if you are confident that you can update it correctly.
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 file that contains the data of your previous TeamScape home folder.
preferences.json file created by the application before running the application again.help command (or use the Help menu, or the keyboard shortcut F1) again, the original Help Window will remain minimized, and no new Help Window will appear. The remedy is to manually restore the minimized Help Window.| Action | Format, Examples |
|---|---|
| Add | add n/NAME p/PHONE_NUMBER e/EMAIL tele/TELEGRAM pos/POSITION a/ADDRESS [t/TAG]… [s/SKILL]… [o/OTHER]… [task/TASK]…e.g., add n/John Doe p/98765432 e/johnd@example.com tele/@john pos/student a/John street task/barbeque, 2025-05-28 14:00, yet to start |
| Clear | clear |
| Delete | delete INDEXe.g., delete 3 |
| Edit | edit INDEX n/NAME p/PHONE_NUMBER e/EMAIL tele/TELEGRAM pos/POSITION a/ADDRESS [t/TAG]… [s/SKILL]… [o/OTHER]… [task/TASK]…e.g., edit 2 n/Betsy Crower t/ |
| Find (Name) | find n/ KEYWORD [MORE_KEYWORDS]e.g., find n/ alex david |
| Find (Tag) | find t/ KEYWORD [MORE_KEYWORDS]e.g., find t/ colleagues friends |
| Find (Task) | find task/ KEYWORD [MORE_KEYWORDS]e.g., find task/ presentation |
| Add Task | task MEMBER_INDEX task/TASK_DESCRIPTION[, DUE_DATE, TASK_STATUS] e.g., task 3 task/Book venue |
| Delete task | deltask MEMBER_INDEX TASK_INDEXe.g., deltask 3 2 |
| Update Task | updatetask MEMBER_INDEX TASK_INDEX [TASK_DESCRIPTION][, DUE_DATE][, TASK_STATUS]e.g., updatetask 1 1 2025-12-31 23:59, completed |
| List | list |
| List Tasks | listtasks INDEXe.g., listtasks 2 |
| Set Due Date | setduedate MEMBER_INDEX taskint/TASK_INDEX due/yyyy-mm-dd hh:mme.g., setduedate 2 taskint/1 due/2025-10-10 23:59 |
| Report | report |
| Help | help |
| Exit | exit |