Metadata-Version: 2.4
Name: clawskills
Version: 2026.3.10
Summary: ClawSkills — agent skill toolkit and runner 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,clawskills,cmdop,mcp,openclaw,runner,skills,toolkit
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

# ClawSkills — AI Agent Skill Toolkit & Runner for Python

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

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

ClawSkills delivers a robust agent skill runner Python developers can leverage for AI skill chaining. As an OpenClaw skill toolkit, it rivals OpenClaw, ClawHub, MCP, LangChain Tools, and AutoGPT Plugins. Use this MCP tool runner to define agent task pipelines and orchestrate complex workflows with ease.

## Features

- Orchestrate agent task pipelines using a straightforward Python interface.
- Chain AI skills together for advanced reasoning and task execution.
- Integrate OpenClaw skill toolkit components into existing agent frameworks.
- Execute MCP tool runner compatible skills within agent workflows.
- Simplify agent skill development with a streamlined agent skill runner Python environment.

## Use Cases

- Run agent skills on remote machines with a single API call
- Chain multiple skills into sequential pipelines with context passing
- Load and execute MCP-compatible tools inside agent workflows

## Installation

```bash
pip install clawskills
```

## Quick Start

```python
from clawskills import ClawSkills

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

# Run a single skill
output = client.run_skill("code-review", input_text="Check src/ for security issues")
print(output)

# Chain skills together
results = client.chain([
    "lint-code",
    "run-tests",
    "generate-report",
])
print(results[-1])

# Load a custom skill
client.load("./skills/my-analyzer")
```

## 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/)
- [clawskills on PyPI](https://pypi.org/project/clawskills/)
- [GitHub](https://github.com/commandoperator/cmdop-sdk-python)
