https://github.com/remoteoss/remote-cli
Interact with the Remote.com API to manage your company and employees directly from your terminal
https://github.com/remoteoss/remote-cli
Last synced: 15 days ago
JSON representation
Interact with the Remote.com API to manage your company and employees directly from your terminal
- Host: GitHub
- URL: https://github.com/remoteoss/remote-cli
- Owner: remoteoss
- License: mit
- Created: 2026-05-11T20:10:36.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2026-05-15T20:08:28.000Z (about 2 months ago)
- Last Synced: 2026-05-15T23:08:21.558Z (about 2 months ago)
- Language: Shell
- Size: 15.6 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# remote-cli
Public binaries and Claude Code plugin marketplace for the Remote.com partner API CLI.
This repository is generated by an automated release pipeline. Do not open pull requests here — source lives elsewhere.
## Install
One-line install (latest release, `/usr/local/bin/remotecli`):
```sh
curl -fsSL https://raw.githubusercontent.com/remoteoss/remote-cli/main/install.sh | sh
```
Override the install location or pin a version:
```sh
INSTALL_DIR="$HOME/bin" VERSION=v1.2.0 \
sh -c "$(curl -fsSL https://raw.githubusercontent.com/remoteoss/remote-cli/main/install.sh)"
```
## Manual download
Grab a binary from the [latest release](https://github.com/remoteoss/remote-cli/releases/latest):
| Platform | Asset |
|---|---|
| macOS (Apple Silicon) | `remotecli-darwin-arm64` |
| Linux (x86_64) | `remotecli-linux-amd64` |
```sh
curl -fsSL -o remotecli \
https://github.com/remoteoss/remote-cli/releases/latest/download/remotecli-darwin-arm64
chmod +x remotecli
mv remotecli /usr/local/bin/
remotecli --version
```
Verify against `SHA256SUMS` from the same release if you care:
```sh
shasum -a 256 remotecli # compare against the published SHA256SUMS
```
## Claude Code skill
This repository is also a Claude Code plugin marketplace:
```
/plugin marketplace add remoteoss/remote-cli
/plugin install remote-cli@remote-cli
/reload-plugins
```
After installing, two Claude Code skills become available:
- `remote-cli` — drives the `remotecli` binary to perform HR actions (hire someone, list time off, approve expenses, …).
- `remote-api-builder` — guides building your own client (Python, TypeScript, etc.) against the Remote.com partner API, using `remotecli` as a self-documenting executable spec.
## Version
Current release: **v0.1.0**
See the [Releases page](https://github.com/remoteoss/remote-cli/releases) for history.