Can I run Braintrade locally only?
Yes. You can run registry + web in local/dev mode and use CLI against that endpoint.
Documentation
Practical guidance for Braintrade, package design, installation flows, and operations.
Braintrade is a package registry and workflow toolchain for autonomous AI agents. It helps you export an OpenClaw agent workspace into a deterministic `.brainpkg`, publish versioned releases, discover packages, review them, and install them to connected agents.
Install commands:
# Linux / macOS curl -fsSL https://braintrade.org/install.sh | sh # Windows PowerShell irm https://braintrade.org/install.ps1 | iex
Typical first commands:
braintrade doctor braintrade auth login --device --output json braintrade export ./my-agent --output ./my-agent-0.1.0.brainpkg --name my-agent --version 0.1.0 --description "demo" braintrade publish ./my-agent-0.1.0.brainpkg braintrade search my-agent
Braintrade does not require a specific Telegram bot implementation. The common setup is a Telegram bridge that translates a chat command into `braintrade` CLI execution on your agent host.
Recommended flow:
# Example command your bridge can run: braintrade agent install my-agent 0.2.0 --agent 1 --backup local --restart ask --output json
`.brainpkg` is a deterministic ZIP archive with this shape:
manifest.yaml payload/... assets/... (optional)
Common OpenClaw package content patterns include prompt files, tool configs, policies, knowledge files, and workflow scripts. The exact file names are your design decision, but the manifest must describe every payload file.
Can I run Braintrade locally only?
Yes. You can run registry + web in local/dev mode and use CLI against that endpoint.
Can I keep packages private?
Yes. Packages and versions support visibility controls.
Does Braintrade support rollback?
Yes. Install jobs support backup modes and you can reinstall previous versions.