trustclaw
Installer for the cmdop CLI — an AI agent on hardware you control, not in someone else's cloud.
pip install trustclaw
trustclaw
That's it. trustclaw detects your platform, downloads the cmdop binary,
verifies it against the published checksums, installs it, and hands over.
Handing an agent your shell and your filesystem is a real decision. It matters a great deal whose machine it is running on when you do.
cmdop runs on yours. This package installs the binary, and every step of getting it there is checkable: the checksums are published, the installer is standard library only, and nothing runs at pip install time.
How does CMDOP compare? CMDOP Skills vs OpenClaw: two approaches to AI agent skills →
What you can verify before you trust it
The installer fetches SHA256SUMS from install.cmdop.com and refuses to install a binary that does not match. It writes to ~/.local/bin, never a system directory, and never asks for sudo.
It sends no telemetry and has no dependencies, so the code you are trusting at install time is this module and the Python standard library — a short read.
What is cmdop
One executable that is the agent, the relay, the local server and the web console at once. There is no gateway, backend, database server or broker to stand up — you add one binary to a machine you already own.
- run an AI agent on your own machine, with your own tools
- reach it from anywhere: terminal, files, remote execution
- connect machines into a fleet
- works with Claude Code and other agent engines under the hood
Full documentation: docs.cmdop.com
Usage
trustclaw # install cmdop (if needed), then run it
trustclaw --install-only # install, don't hand over
trustclaw --prefix ~/bin # choose the install directory
trustclaw --force # reinstall even if already present
trustclaw --quiet # print only the installed path
trustclaw -- --help # everything after `--` goes to cmdop
Default install directory is ~/.local/bin (%LOCALAPPDATA%\cmdop\bin on
Windows). No sudo, no system directories.
What it does, precisely
- Detects your OS and architecture.
- Fetches
SHA256SUMSfrominstall.cmdop.com. - Downloads the matching binary to a temporary file.
- Verifies the SHA-256 against the published checksum. On mismatch it aborts and installs nothing.
- Moves the verified binary into the install directory and marks it executable.
- Runs it.
Supported: macOS (Apple Silicon, Intel), Linux (x64, arm64), Windows (x64).
What it does not do
- No side effects at install time.
pip install trustclawonly unpacks files. Nothing is downloaded or executed until you runtrustclaw. - No network access on import.
import trustclawtouches nothing. - No telemetry. The package sends no analytics, ever.
- No dependencies. Standard library only, so there is nothing to conflict with what you already have installed.
Python API
The installer is importable if you would rather script it:
import trustclaw
target = trustclaw.detect()
print(target.label, target.asset)
result = trustclaw.install()
print(result.path, result.sha256)
trustclaw.install() raises trustclaw.InstallError with a user-facing message
on any failure, and trustclaw.UnsupportedPlatform when there is no published
binary for the current machine.
Links
- Website — https://cmdop.com
- Documentation — https://docs.cmdop.com
- Downloads — https://cmdop.com/download
License
MIT
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file trustclaw-2.0.1.tar.gz.
File metadata
- Download URL: trustclaw-2.0.1.tar.gz
- Upload date:
- Size: 9.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.2.0 CPython/3.12.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fb6881b945e434b246440f91d4cbccc3c481500c5e1f318dd15b4198657e2528
|
|
| MD5 |
a1be6bbbe9a92b0ec3fd0fbbb2e21014
|
|
| BLAKE2b-256 |
c574c0b8fd71b6aef0b9c9133319abfa467ad639668f5f2f19a0b61c6f06d937
|
File details
Details for the file trustclaw-2.0.1-py3-none-any.whl.
File metadata
- Download URL: trustclaw-2.0.1-py3-none-any.whl
- Upload date:
- Size: 10.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.2.0 CPython/3.12.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fdb758c8098258f8a54f18130b11775de21215090a107820725fd25cf4d2300f
|
|
| MD5 |
eaad064e845b8ba06524b26e22fbd467
|
|
| BLAKE2b-256 |
071567a89b4cbed552d3c2e75e7f1e8ac69c55d7ed8efa16033018bcdcc82418
|
Release history Release notifications | RSS feed
2026.3.20 yanked
Reason this release was yanked:
Superseded by 2.0.0 — this release fails on import.
2026.3.12 yanked
Reason this release was yanked:
Superseded by 2.0.0 — this release fails on import.
2026.3.11 yanked
Reason this release was yanked:
Superseded by 2.0.0 — this release fails on import.
2026.3.10 yanked
Reason this release was yanked:
Superseded by 2.0.0 — this release fails on import.
2026.2.28 yanked
Reason this release was yanked:
Superseded by 2.0.0 — this release fails on import.