[WIP] GitHub User Status CLI
A CLI for setting your GitHub user status

Usage
You'll need to set a GitHub personal access token, with the user scope if you want to change your own status.
Get your own status
$ npx github-user-status
Get the status of a user
$ npx github-user-status -u <user>
Change your status
$ npx github-user-status -m <message> -e [emoji]
Programmatic Usage
const { getUserStatus, changeUserStatus } = require('github-user-status')
getUserStatus(token)
getUserStatus(token, 'JasonEtco')
changeUserStatus(
{
message,
emoji,
expiresAt,
limitedAvailability,
},
token
)