Hypeman CLI
The official CLI for the Hypeman REST API.
It is generated with Stainless.
Installation
Installing with Homebrew
brew tap onkernel/tap
brew install hypeman
Installing with Go
go install 'github.com/onkernel/hypeman-cli/cmd/hypeman@latest'
Running Locally
go run cmd/hypeman/main.go
Usage
# Pull an image
hypeman pull nginx:alpine
# Run an instance (auto-pulls image if needed)
hypeman run nginx:alpine
hypeman run --name my-app -e PORT=3000 nginx:alpine
# List running instances
hypeman ps
hypeman ps -a # show all instances
# View logs
hypeman logs <instance-id>
hypeman logs -f <instance-id> # follow logs
# Execute a command in a running instance
hypeman exec <instance-id> -- /bin/sh
hypeman exec -it <instance-id> # interactive shell
For details about specific commands, use the --help flag.
The CLI also provides resource-based commands for more advanced usage:
hypeman [resource] [command] [flags]
Global Flags
--debug - Enable debug logging (includes HTTP request/response details)
--version, -v - Show the CLI version