A simple CLI for humaans.io, put together to provide easier access to time tracking features and reporting right from the command line.
Not affiliated with Humaans. Built for internal needs.
Humaans is missing a few crucial features:
- No desktop app, lackluster Slack app
- No easy access to total time clocked today
- No sum of hours clocked in a period
$ npm install -g humaans-cli
$ humaans COMMAND
running command...
$ humaans (--version)
humaans-cli/0.1.5 darwin-arm64 node-v20.10.0
$ humaans --help [COMMAND]
USAGE
$ humaans COMMAND
...
$ yarn install
$ yarn prepack
$ ./bin/dev.js help
Run yarn prepack
every time you make changes.
humaans clock in [TIME]
humaans clock out [TIME]
humaans help [COMMANDS]
humaans login
humaans report [START] [END]
Clock in
USAGE
$ humaans clock in [TIME]
ARGUMENTS
TIME Time at which to clock in
DESCRIPTION
Clock in
EXAMPLES
Clock in now:
$ humaans clock in
Clock in at the given hour:
$ humaans clock in 9:00
See code: src/commands/clock/in.ts
Clock out
USAGE
$ humaans clock out [TIME]
ARGUMENTS
TIME Time at which to clock out
DESCRIPTION
Clock out
EXAMPLES
Clock out now:
$ humaans clock out
Clock out at the given hour:
$ humaans clock out 17:00
See code: src/commands/clock/out.ts
Display help for humaans.
USAGE
$ humaans help [COMMANDS] [-n]
ARGUMENTS
COMMANDS Command to show help for.
FLAGS
-n, --nested-commands Include all nested commands in the output.
DESCRIPTION
Display help for humaans.
See code: @oclif/plugin-help
Login to Humaans.
USAGE
$ humaans login
DESCRIPTION
Login to Humaans.
EXAMPLES
$ humaans login
See code: src/commands/login.ts
Generate an hour report.
USAGE
$ humaans report [START] [END]
ARGUMENTS
START Start date
END End date
DESCRIPTION
Generate an hour report.
EXAMPLES
Calculate report from the first day to the last day of the current month:
$ humaans report
Calculate report for today:
$ humaans report today
Calculate report from the given day to the last day of the current month:
$ humaans report 2023-03-01
Calculate report for the given period:
$ humaans report 2023-03-10 2023-04-10
See code: src/commands/report.ts