CareSync is a desktop application designed for Social Workers in Singapore to manage client and support organization contact details, as well as track home visit schedules efficiently.
CareSync is 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, CareSync can get your contact management tasks done faster than traditional GUI applications.
helpaddarchivelistlist-archiveeditfindnotetagdeleteunarchiveclearexit17 or above installed on your computer. Installation guides can be found here.Important: Follow the guide for your operating system!
java --version. Example output for Java 17:java version "17.0.17" 2025-10-21 LTS
Java(TM) SE Runtime Environment (build 17.0.17+8-LTS-360)
Java HotSpot(TM) 64-Bit Server VM (build 17.0.17+8-LTS-360, mixed mode, sharing)
Download the latest CareSync.jar file from here.
Copy the file to the folder you want to use as the home folder for CareSync.
Open a command terminal and navigate (cd) to the folder you placed CareSync.jar .
In the command terminal, enter java -jar CareSync.jar to run the application.
A GUI similar to the below should appear in a few seconds. There will be some sample data in the application to get you started!

Type a 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 a/John street, block 123, #01-01 nt/Needs financial support v/2026-12-01 14:00 : Adds a contact named John Doe to CareSync with the specified note and visit date and time.
delete 3 : Deletes the 3rd contact shown in the current list.
find t/caseid1 : Lists all contacts with the caseid1 tag.
exit : Exits the app.
For details of each command, refer to the Features section below.
Notes about the command format:
New users do check out the Glossary here first!
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/client 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/client, t/client t/caseid1 etc.
Parameters can be in any order.
e.g. if the command specifies n/NAME p/PHONE, p/PHONE n/NAME is also acceptable.
Extraneous parameters for commands that do not take in parameters (such as help, list-archive, 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.
helpOpens the Help window.
Info: If the Help window is already open, the command will bring it into focus instead of opening a new window.
Format: help
Examples:
helpaddAdds a contact to CareSync.
Format: add n/NAME p/PHONE e/EMAIL a/ADDRESS [nt/NOTE] [v/VISIT_DATE_TIME] [t/TAG]…
n/, p/, e/, and a/ are compulsory and must each appear exactly once.nt/ and v/ are optional and can each appear at most once.VISIT_DATE_TIME is in the past.Tip: A contact can have any number of tags (including 0)
Examples:
add n/Betsy Crowe p/61234567 e/betsycrowe@example.com a/Newgate Road #02-01add n/John Doe p/98765432 e/johnd@example.com a/John street, block 123, #01-01 nt/Needs financial support v/2026-12-01 14:00archiveArchives a contact identified by the index number shown in the current list.
Format: archive INDEX
Examples:
archive 1find n/Alex followed by archive 1 archives the 1st contact in the find results.listShows a list of all unarchived contacts in CareSync.
Optionally, the list can be sorted by a specified field.
Format: list [s/FIELD]
list s/ (empty FIELD) can also be used to list the default order.name - sorts contacts alphabetically by namevisit - sorts contacts by visit date and timeNote:
FIELD is case-insensitive. e.g., NAME, VISIT are also allowedvisit:
Sorting is persistent. Once a sort is applied, it will be sorted by that specified field until a new list command is entered or until CareSync closes.
Examples:
listlist s/namelist s/visitlist-archiveShows a list of all archived contacts in CareSync.
Format: list-archive
Examples:
list-archiveeditEdits an existing contact in CareSync.
Format: edit INDEX [n/NAME] [p/PHONE] [e/EMAIL] [a/ADDRESS] [nt/NOTE] [v/VISIT_DATE_TIME] [t/TAG]…
INDEX.VISIT_DATE_TIME in the past.Tip: Use v/, nt/ or t/ without specifying anything to clear their respective fields!
Examples:
edit 1 p/91234567 e/johndoe@example.com Edits the phone number and email address of the 1st contact to be 91234567 and johndoe@example.com respectively.edit 2 n/Betsy Crower t/ Edits the name of the 2nd contact to be Betsy Crower and clears all existing tags.edit 3 v/ Clears the visit date and time for the 3rd contact.findFinds unarchived contacts whose information matches the provided search criteria.
The find command enforces a Strict Single-Mode policy - only one search mode can be used per command.
Format:
find n/KEYWORD [MORE_KEYWORDS]…find t/TAGfind d/DATEfind d/todayfind sd/START_DATE ed/END_DATETip: d/, sd/ and ed/ can all use the today keyword to specify today's date!
Name search rules:
hans will match Hansfind n/Ale Ber will match Alex and BerniceTag search rules:
FAMILY will match familyDate search rules:
sd/ (start date) and ed/ (end date) prefixes are required.
ed/ can be specified first before sd/. i.e, find ed/END_DATE sd/START_DATE is also valid.ed/ (end date) must be later than or equal to date specified in sd/ (start date).Examples:
find n/John returns john and John Doefind t/caseid1 returns all contacts with the caseid1 tag (case-insensitive).find d/today returns all contacts with visits scheduled for today.find sd/2026-01-01 ed/2026-04-30 returns all contacts with visits between 1 January 2026 and 30 April 2026 (inclusive).noteAdds, replaces, or clears a note for the specified contact.
Format: note INDEX nt/NOTE
INDEX.Tip: To clear a note, provide an empty nt/ prefix (e.g., nt/ with no text after it)
Examples:
note 1 nt/Requires wheelchair assistance adds or replaces the note for the 1st contact in the list.note 1 nt/ clears the note for the 1st contact in the list.tagAdds or removes specific tags for the specified contact. Unlike edit, this command modifies tags incrementally without clearing existing tags.
Format: tag INDEX [at/TAG_TO_ADD]… [dt/TAG_TO_DELETE]…
INDEX.at/ prefix to add one or more tags.dt/ prefix to delete one or more tags.at/ and dt/ can be used together in a single command to add and delete tags simultaneously.Error Handling:
Examples:
tag 1 at/caseid2 adds the tag caseid2 to the 1st contact.tag 1 dt/client removes the tag client from the 1st contact.tag 1 at/client at/caseid2 adds the tags client caseid2 to the 1st contact.tag 1 dt/client dt/caseid2 removes the tags client caseid2 from the 1st contact.tag 1 at/client dt/caseid1 adds client and removes caseid1 from the 1st contact.deleteDeletes one or more contacts from CareSync.
Warning: This is IRREVERSIBLE!
Format: delete INDEX [MORE INDEXES or RANGES]…
START_INDEX-END_INDEX, using -.
END_INDEX must be greater than or equal to START_INDEX (e.g. delete 3-1 is invalid).delete 5 2 4 is valid).) will be automatically ignored.Error Handling:
Examples:
list followed by delete 2 deletes the 2nd contact in CareSync.find n/Betsy followed by delete 1 deletes the 1st contact in the results of the find command.Tip: Use multiple index and/or ranges for bulk deletion
delete 1 3 5 deletes the 1st, 3rd, 5th contact in CareSync.delete 2-4 deletes the 2nd, 3rd, 4th contact in CareSync.delete 1 3-5 8 deletes 1st, 3rd, 4th, 5th, 8th contact in CareSync.unarchiveUnarchives a contact identified by the index number shown in the current list.
Tip: Run list-archive first, then unarchive INDEX.
Format: unarchive INDEX
Tip: To return to the original list, run list.
Examples:
list-archive followed by unarchive 1 unarchives the 1st contact in the archived list.unarchive 2clearClears all entries in CareSync.
Warning: This is IRREVERSIBLE!
Format: clear
exitExits CareSync.
Format: exit
Autocompletes a command or its prefixes with TAB
li suggests listlist suggests list-archiveedit 1 n/Alex suggests edit 1 n/Alex p/find n/Alex will not suggest a second prefix.Examples:
d, CareSync will suggest delete.add, CareSync will suggest n/.Cycle through entered commands with ↑ / ↓ arrow keys in the command box.
↑ cycles back into history and ↓ cycles forward to the most recent command entered.list followed by list, the command history will only save one instance of list.Invalid commands entered will still be saved in history.
CareSync data is saved in the hard disk automatically after any command that changes the data. There is no need to save manually.
Running CareSync for the first time without any existing data folder will generate a JSON file.
CareSync data is 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 make its format invalid, CareSync 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 CareSync 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 CareSync home folder.
preferences.json file created by the application before running the application again.| Action | Format | Examples |
|---|---|---|
| Help | help | help |
| Add | add n/NAME p/PHONE e/EMAIL a/ADDRESS [nt/NOTE] [v/VISIT_DATE_TIME] [t/TAG]… | add n/John Doe p/98765432 e/johnd@example.com a/John street, block 123, #01-01 nt/Needs financial support v/2026-12-01 14:00 |
| Archive | archive INDEX | archive 1 |
| List | list [s/FIELD] | listlist s/namelist s/visit |
| List Archive | list-archive | list-archive |
| Edit | edit INDEX [n/NAME] [p/PHONE] [e/EMAIL] [a/ADDRESS] [nt/NOTE] [v/VISIT_DATE_TIME] [t/TAG]… | edit 1 p/91234567 e/johndoe@example.comedit 2 nt/ t/ (clears note and tag)edit 3 v/ (clears visit date and time) |
| Find | find n/KEYWORD [MORE_KEYWORDS]…find t/TAGfind d/DATEfind sd/START_DATE ed/END_DATE | find n/James Jakefind t/caseid1find d/todayfind sd/2026-01-01 ed/2026-04-30 |
| Note | note INDEX nt/NOTE | note 1 nt/Requires wheelchair assistancenote 2 nt/ (clears note) |
| Tag | tag INDEX [at/TAG_TO_ADD]… [dt/TAG_TO_DELETE]… | tag 1 at/client dt/caseid1 |
| Delete | delete INDEX [MORE INDEXES or RANGES]… | delete 1 3 6-9 |
| Unarchive | unarchive INDEX | unarchive 1 |
| Clear | clear | clear |
| Exit | exit | exit |
Alphanumeric characters include all lower and upper case letters and numbers only!
Additional Info:
) at the start and end will be removed)edit and note will attempt to clear the respective field. For edit, this only applies to a contact's optional fields nt/, v/, and t/)NAME (case-insensitive. i.e., Adam and adam cannot exist at the same time)+) and certain special characters (+-)local@domain pattern) and certain special characters (,.#'()-)) character) and certain special characters (,.)yyyy-MM-dd HH:mm format01 to 12 (inclusive) is treated as invalid01 to 31 (inclusive) is treated as invalid00 to 23 (inclusive) is treated as invalid00 to 59 (inclusive) is treated as invalid24:00 is treated as 00:00 of the next day31, inputting an invalid date smaller than 31 (inclusive) will be rounded to the highest valid dateyyyy-MM-dd format or use the today keyword to specify today's date31, inputting an invalid date smaller than 31 (inclusive) will be rounded to the highest valid dateCASEID1 is the same as caseid1)