scoutagent
Installer for the cmdop CLI — stand up an AI agent on a machine you already have.
pip install scoutagent
scoutagent
That's it. scoutagent detects your platform, downloads the cmdop binary,
verifies it against the published checksums, installs it, and hands over.
You almost certainly do not need to provision anything to try this. A laptop, an idle VPS, or the box already running something else is enough.
cmdop is one binary with no runtime dependencies, and this package is the shortest way to get it there: pip install, run the command, done.
How does CMDOP compare? CMDOP Skills vs OpenClaw: two approaches to AI agent skills →
From nothing to a running agent in two commands
There is no account to create before the install works, no image to build, and no configuration file to write first. The install is a platform detection, a download, a checksum check, and a handover.
If it turns out not to be what you wanted, removing it is deleting one file from ~/.local/bin.
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
scoutagent # install cmdop (if needed), then run it
scoutagent --install-only # install, don't hand over
scoutagent --prefix ~/bin # choose the install directory
scoutagent --force # reinstall even if already present
scoutagent --quiet # print only the installed path
scoutagent -- --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 scoutagentonly unpacks files. Nothing is downloaded or executed until you runscoutagent. - No network access on import.
import scoutagenttouches 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 scoutagent
target = scoutagent.detect()
print(target.label, target.asset)
result = scoutagent.install()
print(result.path, result.sha256)
scoutagent.install() raises scoutagent.InstallError with a user-facing message
on any failure, and scoutagent.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 scoutagent-2.0.1.tar.gz.
File metadata
- Download URL: scoutagent-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 |
50d8ad0bf2b603d720b3be6f863a251bae16ef386ddd925305a47d0b199c31d9
|
|
| MD5 |
33e64e6fb2882b8ab362a19228bf3bfe
|
|
| BLAKE2b-256 |
421abd0aa2ba2484de2df65fb16a2952bab4e5ca0576db92de80a391fb382b51
|
File details
Details for the file scoutagent-2.0.1-py3-none-any.whl.
File metadata
- Download URL: scoutagent-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 |
9bee8819ce070cba268de58525d3b5b3eecd787d32b296d1bd70eaa4bb4fdf1e
|
|
| MD5 |
b44cb007f4dc3237a0e7d3ce062c7868
|
|
| BLAKE2b-256 |
36e9e026635968482fb09c52fe2bf5a4533cd6f8d937af40f7afc253eb084dff
|
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.