HiredFiredPro is a desktop app to help hiring managers like you streamline your hiring process by simplifying interview management. It 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, HiredFiredPro can get your interview management tasks done faster than traditional GUI apps.
help
add
list
edit
hire
reject
view
find
delete
sort
clear
exit
This section introduces the HiredFiredPro layout, command format and commonly used parameters to help you understand the document.
The image below shows the different components of HiredFiredPro.
Notes about the command format:
Words in UPPER_CASE
are the parameters to be supplied by you.
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/Remote
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/Contract
, t/Contract t/Remote
etc.
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.
Notes about the parameters:
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.
Extra 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
.
Parameter | Notes |
---|---|
NAME | should be alphanumeric and should not be blank |
JOB | should be alphanumeric and should not be blank |
PHONE_NUMBER | should only contain digits 0-9 , and it should be at least 3 digits long |
EMAIL | should be a valid email of the format local-part@domain |
SKILL | should be alphanumeric |
INTERVIEW_SCORE | should be a number ranging from 0.0 to 10.0 with a maximum of a single decimal place, e.g. 5.5 , 8 , 10.0 are valid but 5. , 6.55 , 11 , .5 are invalid |
TAG | should be alphanumeric and should not contain any spaces. hired , rejected or pending also should not be manually added as tags |
INDEX | refers to the index number shown in the displayed candidate list and must be a positive integer, i.e. 1, 2, 3, ... |
ORDER | should be either a (ascending) or d (descending) |
Ensure you have Java 17
or above installed in your Computer.
Download the latest .jar
file from here.
Copy the file to the folder you want to use as the home folder for HiredFiredPro.
Open a command terminal, cd
into the folder you put the jar file in, and use the java -jar HiredFiredPro.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 candidates.
add n/John Doe j/Software Developer p/98765432 e/johnd@example.com i/7.5
: Adds a candidate named John Doe
to HiredFiredPro.
delete 3
: Deletes the 3rd candidate shown in the current list.
clear
: Deletes all candidates.
exit
: Exits the HiredFiredPro app.
Refer to the Features below for details of each command.
help
Shows a table summarising the commands in HiredFiredPro and a link to the user guide.
Format: help
add
Adds a candidate to HiredFiredPro.
Format: add n/NAME j/JOB p/PHONE_NUMBER e/EMAIL [s/SKILL]… i/INTERVIEW_SCORE [t/TAG]…
Tip: A candidate can have any number of tags and skills (including 0).
Note: Candidates are considered duplicates if they have the same name and same job.
Caution: Attempting to add variations of hired
, rejected
or pending
as additional tags will still only result in a single status tag defaulting to pending
.
Examples:
add n/John Doe j/Software Engineer p/98765432 e/johnd@example.com i/5.0 t/Remote
add n/Betsy Crowe j/Software Tester t/Hybrid e/betsycrowe@example.com p/1234567 i/7 s/Python s/Java
list
Shows a list of all candidates in HiredFiredPro.
Format: list
edit
Edits an existing candidate in HiredFiredPro.
Format: edit INDEX [n/NAME] [j/JOB] [p/PHONE] [e/EMAIL] [s/SKILL]… [i/INTERVIEW_SCORE] [t/TAG]…
INDEX
. The index refers to the index number shown in the displayed candidate list. The index must be a positive integer 1, 2, 3, …Note: Details of the candidate who has been edited will be displayed in the display panel.
Tip: You can remove all the candidate’s tags by typing t/
without specifying any tags after it. This does not change the candidate's status.
Tip: You can remove all the candidate’s skills by typing s/
without specifying any skills after it.
Caution: Attempting to edit the tags to include variations of hired
, rejected
or pending
as additional tags will be ignored while maintaining the original status tag.
Examples:
edit 1 p/91234567 e/johndoe@example.com
Edits the phone number and email address of the 1st candidate to be 91234567
and johndoe@example.com
respectively.edit 2 n/Betsy Crower t/
Edits the name of the 2nd candidate to be Betsy Crower
and clears all existing tags.
hire
Changes an existing candidate's status to "hired" in HiredFiredPro.
Format: hire n/NAME j/JOB
hired
.hired
status.Tip: NAME
and JOB
are case-insensitive, i.e. Both hire n/Alex Yeoh j/Software Engineer
and hire n/alex yeoh j/SOFTWARE engineer
will mark the candidate as hired.
reject
Changes an existing candidate's status to "rejected" in HiredFiredPro.
Format: reject n/NAME j/JOB
rejected
.rejected
status.Tip: NAME
and JOB
are case-insensitive, i.e. Both reject n/Alex Yeoh j/Software Engineer
and reject n/alex yeoh j/SOFTWARE engineer
will mark the candidate as rejected.
view
Shows a candidate's status and details in HiredFiredPro.
Format: view n/NAME j/JOB
Tip: NAME
and JOB
are case-insensitive, i.e. Both view n/Alex Yeoh j/Software Engineer
and view n/alex yeoh j/SOFTWARE engineer
will show the candidate's status and details.
Examples:
view n/Alex Yeoh j/Software Engineer
displays the details of candidate Alex Yeoh in the display panel, as shown below:find
Finds candidates whose names contain any of the given keywords.
Format: find KEYWORD [MORE_KEYWORDS]
bernice
will match Bernice
.Yu Bernice
will match Bernice Yu
.Bern
will not match Bernice
.OR
search).
e.g. Bernice Yeoh
will return Alex Yeoh
, Bernice Yu
.Examples:
delete
Deletes the specified candidate from HiredFiredPro.
Format: delete INDEX
Caution: This action is irreversible! Only enter this command if you are sure that the candidate is not needed.
INDEX
.Examples:
list
followed by delete 2
deletes the 2nd candidate in HiredFiredPro.find bernice
followed by delete 1
deletes the 1st candidate in the results of the find
command.
sort
Sorts the list of candidates in ascending or descending order based on their interview scores.
Format: sort ORDER
ORDER
can be either a
(ascending) or d
(descending).Note: Sorting the list will override the original ordering of the candidate list.
Examples:
find alex bernice david
followed by sort d
sorts the resulting candidate list of the find
command in descending order based on their interview scores.list
followed by sort a
sorts the entire list of candidates in ascending order based on their interview scores, as shown below:clear
Clears all candidates from HiredFiredPro.
Format: clear
Caution: This action is irreversible! Only enter this command if you are sure that all existing candidates are not needed.
exit
Exits the program.
Format: exit
Q: How do I save the data?
A: HiredFiredPro data are saved in the hard disk automatically after any command that changes the data. There is no need to save manually.
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 HiredFiredPro home folder.
Q: Can I edit the data file directly?
A: HiredFiredPro data are saved automatically as a JSON file [JAR file location]/data/hiredfiredpro.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, HiredFiredPro will discard all data and start with an empty data file at the next run. Hence, it is recommended to make a backup of the file before editing it.
Furthermore, certain edits can cause HiredFiredPro 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.
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. view
command is used, the full length of all parameters of that particular candidate are displayed in the view panel on the right side of the GUI. Action | Format, Examples |
---|---|
List | list |
Add | add n/NAME j/JOB p/PHONE_NUMBER e/EMAIL [s/SKILL]… i/INTERVIEW_SCORE [t/TAG]… e.g., add n/James Ho j/Site Reliability Engineer p/22224444 e/jamesho@example.com s/python s/java i/8.5 t/Remote |
Edit | edit INDEX [n/NAME] [j/JOB] [p/PHONE] [e/EMAIL] [s/SKILL]… [i/INTERVIEW_SCORE] [t/TAG]… e.g., edit 2 n/James Lee e/jameslee@example.com |
Delete | delete INDEX e.g., delete 3 |
Hire | hire n/NAME j/JOB e.g., hire n/James Jake j/Software Engineer |
Reject | reject n/NAME j/JOB e.g., reject n/James Jake j/Software Engineer |
View | view n/NAME j/JOB e.g., view n/James Jake j/Software Engineer |
Find | find KEYWORD [MORE_KEYWORDS] e.g., find James Jake |
Sort | sort ORDER e.g., sort a |
Help | help |
Clear | clear |
Exit | exit |