Metadata-Version: 2.4
Name: clawhub
Version: 2026.3.3
Summary: ClawHub — skill registry and agent marketplace 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,clawhub,cmdop,marketplace,mcp,openclaw,registry,skills
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

# ClawHub — AI Agent Skill Registry & Marketplace for Python

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

![CMDOP Architecture](https://cmdop.com/images/architecture/vs-personal-agent.png)

ClawHub serves as an agent skill registry Python developers can leverage as an AI skill marketplace, offering OpenClaw skills and facilitating MCP tool discovery. Unlike alternatives like OpenClaw, ClawHub CLI, MCP, LangChain Hub, and CrewAI Tools, ClawHub focuses on providing a comprehensive agent plugin store for streamlined skill management and integration.

## Features

- Browse the agent skill registry Python to find pre-built functionalities.
- Discover and integrate OpenClaw skills into your AI agents.
- Utilize the AI skill marketplace to extend agent capabilities.
- Simplify MCP tool discovery for enhanced agent workflows.
- Manage agent plugins through a centralized agent plugin store.

## Use Cases

- Search and install agent skills from the ClawHub registry
- Publish custom skills and share them across teams
- Discover MCP-compatible tools and integrate them into agent workflows

## Installation

```bash
pip install clawhub
```

## Quick Start

```python
from clawhub import ClawHub

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

# Search for skills
results = client.search("code review")
print(results)

# Install a skill
client.install("coding-agent", version="latest")

# Publish your own skill
client.publish("./my-skill", private=False)

print(client.installed_skills)
```

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