Metadata-Version: 2.4
Name: correctover
Version: 2.0.1
Summary: CCS v1.0 - Conformance Protocol for Agentic Runtime Systems
Home-page: https://correctover.github.io
Author: Guigui Wang
Author-email: wangguigui@correctover.com
Project-URL: Bug Tracker, https://github.com/Correctover/standards/issues
Project-URL: Documentation, https://correctover.github.io
Project-URL: Source, https://github.com/Correctover/standards
Project-URL: DOI, https://doi.org/10.5281/zenodo.21234580
Keywords: llm,validation,conformance,compliance,hipaa,gdpr,soc2,agent,mcp
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: Other/Proprietary License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pydantic>=2.0.0
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: keywords
Dynamic: license-file
Dynamic: project-url
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# Correctover - CCS v1.0

**Conformance Protocol for Agentic Runtime Systems**

DOI: [10.5281/zenodo.21234580](https://doi.org/10.5281/zenodo.21234580)

## Overview

Correctover implements the CCS v1.0 standard for validating LLM outputs in agentic systems. It provides provider-agnostic, framework-agnostic conformance verification.

## Quick Start

```python
from correctover import CCSValidator

validator = CCSValidator(
    required_fields=["decision", "confidence", "trace_id"],
    supported_fields=["reasoning", "metadata"],
    forbidden_fields=["pii", "credentials"]
)

result = validator.validate({
    "decision": "approve",
    "confidence": 0.95,
    "trace_id": "abc-123"
})

print(f"Valid: {result.is_valid}")
```

## Components

- **CCS-Core**: Schema validation (Required/Supported/Forbidden)
- **CCS-Compliance**: HIPAA, GDPR, SOC2 mapping
- **CCS-Cost-Flow-Analysis**: Token budget enforcement
- **CCS-Integrity**: HMAC-based output binding
- **CCS-Audit**: Comprehensive audit logging

## Integration

Framework adapters available:
- LangChain
- CrewAI
- AutoGen
- LlamaIndex

## License

Proprietary Commercial License — see LICENSE file

## Resources

- Website: https://correctover.github.io
- Specification: https://github.com/Correctover/standards
- DOI: https://doi.org/10.5281/zenodo.21234580
