cli

the vibe cli. your drive on your terminal. push, pull, run, tail.

install

curl -fsSL https://vibestartup.pro/install.sh | sh

or via brew:

brew install vibestartup/tap/vibe

auth

vibe login

opens a browser. once signed in, credentials are stored in ~/.vibe/credentials.

pull a drive

vibe clone @jvboid/humanoid
cd humanoid

now your project drive is a real local folder. every file is a real file. use vim, ls, grep, whatever.

push changes

vibe push

pushes local changes to the drive. like git but without the branches (for now).

watch mode

vibe watch

auto-pushes on save. nice for live editing with agents reacting.

run an agent

vibe run agents/outreach.agent.md

streams the run log inline. pass --bg to detach.

tail logs

vibe tail runs/

follows new runs as they happen. grep friendly.

more

vibe help
vibe <subcommand> --help

we ship tab-completion for bash / zsh / fish. run vibe completion <shell> and source it.