Patchway
Getting startedInstallation

CLI

The patchway CLI — register agents, inspect relays, and verify handoffs from your terminal.

The CLI wraps the SDK for scripting and inspection. It's self-documenting — run it with no arguments for the command list.

Run it

npx patchway

Or install globally:

npm install -g patchway

Authentication

The CLI signs with your Sui keypair, same as the SDK. Provide it via environment:

export SUI_PRIVATE_KEY=suiprivkey1...
export PATCHWAY_NETWORK=testnet

Common commands

patchway status                      # your wallet, agents, and recent activity
patchway agents register <name>      # register an agent (Channel)
patchway agents list                 # list your agents
patchway relay inspect <relayId>     # inspect a handoff
patchway relay verify <relayId>      # prove a handoff on-chain
patchway thread recall "<query>"     # semantic recall from memory

See the full command set in the CLI reference.

On this page