Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

CLI Reference

Zeph uses clap for argument parsing. Run zeph --help for the full synopsis.

Usage

zeph [OPTIONS] [COMMAND]

Subcommands

CommandDescription
initInteractive configuration wizard (see Configuration Wizard)
skillManage external skills — install, remove, verify, trust (see Skill Trust Levels)
vaultManage the age-encrypted secrets vault (see Secrets Management)

When no subcommand is given, Zeph starts the agent loop.

zeph init

Generate a config.toml through a guided wizard.

zeph init                          # write to ./config.toml (default)
zeph init --output ~/.zeph/config.toml  # specify output path

Options:

FlagShortDescription
--output <PATH>-oOutput path for the generated config file

zeph skill

Manage external skills. Installed skills are stored in ~/.config/zeph/skills/.

SubcommandDescription
skill install <url|path>Install a skill from a git URL or local directory path
skill remove <name>Remove an installed skill by name
skill listList installed skills with trust level and source metadata
skill verify [name]Verify BLAKE3 integrity of one or all installed skills
skill trust <name> [level]Show or set trust level (trusted, verified, quarantined, blocked)
skill block <name>Block a skill (deny all tool access)
skill unblock <name>Unblock a skill (revert to quarantined)
# Install from git
zeph skill install https://github.com/user/zeph-skill-example.git

# Install from local path
zeph skill install /path/to/my-skill

# List installed skills
zeph skill list

# Verify integrity and promote trust
zeph skill verify my-skill
zeph skill trust my-skill trusted

# Remove a skill
zeph skill remove my-skill

zeph vault

Manage age-encrypted secrets without manual age CLI invocations.

SubcommandDescription
vault initGenerate an age keypair and empty encrypted vault
vault set <KEY> <VALUE>Encrypt and store a secret
vault get <KEY>Decrypt and print a secret value
vault listList stored secret keys (values are not printed)
vault rm <KEY>Remove a secret from the vault

Default paths (created by vault init):

  • Key file: ~/.config/zeph/vault-key.txt
  • Vault file: ~/.config/zeph/secrets.age

Override with --vault-key and --vault-path global flags.

zeph vault init
zeph vault set ZEPH_CLAUDE_API_KEY sk-ant-...
zeph vault set ZEPH_TELEGRAM_TOKEN 123:ABC
zeph vault list
zeph vault get ZEPH_CLAUDE_API_KEY
zeph vault rm ZEPH_TELEGRAM_TOKEN

Global Options

FlagDescription
--tuiRun with the TUI dashboard (requires the tui feature)
--daemonRun as headless background agent with A2A endpoint (requires daemon + a2a features). See Daemon Mode
--connect <URL>Connect TUI to a remote daemon via A2A SSE streaming (requires tui + a2a features). See Daemon Mode
--config <PATH>Path to a TOML config file (overrides ZEPH_CONFIG env var)
--vault <BACKEND>Secrets backend: env or age (overrides ZEPH_VAULT_BACKEND env var)
--vault-key <PATH>Path to age identity (private key) file (default: ~/.config/zeph/vault-key.txt, overrides ZEPH_VAULT_KEY env var)
--vault-path <PATH>Path to age-encrypted secrets file (default: ~/.config/zeph/secrets.age, overrides ZEPH_VAULT_PATH env var)
--versionPrint version and exit
--helpPrint help and exit

Examples

# Start the agent with defaults
zeph

# Start with a custom config
zeph --config ~/.zeph/config.toml

# Start with TUI dashboard
zeph --tui

# Start with age-encrypted secrets (default paths)
zeph --vault age

# Start with age-encrypted secrets (custom paths)
zeph --vault age --vault-key key.txt --vault-path secrets.age

# Initialize vault and store a secret
zeph vault init
zeph vault set ZEPH_CLAUDE_API_KEY sk-ant-...

# Generate a new config interactively
zeph init

# Start as headless daemon with A2A endpoint
zeph --daemon

# Connect TUI to a running daemon
zeph --connect http://localhost:3000