HRmanager is a desktop app for managing employee and applicant records, optimized for use via a Line Interface (CLI) while still having the benefits of a Graphical User Interface (GUI). If you can type fast, HRmanager can help you manage HR records faster than traditional GUI apps.
Here is a quick guide to jump straight to the section you need:
helplistaddsearchstateditdeleteclearimport or exportexitEnsure 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 the HRmanager releases page.
Copy the file to the folder you want to use as the home folder for HRmanager.
Open a command terminal, cd into the folder you put the jar file in, and use the java -jar HRmanager.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 employees currently shown in HRmanager.
add n/John Doe p/98765432 e/johnd@example.com r/Software Engineer d/Human Resources : Adds an employee named John Doe to HRmanager.
delete 3 : Deletes the 3rd employee shown in the current list.
clear : Deletes all employees.
exit : Exits the app.
Notes about the command format:
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.
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.
helpShows a message explaining how to access the help page.
Format: help
listShows a list of all employees in HRmanager.
Format: list
addAdds an employee to HRmanager.
Format: add n/NAME p/PHONE_NUMBER e/EMAIL r/ROLE d/DEPARTMENT [t/TAG]…
Tip: An employee can have any number of tags (including 0)
Examples:
add n/John Doe p/98765432 e/johnd@example.com r/Receptionist d/Operations
add n/Betsy Crowe t/friend e/betsycrowe@example.com r/Associate Director d/Finance p/1234567 t/criminal
n/)-) and/or spaces () and cannot be blank. The name should not contain consecutive hyphens or spaces. The name should not start or end with a hyphen or space. No other characters are allowed.John Doe will be invalid if john doe already exists in HRmanager. The name will be stored in Hr manager in lower casing.p/)e/)+, _, ., -, but cannot start or end with special characters. The domain consists of labels separated by periods (.); each label must start and end with alphanumeric characters, may contain hyphens (-), and the final label must be at least 2 characters long. No other characters are allowed.john.doe@example.com will be the same as John.Doe@Example.COM.r/)-) and/or spaces () and cannot be blank. The role should not contain consecutive hyphens or spaces. The role should not start or end with a hyphen or space. No other characters are allowed.Software Engineer will be the same as software engineer and SOFTWARE ENGINEER. The role will be stored in Hr manager in lower casing.d/)-) and/or spaces () and cannot be blank. The department should not contain consecutive hyphens or spaces. The department should not start or end with a hyphen or space. No other characters are allowed.Human Resources will be the same as human resources and HUMAN RESOURCES. The department will be stored in Hr manager in lower casing.t/)-) and/or spaces () and cannot be blank. The tag should not contain consecutive hyphens or spaces. The tag should not start or end with a hyphen or space. No other characters are allowed.friend will be the same as Friend and FRIEND. The tag will be stored in Hr manager in lower casing.searchFinds employees whose names contain any of the given keywords.
Format: search KEYWORD [MORE_KEYWORDS]...
hans will match HansHan will match Hans50 characters long.Examples:
search John returns john and John Doesearch friends returns employees such as Alex Yeoh and Bernice Yu with the tag "friends". 
search zzz shows 0 employees listed! if no employee names match.statDisplays real-time statistics about your employee records in a dedicated panel on the right side of the application.
The statistics panel automatically updates as you add, edit, or delete employees, providing instant visibility into your workforce metrics.
Format:
Statistics displayed:
Tip: The stats panel is always visible and updates in real-time when you add, edit, or delete employees. No command is needed to view statistics!
You can pre-fill the command box with your last successful command using the PgUp (up arrow) key on computer keyboards. This allows users to repeat their last commands without re-typing it in its entirety.
editEdits an existing employee in HRmanager.
Format: edit INDEX [n/NAME] [p/PHONE] [e/EMAIL] [r/ROLE] [d/DEPARTMENT] [t/TAG]…
y to proceed or n to cancel.INDEX. The index refers to the index number shown in the displayed employee list. The index must be a positive integer 1, 2, 3, …t/ without
specifying any tags after it.⚠️ Confirmation Required: This command requires confirmation before execution to prevent accidental edits. See Confirmation Prompts for details on how to respond.
Examples:
edit 1 p/91234567 e/johndoe@example.com edits the phone number and email address of the 1st employee to be 91234567 and johndoe@example.com respectively.edit 2 n/Betsy Crower d/Marketing t/ edits the name and department of the 2nd employee to be Betsy Crower and Marketing, and clears all existing tags.deleteDeletes one or more employees using the index numbers shown in the currently displayed list.
Format: delete INDEX [MORE_INDEXES]
Alias: del
What this feature does:
⚠️ Confirmation Required: This command requires confirmation before execution to prevent accidental deletion. See Confirmation Prompts for details on how to respond.
Additional constraints:
1, 2, 3, ...Examples:
delete 2 deletes the 2nd employee in the currently displayed list.del 4 deletes the 4th employee using the alias.list followed by delete 1 3 5 deletes the 1st, 3rd, and 5th employees in the full list.search Betsy followed by delete 1 deletes the 1st employee in the filtered search results.delete 3 1 3 deletes the employees at indexes 3 and 1; the repeated 3 is ignored.Successful delete command output:
PNG placeholder: Insert a screenshot here, e.g.
images/delete-command-placeholder.png
clearClears all entries from HRmanager.
Format: clear
⚠️ Confirmation Required: This command requires confirmation before execution to prevent accidental data loss. See Confirmation Prompts for details on how to respond.
import or exportExports the current list of employees into a CSV file, saved into user-specified local destination.
Format: export [FILE PATH]
exitExits the program.
Format: exit
⚠️ Confirmation Required: This command requires confirmation before execution. See Confirmation Prompts for details on how to respond.
Since HRmanager stores sensitive employee data (personal information, contact details, role assignments, and department information), certain commands that permanently modify or delete this information require your explicit confirmation before they execute. This safety mechanism helps prevent accidental data loss or unintended changes to employee records.
Commands that require confirmation:
edit - When editing an employee's informationdelete - When deleting one or more employeesclear - When clearing all entriesexit - When closing the applicationHow confirmation works:
y - to proceed with the commandn - to cancel and discard the commandy or n, you will be asked to enter a valid response.Example:
> delete 1
Please confirm this action. Enter 'y' to proceed or 'n' to cancel.
Action: Delete 1 employee(s)
Impact: Permanently removes employee(s) from HRmanager
> y
Employee deleted successfully
Tip: This confirmation step is designed to prevent mistakes. If you accidentally type a command, simply enter n to cancel it without any changes being made to your employee data.
HRmanager data are saved in the hard disk automatically after any command that changes the data. There is no need to save manually.
HRmanager data are saved automatically as a JSON file [JAR file location]/data/HRmanager.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, HRmanager 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 HRmanager 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 on the other computer and overwrite the empty data file it creates with the file that contains the data from your previous HRmanager 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 |
|---|---|
| Help | help |
| List | list |
| Add | add n/NAME p/PHONE_NUMBER e/EMAIL r/ROLE d/DEPARTMENT [t/TAG]… e.g., add n/James Ho p/22224444 e/jamesho@example.com r/Software Engineer d/Engineering t/friend t/colleague |
| Search | search KEYWORD...e.g., search James |
| Stat | stat MODEe.g., stat dept, stat tag |
| Cycle commands | up/down arrow keys |
| Edit | edit INDEX [n/NAME] [p/PHONE_NUMBER] [e/EMAIL] [r/ROLE] [d/DEPARTMENT] [t/TAG]…e.g., edit 2 n/James Lee e/jameslee@example.com d/Finance |
| Delete | delete INDEX [MORE_INDEXES] or del INDEX [MORE_INDEXES]e.g., delete 3, delete 1 4 5 |
| Clear | clear |
| Import | import [FILE PATH]e.g., export C:\Users\John\Desktop\employees.csv |
| Export | export [FILE PATH]e.g., export C:\Users\John\Desktop\employees.csv |
| Exit | exit |