corrobo 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.
- corrobo-0.0.1/PKG-INFO +19 -0
- corrobo-0.0.1/README.md +10 -0
- corrobo-0.0.1/corrobo/__init__.py +1 -0
- corrobo-0.0.1/corrobo.egg-info/PKG-INFO +19 -0
- corrobo-0.0.1/corrobo.egg-info/SOURCES.txt +7 -0
- corrobo-0.0.1/corrobo.egg-info/dependency_links.txt +1 -0
- corrobo-0.0.1/corrobo.egg-info/top_level.txt +1 -0
- corrobo-0.0.1/pyproject.toml +12 -0
- corrobo-0.0.1/setup.cfg +4 -0
corrobo-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: corrobo
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Corrobo - independent runtime verification for AI agent actions. Reads real system state before and after a tool call, so a tool that lies about success is caught and one that worked is proven. Full release imminent.
|
|
5
|
+
Author: Fahad
|
|
6
|
+
License: MIT
|
|
7
|
+
Requires-Python: >=3.10
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
|
|
10
|
+
# Corrobo
|
|
11
|
+
|
|
12
|
+
Independent runtime verification for AI agent actions: Corrobo reads **real
|
|
13
|
+
system state** before and after a tool call and checks it against the effect
|
|
14
|
+
the action promised — so a tool that lies (or silently fails) is caught, and
|
|
15
|
+
one that genuinely worked is proven. It never trusts the tool's own response.
|
|
16
|
+
|
|
17
|
+
Statuses: **VERIFIED** / **SAY-DO GAP** / **UNVERIFIED**.
|
|
18
|
+
|
|
19
|
+
Full release imminent. https://github.com/fahad10inb/corrobo
|
corrobo-0.0.1/README.md
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# Corrobo
|
|
2
|
+
|
|
3
|
+
Independent runtime verification for AI agent actions: Corrobo reads **real
|
|
4
|
+
system state** before and after a tool call and checks it against the effect
|
|
5
|
+
the action promised — so a tool that lies (or silently fails) is caught, and
|
|
6
|
+
one that genuinely worked is proven. It never trusts the tool's own response.
|
|
7
|
+
|
|
8
|
+
Statuses: **VERIFIED** / **SAY-DO GAP** / **UNVERIFIED**.
|
|
9
|
+
|
|
10
|
+
Full release imminent. https://github.com/fahad10inb/corrobo
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.0.1"
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: corrobo
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Corrobo - independent runtime verification for AI agent actions. Reads real system state before and after a tool call, so a tool that lies about success is caught and one that worked is proven. Full release imminent.
|
|
5
|
+
Author: Fahad
|
|
6
|
+
License: MIT
|
|
7
|
+
Requires-Python: >=3.10
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
|
|
10
|
+
# Corrobo
|
|
11
|
+
|
|
12
|
+
Independent runtime verification for AI agent actions: Corrobo reads **real
|
|
13
|
+
system state** before and after a tool call and checks it against the effect
|
|
14
|
+
the action promised — so a tool that lies (or silently fails) is caught, and
|
|
15
|
+
one that genuinely worked is proven. It never trusts the tool's own response.
|
|
16
|
+
|
|
17
|
+
Statuses: **VERIFIED** / **SAY-DO GAP** / **UNVERIFIED**.
|
|
18
|
+
|
|
19
|
+
Full release imminent. https://github.com/fahad10inb/corrobo
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
corrobo
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "corrobo"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Corrobo - independent runtime verification for AI agent actions. Reads real system state before and after a tool call, so a tool that lies about success is caught and one that worked is proven. Full release imminent."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.10"
|
|
11
|
+
license = {text = "MIT"}
|
|
12
|
+
authors = [{name = "Fahad"}]
|
corrobo-0.0.1/setup.cfg
ADDED