agent-conformance 0.0.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
Metadata-Version: 2.5
|
|
2
|
+
Name: agent-conformance
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Agent Conformance Engine (ACE) - deterministic conformance evidence for AI agents. Placeholder release; see the repository for the specification and roadmap.
|
|
5
|
+
Project-URL: Homepage, https://agent-conformance.org
|
|
6
|
+
Project-URL: Repository, https://github.com/agent-conformance/agentce
|
|
7
|
+
Project-URL: Specification, https://github.com/agent-conformance/agentce
|
|
8
|
+
Author: Agent Conformance Engine maintainers
|
|
9
|
+
License-Expression: Apache-2.0
|
|
10
|
+
Keywords: ai-agents,conformance,eu-ai-act,opentelemetry,oscal,provenance,shacl
|
|
11
|
+
Classifier: Development Status :: 1 - Planning
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
15
|
+
Classifier: Topic :: Software Development :: Quality Assurance
|
|
16
|
+
Requires-Python: >=3.12
|
|
17
|
+
Description-Content-Type: text/markdown
|
|
18
|
+
|
|
19
|
+
# agent-conformance
|
|
20
|
+
|
|
21
|
+
Python implementation of the **Agent Conformance Engine (ACE)** — a deterministic engine that evaluates the evidence an AI-agent deployment produces against executable control catalogs and emits a conformance report.
|
|
22
|
+
|
|
23
|
+
This is a **placeholder release** that reserves the package name. The engine is under active development; the specification will be published in this repository.
|
|
24
|
+
|
|
25
|
+
- Repository: https://github.com/agent-conformance/agentce
|
|
26
|
+
- Website: https://agent-conformance.org
|
|
27
|
+
|
|
28
|
+
Conformance to a catalog is not a legal compliance determination.
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# agent-conformance
|
|
2
|
+
|
|
3
|
+
Python implementation of the **Agent Conformance Engine (ACE)** — a deterministic engine that evaluates the evidence an AI-agent deployment produces against executable control catalogs and emits a conformance report.
|
|
4
|
+
|
|
5
|
+
This is a **placeholder release** that reserves the package name. The engine is under active development; the specification will be published in this repository.
|
|
6
|
+
|
|
7
|
+
- Repository: https://github.com/agent-conformance/agentce
|
|
8
|
+
- Website: https://agent-conformance.org
|
|
9
|
+
|
|
10
|
+
Conformance to a catalog is not a legal compliance determination.
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"""Minimal command-line entry point for the placeholder release."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
import sys
|
|
6
|
+
|
|
7
|
+
from agentce import __version__
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
def main(argv: list[str] | None = None) -> int:
|
|
11
|
+
args = list(sys.argv[1:] if argv is None else argv)
|
|
12
|
+
if args and args[0] in {"--version", "-V", "version"}:
|
|
13
|
+
print(f"agentce {__version__}")
|
|
14
|
+
return 0
|
|
15
|
+
print(
|
|
16
|
+
"agentce (Agent Conformance Engine) - placeholder release.\n"
|
|
17
|
+
"The assessment engine is under development.\n"
|
|
18
|
+
"Specification: https://github.com/agent-conformance/agentce\n"
|
|
19
|
+
"Usage: agentce --version"
|
|
20
|
+
)
|
|
21
|
+
return 0
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
if __name__ == "__main__": # pragma: no cover
|
|
25
|
+
raise SystemExit(main())
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling>=1.25"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "agent-conformance"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Agent Conformance Engine (ACE) - deterministic conformance evidence for AI agents. Placeholder release; see the repository for the specification and roadmap."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.12"
|
|
11
|
+
license = "Apache-2.0"
|
|
12
|
+
authors = [{ name = "Agent Conformance Engine maintainers" }]
|
|
13
|
+
keywords = ["ai-agents", "conformance", "eu-ai-act", "oscal", "provenance", "shacl", "opentelemetry"]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 1 - Planning",
|
|
16
|
+
"Intended Audience :: Developers",
|
|
17
|
+
"Programming Language :: Python :: 3",
|
|
18
|
+
"Programming Language :: Python :: 3.12",
|
|
19
|
+
"Topic :: Software Development :: Quality Assurance",
|
|
20
|
+
]
|
|
21
|
+
|
|
22
|
+
[project.urls]
|
|
23
|
+
Homepage = "https://agent-conformance.org"
|
|
24
|
+
Repository = "https://github.com/agent-conformance/agentce"
|
|
25
|
+
Specification = "https://github.com/agent-conformance/agentce"
|
|
26
|
+
|
|
27
|
+
[project.scripts]
|
|
28
|
+
agentce = "agentce.cli:main"
|
|
29
|
+
|
|
30
|
+
[tool.hatch.build.targets.wheel]
|
|
31
|
+
packages = ["agentce"]
|