kanonry 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.
- kanonry-0.0.1/LICENSE +21 -0
- kanonry-0.0.1/PKG-INFO +51 -0
- kanonry-0.0.1/README.md +38 -0
- kanonry-0.0.1/kanonry/__init__.py +2 -0
- kanonry-0.0.1/kanonry.egg-info/PKG-INFO +51 -0
- kanonry-0.0.1/kanonry.egg-info/SOURCES.txt +8 -0
- kanonry-0.0.1/kanonry.egg-info/dependency_links.txt +1 -0
- kanonry-0.0.1/kanonry.egg-info/top_level.txt +1 -0
- kanonry-0.0.1/pyproject.toml +32 -0
- kanonry-0.0.1/setup.cfg +4 -0
kanonry-0.0.1/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Abhiyash Singh Nibber
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
kanonry-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: kanonry
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Record, replay, and verify AI agent runs. Coming soon.
|
|
5
|
+
Author-email: Abhiyash <abhiyashnibber@gmail.com>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Homepage, https://kanonry.com
|
|
8
|
+
Project-URL: Repository, https://github.com/kanonry/kanonry
|
|
9
|
+
Requires-Python: >=3.9
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
License-File: LICENSE
|
|
12
|
+
Dynamic: license-file
|
|
13
|
+
|
|
14
|
+
# Kanonry
|
|
15
|
+
|
|
16
|
+
Record, replay, and verify AI agent runs.
|
|
17
|
+
|
|
18
|
+
Kanonry is building developer-first verification tooling for AI agents.
|
|
19
|
+
|
|
20
|
+
This package is a placeholder release used to reserve the `kanonry` package name on PyPI while the first public version is in development.
|
|
21
|
+
|
|
22
|
+
Visit [kanonry.com](https://kanonry.com) for updates and to join the waitlist.
|
|
23
|
+
|
|
24
|
+
## What is Kanonry?
|
|
25
|
+
|
|
26
|
+
Kanonry is a verification layer for AI agents.
|
|
27
|
+
|
|
28
|
+
It is being built to help developers capture real agent executions, replay them deterministically, compare outcomes across runs, and turn assertions over recorded behavior into checks that can run locally and in CI.
|
|
29
|
+
|
|
30
|
+
The goal is to make agent behavior easier to inspect, test, and trust before it reaches production.
|
|
31
|
+
|
|
32
|
+
## Planned capabilities
|
|
33
|
+
|
|
34
|
+
Kanonry is intended to support workflows like:
|
|
35
|
+
|
|
36
|
+
- recording real agent runs
|
|
37
|
+
- replaying runs with stable inputs
|
|
38
|
+
- diffing outputs and tool behavior across runs
|
|
39
|
+
- writing assertions over recorded behavior
|
|
40
|
+
- running verification checks in local development and CI
|
|
41
|
+
|
|
42
|
+
## Status
|
|
43
|
+
|
|
44
|
+
This is a pre-release placeholder.
|
|
45
|
+
|
|
46
|
+
There is no public API yet, and the package does not currently provide production functionality.
|
|
47
|
+
|
|
48
|
+
## Installation
|
|
49
|
+
|
|
50
|
+
```bash
|
|
51
|
+
pip install kanonry
|
kanonry-0.0.1/README.md
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# Kanonry
|
|
2
|
+
|
|
3
|
+
Record, replay, and verify AI agent runs.
|
|
4
|
+
|
|
5
|
+
Kanonry is building developer-first verification tooling for AI agents.
|
|
6
|
+
|
|
7
|
+
This package is a placeholder release used to reserve the `kanonry` package name on PyPI while the first public version is in development.
|
|
8
|
+
|
|
9
|
+
Visit [kanonry.com](https://kanonry.com) for updates and to join the waitlist.
|
|
10
|
+
|
|
11
|
+
## What is Kanonry?
|
|
12
|
+
|
|
13
|
+
Kanonry is a verification layer for AI agents.
|
|
14
|
+
|
|
15
|
+
It is being built to help developers capture real agent executions, replay them deterministically, compare outcomes across runs, and turn assertions over recorded behavior into checks that can run locally and in CI.
|
|
16
|
+
|
|
17
|
+
The goal is to make agent behavior easier to inspect, test, and trust before it reaches production.
|
|
18
|
+
|
|
19
|
+
## Planned capabilities
|
|
20
|
+
|
|
21
|
+
Kanonry is intended to support workflows like:
|
|
22
|
+
|
|
23
|
+
- recording real agent runs
|
|
24
|
+
- replaying runs with stable inputs
|
|
25
|
+
- diffing outputs and tool behavior across runs
|
|
26
|
+
- writing assertions over recorded behavior
|
|
27
|
+
- running verification checks in local development and CI
|
|
28
|
+
|
|
29
|
+
## Status
|
|
30
|
+
|
|
31
|
+
This is a pre-release placeholder.
|
|
32
|
+
|
|
33
|
+
There is no public API yet, and the package does not currently provide production functionality.
|
|
34
|
+
|
|
35
|
+
## Installation
|
|
36
|
+
|
|
37
|
+
```bash
|
|
38
|
+
pip install kanonry
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: kanonry
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Record, replay, and verify AI agent runs. Coming soon.
|
|
5
|
+
Author-email: Abhiyash <abhiyashnibber@gmail.com>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Homepage, https://kanonry.com
|
|
8
|
+
Project-URL: Repository, https://github.com/kanonry/kanonry
|
|
9
|
+
Requires-Python: >=3.9
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
License-File: LICENSE
|
|
12
|
+
Dynamic: license-file
|
|
13
|
+
|
|
14
|
+
# Kanonry
|
|
15
|
+
|
|
16
|
+
Record, replay, and verify AI agent runs.
|
|
17
|
+
|
|
18
|
+
Kanonry is building developer-first verification tooling for AI agents.
|
|
19
|
+
|
|
20
|
+
This package is a placeholder release used to reserve the `kanonry` package name on PyPI while the first public version is in development.
|
|
21
|
+
|
|
22
|
+
Visit [kanonry.com](https://kanonry.com) for updates and to join the waitlist.
|
|
23
|
+
|
|
24
|
+
## What is Kanonry?
|
|
25
|
+
|
|
26
|
+
Kanonry is a verification layer for AI agents.
|
|
27
|
+
|
|
28
|
+
It is being built to help developers capture real agent executions, replay them deterministically, compare outcomes across runs, and turn assertions over recorded behavior into checks that can run locally and in CI.
|
|
29
|
+
|
|
30
|
+
The goal is to make agent behavior easier to inspect, test, and trust before it reaches production.
|
|
31
|
+
|
|
32
|
+
## Planned capabilities
|
|
33
|
+
|
|
34
|
+
Kanonry is intended to support workflows like:
|
|
35
|
+
|
|
36
|
+
- recording real agent runs
|
|
37
|
+
- replaying runs with stable inputs
|
|
38
|
+
- diffing outputs and tool behavior across runs
|
|
39
|
+
- writing assertions over recorded behavior
|
|
40
|
+
- running verification checks in local development and CI
|
|
41
|
+
|
|
42
|
+
## Status
|
|
43
|
+
|
|
44
|
+
This is a pre-release placeholder.
|
|
45
|
+
|
|
46
|
+
There is no public API yet, and the package does not currently provide production functionality.
|
|
47
|
+
|
|
48
|
+
## Installation
|
|
49
|
+
|
|
50
|
+
```bash
|
|
51
|
+
pip install kanonry
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
kanonry
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=77.0.3"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "kanonry"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Record, replay, and verify AI agent runs. Coming soon."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.9"
|
|
11
|
+
authors = [{ name = "Abhiyash", email = "abhiyashnibber@gmail.com" }]
|
|
12
|
+
license = "MIT"
|
|
13
|
+
license-files = ["LICENSE"]
|
|
14
|
+
|
|
15
|
+
[project.urls]
|
|
16
|
+
Homepage = "https://kanonry.com"
|
|
17
|
+
Repository = "https://github.com/kanonry/kanonry"
|
|
18
|
+
|
|
19
|
+
[tool.setuptools.packages.find]
|
|
20
|
+
where = ["."]
|
|
21
|
+
include = ["kanonry*"]
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
kanonry-0.0.1/setup.cfg
ADDED