provable.infoComing Soon
โ†Back to Home

CLI

Cryptographic proof tools for the agent economy โ€” single binary, no runtime dependencies

๐Ÿ”ง

Provable CLI

Single binary โ€” seal, verify, and manage from your terminal

Install

One command. Single binary. No runtime dependencies.

Install provable CLI
# Requires Go 1.21+ with CGo (for SQLite)
# Build from source:
git clone https://github.com/noscere-labs/provable-cli
cd provable-cli
GOPRIVATE=github.com/noscere-labs/bsv-wallet go install -tags=realwallet ./...

# Verify
provable --version

Agent Files

Seal agent configuration files โ€” interactive checklist or batch mode.

Agent file operations
# Initialise workspace (creates .provable/config.json)
provable agent init

# Seal agent config files โ€” interactive checklist
provable agent files seal
provable agent files seal --scope=user
provable agent files seal --scope=openclaw
provable agent files seal AGENTS.md SOUL.md --scope=openclaw

# Options
--scope=project|user|openclaw   (default: project)
--publish                        Upload file content to provable storage
--anchor                         Auto-anchor to blockchain after sealing
--no-interactive                 Skip checklist, seal all found files

Agent Skills

Seal skill directories with versioned proofs.

Skill operations
# Seal skill files
provable agent skills seal ./my-skill --scope=project

# Verify, inspect status, view diff, see history
provable agent skills verify
provable agent skills status
provable agent skills diff
provable agent skills history

Anchor

Anchor pending seals to the BSV blockchain in a single transaction.

Anchor to blockchain
# Anchor latest pending seals to BSV blockchain
provable anchor
# โ†’ โœ… Anchor successful!
#    TX ID: e264318c...
#    Registered on provable.info

Monitor

Background daemon that watches for file changes and auto-seals.

Monitor daemon
# Install as system daemon (launchd / systemd)
provable monitor install
provable monitor start
provable monitor status
provable monitor stop
provable monitor uninstall

Wallet

Built-in BSV wallet for paying seal and anchor fees.

Wallet commands
provable wallet balance
provable wallet address
provable wallet utxos
provable wallet sweep
provable wallet history

All Commands

provable agent init [path]Initialise OpenClaw config for a workspace
provable agent files seal [files...]Seal agent config files
provable agent files verify|status|diff|historyFile seal operations
provable agent skills seal [dirs...]Seal skill files
provable agent skills verify|status|diff|historySkill seal operations
provable anchorAnchor seals to blockchain
provable monitor install|start|stop|status|uninstallFile monitor daemon
provable wallet balance|address|utxos|sweep|historyBSV wallet
provable admin register|approve|protectAdmin operations

Flags

Use -t / --testnet when available. Config lives at ~/.provable/.

CLI | provable.info