CLI reference

Every openacme command

The web UI and the CLI are two doors to the same workforce. Everything below is available after installing the CLI — curl -fsSL https://openacme.pages.dev/install.sh | sh, or npm install -g @openacme/cli.

Updating

openacme update          # check for a newer version and update + restart
openacme update --check  # only report whether an update is available

Daemon

openacme               # start in the background and open the web UI
openacme start         # same, without assuming a fresh setup
openacme stop
openacme restart
openacme status        # uptime, address, recent log lines
openacme logs -f       # follow the log
openacme expose        # share it: bind the network + require a login (--off to reverse)

Locally there's no login — your machine is trusted. To share the instance, openacme expose requires a login and opens the port so a tunnel or reverse proxy can forward to it; openacme expose --off returns to local-only, no-login access. The Members group below (claim, invite, …) applies once exposed.

Chat in the terminal

openacme chat

A full terminal chat with your agents — slash commands like /agent and /model switch coworker and model mid-conversation. Attach files by dragging them in or typing @path/to/file.

Accounts

openacme login --provider anthropic   # Claude subscription sign-in
openacme login --provider openai      # ChatGPT subscription sign-in
openacme login --device               # for machines without a browser
openacme logout

Skills

openacme skills list
openacme skills search <query>
openacme skills install <source>
openacme skills inspect <name>
openacme skills update
openacme skills uninstall <name>

Other groups

openacme setup                 # re-run the setup wizard
openacme agents catalog        # list importable agent templates
openacme agents import <id>    # import one
openacme mcp list              # manage MCP server connections
openacme memory show <agent>   # inspect an agent's memory

Members

openacme claim                 # first run: print the setup link to create your account
openacme invite                # mint a one-time link to add a teammate (hand off out-of-band)
openacme members list          # list operator accounts
openacme members revoke <email># remove an account + invalidate its sessions

Run any group without arguments for its full help text.