Service CLI
npx vibex is the Host-family command-line entry. On first run it downloads the Host-family archive for this OS from GitHub Releases, verifies checksums, and starts vibex-server. After a Host is running, the same CLI sends control requests (conversations, workflows, projects, files).
It starts a headless Host and the Web UI in a browser. The desktop GUI ships as a separate installer; see the guide Install the desktop app.
The npm package name is vibex; the current version is 0.1.3. Every example below starts with npx vibex, so it runs without a global vibex install.
Help and version
npx vibex --help / npx vibex help / npx vibex -h: print the top-level usage covering Host start, local Agent install, control commands, and plugin packing. The three forms are equivalent.
npx vibex help serve: print Web UI start usage only. Replace serve with list, install, conversation, workflow, project, workspace, session, file, git, agent, or plugin for that topic. npx vibex conversation --help matches npx vibex help conversation. npx vibex help list and npx vibex help install print the local installer usage.
npx vibex --version / npx vibex -V / npx vibex version: print the CLI version, for example 0.1.3. That version also selects the default Host-family tag v0.1.3.
Starting the Host
npx vibex: start the Host on loopback127.0.0.1:17891. For local scripts and a local browser.npx vibex serve/npx vibex web: start the Host on LAN interfaces, open the Web UI, and print origins plus the Host token.webis identical toserve.npx vibex serve --local: print origins and token and serve the Web UI, bound to loopback only.npx vibex serve --port 18080: listen on18080. The default is17891.npx vibex serve --rotate-token: generate a new Host token, save it, and print it. The previous token fails immediately.npx vibex --mcp: startvibex-mcp(the local MCP server agents call). Remaining arguments go to that binary.
Flags combine, for example npx vibex serve --local --port 18080. Details: Start the Host.
Install Agents locally
These commands open the Host data directory, list or install Runtime and ACP, skip HTTP, and leave VIBEX_TOKEN unused. Details: Install Agents locally.
npx vibex list: list the 13 built-in Agents, plus official ACP Registry entries whose identity is outside the built-in table.npx vibex list --refresh: fetch the official Registry snapshot, then print.npx vibex list --json: print a JSON array.npx vibex install claude_code --yes: install that Agent’s Runtime and ACP into the user environment, skipping the prompt.npx vibex install claude_code -y -g: same as the previous line.-gis accepted and has no extra meaning.
Without a terminal, --yes or -y is required. npx vibex agent list still calls a running Host; see file, git, agent.
Control commands
These require a running Host and VIBEX_TOKEN in the environment. VIBEX_URL defaults to http://127.0.0.1:17891. Flags, return values, and examples live on the dedicated pages.
Conversations, see conversation:
npx vibex conversation create: create a conversation and optionally submit the first message, starting the first turn.npx vibex conversation send: send text to an existing conversation. An idle conversation starts a new turn; an in-flight turn queues the text.npx vibex conversation steer: append guidance to the in-flight turn. It stays on that turn.npx vibex conversation child/npx vibex conversation fork: create a child conversation, usually to delegate to another agent. The two commands are identical.npx vibex conversation show/npx vibex conversation output: read the current output projection and turn status. The two commands are identical.npx vibex conversation relations: list parent-child relations (delegated children).npx vibex conversation wait: poll about once a second until the current turn reaches a terminal status.npx vibex conversation cancel: cancel the in-flight turn. Timeline content and files already written stay.
Workflows, see workflow:
npx vibex workflow validate: validate workflow JSON and report errors. No runnable version is created.npx vibex workflow publish: publish an immutable version after validation.npx vibex workflow run: start a run from a published version, bound to a workspace.npx vibex workflow show: fetch the run, its steps, and its events in one JSON object.npx vibex workflow wait: poll run status until a terminal state.npx vibex workflow history: read the event stream for incremental sync or debugging.npx vibex workflow cancel: stop scheduling new steps and cancel in-flight agent turns.npx vibex workflow resume: submit a decision (retry/accept/skip/cancel) when a run sits on approval, review, or a failed step.
Projects, workspaces, and session cards, see project, workspace, session:
npx vibex project list: list every project on this Host.npx vibex project show: read one project, including its repositories.npx vibex project create: register a project, optionally binding a repository path.npx vibex project delete: delete the project and its conversations and workspace data. Permanent.npx vibex workspace list: list workspaces (project root folders or Git worktrees).npx vibex workspace show: read one workspace path, branch, and parent project.npx vibex session list: list session cards on a workspace.npx vibex session show: read one session card.npx vibex session create: create a session card by workspace or by project.npx vibex session delete: delete a session record.
Files, Git, and agents, see file, git, agent:
npx vibex file tree: list a directory tree on the Host machine.npx vibex file read: read a text file on the Host.npx vibex file write: write a file on the Host. This changes disk directly.npx vibex git status: read Git status for a workspace repository.npx vibex git stage: stage a path inside the workspace.npx vibex git commit: commit staged changes.npx vibex agent list: list added agents’ auth and enabled state on a running Host. Local install usesnpx vibex list/npx vibex install.
Conventions: Control-plane conventions. Token and URL: Connect to a Host.
Other
npx vibex plugin pack: validate a plugin directory and write a deterministic.vxp. See plugin pack.npx vibex review: this entry is outside the Host family and exits with an error.
Next: Install and versions, Start the Host, Connect to a Host.

