Metadata-Version: 2.5
Name: chp-adapter-radicle
Version: 0.53.0
Summary: CHP capability adapter — Radicle p2p code forge (sync, patch, issue, repo identity)
Author: Auxo
License: Apache-2.0
License-File: LICENSE
License-File: NOTICE
Keywords: adapter,capability-host-protocol,chp,p2p,radicle,vcs
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.10
Requires-Dist: chp-core>=0.7.0
Provides-Extra: dev
Requires-Dist: pytest-asyncio>=0.23; extra == 'dev'
Requires-Dist: pytest>=8.0; extra == 'dev'
Description-Content-Type: text/markdown

# chp-adapter-radicle

**Sovereign, peer-to-peer git as CHP capabilities — clone, init, issues, patches, and sync over
[Radicle](https://radicle.xyz), every operation admission-gated and recorded as signed, replayable
evidence.**

```bash
pip install chp-adapter-radicle
```

Compose it onto any CHP host, or onto [`chp-server`](https://pypi.org/project/chp-server/):

```python
from chp_server import CapabilityServer
from chp_adapter_radicle import RadicleAdapter, RadicleConfig

app = CapabilityServer("my-host")
app.compose(RadicleAdapter(RadicleConfig(default_repo_path="./myrepo")))
app.run(port=8800)
```

## Capabilities

The Radicle surface as governed capabilities: `chp.adapters.radicle.clone`, `init`, `identity`,
`issue_open` / `issue_close` / `issue_comment`, `patch_open` / `patch_merge` / `patch_show`, `push`,
`sync`, `seed` / `unseed`, `node_status`, and more (`chp-server adapters --verbose` for the full set).

Governed, code-hosting sovereignty: no central forge, every operation evidenced.

---

Part of the [Capability Host Protocol](https://github.com/capabilityhostprotocol/chp-core) — one
governed implementation of a capability, consumed everywhere. Apache-2.0.
