Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/olliswe/iamworkingonit-cli
👨🏽💻👩🏾💻 🧑🏻💻 Let your colleagues know what your working on - without leaving your terminal!
https://github.com/olliswe/iamworkingonit-cli
Last synced: 3 months ago
JSON representation
👨🏽💻👩🏾💻 🧑🏻💻 Let your colleagues know what your working on - without leaving your terminal!
- Host: GitHub
- URL: https://github.com/olliswe/iamworkingonit-cli
- Owner: olliswe
- Created: 2021-01-21T20:34:00.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-05-06T10:57:16.000Z (over 3 years ago)
- Last Synced: 2024-07-24T04:43:16.413Z (4 months ago)
- Language: TypeScript
- Homepage: https://iamworkingon.it
- Size: 1.24 MB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
iamworkingonit
==============Let you colleagues know what you're working on
[![oclif](https://img.shields.io/badge/cli-oclif-brightgreen.svg)](https://oclif.io)
[![Version](https://img.shields.io/npm/v/iamworkingonit.svg)](https://npmjs.org/package/iamworkingonit)
[![Downloads/week](https://img.shields.io/npm/dw/iamworkingonit.svg)](https://npmjs.org/package/iamworkingonit)
[![License](https://img.shields.io/npm/l/iamworkingonit.svg)](https://github.com/olliswe/iamworkingonit-cli/blob/master/package.json)* [Usage](#usage)
* [Commands](#commands)# Usage
```sh-session
$ npm install -g iamworkingonit
$ workingon COMMAND
running command...
$ workingon (-v|--version|version)
iamworkingonit/0.1.0 darwin-x64 node-v12.20.1
$ workingon --help [COMMAND]
USAGE
$ workingon COMMAND
...
```# Commands
* [`workingon [STATUS]`](#workingon-status)
* [`workingon create`](#workingon-create)
* [`workingon help [COMMAND]`](#workingon-help-command)
* [`workingon invite`](#workingon-invite)
* [`workingon join`](#workingon-join)
* [`workingon list`](#workingon-list)
* [`workingon login`](#workingon-login)
* [`workingon logout`](#workingon-logout)
* [`workingon open`](#workingon-open)
* [`workingon show`](#workingon-show)## `workingon [STATUS]`
Update or clear your status
```
USAGE
$ workingon [STATUS]ARGUMENTS
STATUS Describe your current statusOPTIONS
--clear Clear you statusEXAMPLES
$ workingon "Refactoring Dashboard"
$ workingon --clear
```_See code: [src/commands/index.ts](https://github.com/olliswe/iamworkingonit-cli/blob/v0.1.0/src/commands/index.ts)_
## `workingon create`
Create new team (if you're not part of one)
```
USAGE
$ workingon createEXAMPLE
$ workingon create
```_See code: [src/commands/create.ts](https://github.com/olliswe/iamworkingonit-cli/blob/v0.1.0/src/commands/create.ts)_
## `workingon help [COMMAND]`
display help for workingon
```
USAGE
$ workingon help [COMMAND]ARGUMENTS
COMMAND command to show help forOPTIONS
--all see all commands in CLI
```_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v3.2.1/src/commands/help.ts)_
## `workingon invite`
Invite a user to your team
```
USAGE
$ workingon inviteEXAMPLE
$ workingon invite
```_See code: [src/commands/invite.ts](https://github.com/olliswe/iamworkingonit-cli/blob/v0.1.0/src/commands/invite.ts)_
## `workingon join`
Join a team using an invite token
```
USAGE
$ workingon joinEXAMPLE
$ workingon joinCongratulations! You've joined team "Gryffindor"
Here's what you can do next:
- $ workingon list
- $ workingon "Refactoring dashboard"
```_See code: [src/commands/join.ts](https://github.com/olliswe/iamworkingonit-cli/blob/v0.1.0/src/commands/join.ts)_
## `workingon list`
List the statuses of your team
```
USAGE
$ workingon listEXAMPLE
$ workingon list+------------------+-------------------------+-------------+
| Member | Status | Last update |
+------------------+-------------------------+-------------+
| Harry Potter | "Refactoring Dashboard" | 30min ago |
| Hermione Granger | "Writing tests" | 1hr ago |
| Ron Weasely | none | 3hrs ago |
+------------------+-------------------------+-------------+
```_See code: [src/commands/list.ts](https://github.com/olliswe/iamworkingonit-cli/blob/v0.1.0/src/commands/list.ts)_
## `workingon login`
Login to your account
```
USAGE
$ workingon loginOPTIONS
--signup Sign up as new userEXAMPLES
$ workingon login
$ workingon login --signup
```_See code: [src/commands/login.ts](https://github.com/olliswe/iamworkingonit-cli/blob/v0.1.0/src/commands/login.ts)_
## `workingon logout`
Logout of your account
```
USAGE
$ workingon logoutEXAMPLE
$ workingon logout
```_See code: [src/commands/logout.ts](https://github.com/olliswe/iamworkingonit-cli/blob/v0.1.0/src/commands/logout.ts)_
## `workingon open`
Open the iamworkingon.it dashboard
```
USAGE
$ workingon open
```_See code: [src/commands/open.ts](https://github.com/olliswe/iamworkingonit-cli/blob/v0.1.0/src/commands/open.ts)_
## `workingon show`
Show your status
```
USAGE
$ workingon showEXAMPLE
$ workingon show
"Refactoring tests" 15hrs ago
```_See code: [src/commands/show.ts](https://github.com/olliswe/iamworkingonit-cli/blob/v0.1.0/src/commands/show.ts)_