Skip to content

Search is only available in production builds. Try building and previewing the site to test it out locally.

Overview

The Vibium CLI commands you’ll reach for in day-to-day use, grouped by purpose. Each entry has its own page with syntax, flags, and examples.

Scope. This reference covers the commands needed to drive the quickstart, the tutorial, and the typical agent loop. The vibium binary exposes additional lower-level commands (run vibium --help to list them) — they’re useful escape hatches but are not part of the documented surface yet.

  • vibium map — list interactive elements as @eN references.
  • vibium diff map — show how the page has changed since the last map.
  • vibium find — locate elements semantically by text, label, placeholder, or ARIA role.
  • vibium wait — block until an element, URL, or text appears.
  • Arguments shown as <x> are required; [x] are optional.
  • @eN always refers to a numeric element reference returned by map or find.
  • All commands share a single browser/daemon, so state persists across calls.
  • Output is plain text on stdout unless a -o flag specifies a file.

Every command on every page below also works through npx — no global install required:

Terminal window
npx -y vibium go https://example.com
npx -y vibium map
npx -y vibium screenshot -o page.png

For a session-wide alias:

Terminal window
alias vibium='npx -y vibium'