Metadata-Version: 2.4
Name: acgs
Version: 4.0.0
Summary: ACGS — Constitutional AI Governance. Umbrella package for the open-core ACGS line (installs acgs-lite, the receipt-gated governance library).
Project-URL: Homepage, https://github.com/acgs-ai/ACGS
Project-URL: Repository, https://github.com/acgs-ai/ACGS
Project-URL: Documentation, https://github.com/acgs-ai/ACGS/blob/master/README.md
Project-URL: Issues, https://github.com/acgs-ai/ACGS/issues
Project-URL: PyPI, https://pypi.org/project/acgs/
Author-email: ACGS Team <hello@acgs.dev>
License: Apache-2.0
License-File: LICENSE
Keywords: agents,ai-governance,audit,compliance-evidence,policy,receipts
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: Topic :: Software Development :: Libraries
Requires-Python: >=3.10
Requires-Dist: acgs-lite>=2.10.0
Description-Content-Type: text/markdown

# acgs

**ACGS — Constitutional AI Governance.** Umbrella package for the open-core
ACGS line.

Installing `acgs` gives you [`acgs-lite`](https://pypi.org/project/acgs-lite/),
the receipt-gated AI-governance library, re-exported as `acgs.lite`:

```python
import acgs

print(acgs.__version__)
acgs.lite  # the acgs-lite library
```

## What this is

- A thin meta-package: one import surface and a pinned dependency line for the
  open-source parts of the ACGS project.
- The underlying library provides a local receipt-gated governance kernel:
  policy evaluation, tamper-evident JSONL audit chains, opt-in Ed25519 signing,
  and integration adapter shapes for MCP / function-call / runtime hooks.

## What this is not

ACGS is alpha software — a production-shaped foundation developed and tested
locally. It is not compliance-certified, regulator-approved, or a claim of
guaranteed safety. See the project repository for the current claim register
and limitations.

## Versioning and license history

- **4.0.0+** — clean umbrella over the open-core line, Apache-2.0. The legacy
  bundled `core` and `research` top-level packages from 3.x are no longer
  shipped.
- **≤ 3.0.2** — legacy bundle (`acgs_lite`, `core`, `research`), published
  under AGPL-3.0-or-later; those releases remain on PyPI under their original
  license.

## Links

- Project monorepo: <https://github.com/acgs-ai/ACGS>
- Library: <https://pypi.org/project/acgs-lite/>
- Issues: <https://github.com/acgs-ai/ACGS/issues>
