Metadata-Version: 2.4
Name: zeroclaw
Version: 2026.3.11
Summary: ZeroClaw — zero-config remote agent plugin for CMDOP
Project-URL: Homepage, https://cmdop.com
Project-URL: Documentation, https://cmdop.com/docs/sdk/python/
Project-URL: Repository, https://github.com/commandoperator/cmdop-sdk-python
Project-URL: Bug Tracker, https://github.com/commandoperator/cmdop-sdk-python/issues
License: MIT
Keywords: agent,cmdop,instant,remote,zero-config,zeroclaw
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.9
Requires-Dist: cmdop
Requires-Dist: pydantic>=2.0
Description-Content-Type: text/markdown

# ZeroClaw — Zero-Config Remote Agent & Instant Machine Access for Python

[![PyPI](https://img.shields.io/pypi/v/zeroclaw.svg)](https://pypi.org/project/zeroclaw/) [![Python](https://img.shields.io/pypi/pyversions/zeroclaw.svg)](https://pypi.org/project/zeroclaw/) [![license](https://img.shields.io/pypi/l/zeroclaw.svg)](https://github.com/commandoperator/cmdop-sdk-python/blob/main/LICENSE)

![zeroclaw](https://raw.githubusercontent.com/markolofsen/assets/main/libs/promo_zeroclaw.webp)

ZeroClaw delivers zero-config remote access Python capabilities, unlike Paramiko, Fabric, SSH2, or Ansible. Deploy an instant machine agent and obtain a no-setup remote shell. This plug-and-play AI agent integrates machine access directly into your Python code, simplifying remote operations and automation workflows.

## Features

- Establish zero-config remote access Python instances rapidly.
- Deploy an instant machine agent without manual configuration.
- Execute a no-setup remote shell using a simple API call.
- Incorporate a plug-and-play AI agent into existing Python projects.
- Automate remote tasks and workflows with minimal overhead.

## Use Cases

- Connect to a remote machine with a single API key, no configuration needed
- Run shell commands and agent tasks instantly without any setup
- Integrate remote machine control into any Python script in minutes

## Installation

```bash
pip install zeroclaw
```

## Quick Start

```python
from zeroclaw import ZeroClaw

client = ZeroClaw.remote(api_key="cmdop_live_xxx")

# One line — no SSH config, no keys
output = client.agent.run("uptime && df -h && free -m")
print(output.text)

# Ask the AI
answer = client.agent.run("What process is using the most memory?")
print(answer.text)
```

## CLI

No SDK needed? Connect via standalone binary:

```bash
curl -fsSL cmdop.com/install-cli.sh | bash
cmdok ssh
```

![cmdok ssh](https://raw.githubusercontent.com/commandoperator/cmdop-sdk-js/main/assets/cmdok_ssh.gif)

## Links

- [CMDOP Homepage](https://cmdop.com)
- [Documentation](https://cmdop.com/docs/sdk/python/)
- [zeroclaw on PyPI](https://pypi.org/project/zeroclaw/)
- [GitHub](https://github.com/commandoperator/cmdop-sdk-python)
