agentprdiff 0.2.0__tar.gz → 0.2.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.
- {agentprdiff-0.2.0 → agentprdiff-0.2.1}/.gitignore +1 -0
- {agentprdiff-0.2.0 → agentprdiff-0.2.1}/CHANGELOG.md +26 -0
- {agentprdiff-0.2.0 → agentprdiff-0.2.1}/PKG-INFO +10 -8
- {agentprdiff-0.2.0 → agentprdiff-0.2.1}/README.md +6 -6
- {agentprdiff-0.2.0 → agentprdiff-0.2.1}/pyproject.toml +6 -2
- {agentprdiff-0.2.0 → agentprdiff-0.2.1}/src/agentprdiff/__init__.py +1 -1
- {agentprdiff-0.2.0 → agentprdiff-0.2.1}/LICENSE +0 -0
- {agentprdiff-0.2.0 → agentprdiff-0.2.1}/examples/quickstart/README.md +0 -0
- {agentprdiff-0.2.0 → agentprdiff-0.2.1}/examples/regression-tour/README.md +0 -0
- {agentprdiff-0.2.0 → agentprdiff-0.2.1}/src/agentprdiff/adapters/__init__.py +0 -0
- {agentprdiff-0.2.0 → agentprdiff-0.2.1}/src/agentprdiff/adapters/anthropic.py +0 -0
- {agentprdiff-0.2.0 → agentprdiff-0.2.1}/src/agentprdiff/adapters/openai.py +0 -0
- {agentprdiff-0.2.0 → agentprdiff-0.2.1}/src/agentprdiff/adapters/pricing.py +0 -0
- {agentprdiff-0.2.0 → agentprdiff-0.2.1}/src/agentprdiff/cli.py +0 -0
- {agentprdiff-0.2.0 → agentprdiff-0.2.1}/src/agentprdiff/core.py +0 -0
- {agentprdiff-0.2.0 → agentprdiff-0.2.1}/src/agentprdiff/differ.py +0 -0
- {agentprdiff-0.2.0 → agentprdiff-0.2.1}/src/agentprdiff/graders/__init__.py +0 -0
- {agentprdiff-0.2.0 → agentprdiff-0.2.1}/src/agentprdiff/graders/deterministic.py +0 -0
- {agentprdiff-0.2.0 → agentprdiff-0.2.1}/src/agentprdiff/graders/semantic.py +0 -0
- {agentprdiff-0.2.0 → agentprdiff-0.2.1}/src/agentprdiff/loader.py +0 -0
- {agentprdiff-0.2.0 → agentprdiff-0.2.1}/src/agentprdiff/reporters.py +0 -0
- {agentprdiff-0.2.0 → agentprdiff-0.2.1}/src/agentprdiff/runner.py +0 -0
- {agentprdiff-0.2.0 → agentprdiff-0.2.1}/src/agentprdiff/store.py +0 -0
|
@@ -6,6 +6,32 @@ prototyped under the name `tracediff`; renamed before first public release.
|
|
|
6
6
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
7
7
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
8
8
|
|
|
9
|
+
## [0.2.1] — 2026-04-26
|
|
10
|
+
|
|
11
|
+
### Changed
|
|
12
|
+
|
|
13
|
+
- README links to `AGENTS.md`, `docs/adapters.md`, `docs/ai-driven-adoption.md`,
|
|
14
|
+
`docs/suite-layout.md`, `docs/ci-integration.md`, `LICENSE`, and `CHANGELOG.md`
|
|
15
|
+
are now absolute GitHub URLs instead of relative paths. PyPI's project page
|
|
16
|
+
and Libraries.io render the README but cannot resolve relative repo paths;
|
|
17
|
+
the previous links rendered as broken from those surfaces. Absolute URLs
|
|
18
|
+
fix the click-through from PyPI / Libraries.io directly to the docs on
|
|
19
|
+
GitHub.
|
|
20
|
+
- Status section refreshed: 0.2.x is the current alpha line; OpenAI and
|
|
21
|
+
Anthropic SDK adapters are now shipped (previously listed as 0.2 roadmap).
|
|
22
|
+
LangChain/LangGraph adapters and the JS companion package moved to the
|
|
23
|
+
0.3 roadmap.
|
|
24
|
+
|
|
25
|
+
### Fixed
|
|
26
|
+
|
|
27
|
+
- Wheel metadata now emits a separate `Author:` header in addition to
|
|
28
|
+
`Author-email:`. Previously, the PEP 621 `authors = [{ name = ..., email = ... }]`
|
|
29
|
+
form generated only `Author-email: "Name" <email>`, which downstream
|
|
30
|
+
parsers like pypistats.org could not read (showing "Author: None").
|
|
31
|
+
Splitting `authors` into a name-only entry plus an email-only entry,
|
|
32
|
+
and adding a parallel `maintainers` field, makes the package author
|
|
33
|
+
display correctly across PyPI, Libraries.io, and pypistats.
|
|
34
|
+
|
|
9
35
|
## [0.2.0] — 2026-04-26
|
|
10
36
|
|
|
11
37
|
### Added
|
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: agentprdiff
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.1
|
|
4
4
|
Summary: Guard your LLM agents in CI. Snapshot tests that catch behavioral regressions when models, prompts, or vendors change.
|
|
5
5
|
Project-URL: Homepage, https://github.com/vnageshwaran-de/agentprdiff
|
|
6
6
|
Project-URL: Documentation, https://github.com/vnageshwaran-de/agentprdiff#readme
|
|
7
7
|
Project-URL: Issues, https://github.com/vnageshwaran-de/agentprdiff/issues
|
|
8
8
|
Project-URL: Repository, https://github.com/vnageshwaran-de/agentprdiff
|
|
9
|
-
Author
|
|
9
|
+
Author: Vinoth Nageshwaran
|
|
10
|
+
Author-email: vnageshwaran@gmail.com
|
|
11
|
+
Maintainer-email: Vinoth Nageshwaran <vnageshwaran@gmail.com>
|
|
10
12
|
License: MIT
|
|
11
13
|
License-File: LICENSE
|
|
12
14
|
Keywords: agent,ci,evaluation,llm,observability,regression-testing,snapshot-testing
|
|
@@ -48,9 +50,9 @@ pip install agentprdiff
|
|
|
48
50
|
[](https://github.com/vnageshwaran-de/agentprdiff/actions/workflows/ci.yml)
|
|
49
51
|
[](https://pypi.org/project/agentprdiff/)
|
|
50
52
|
[](https://pypi.org/project/agentprdiff/)
|
|
51
|
-
[](
|
|
53
|
+
[](https://github.com/vnageshwaran-de/agentprdiff/blob/main/LICENSE)
|
|
52
54
|
|
|
53
|
-
> **Adopting with an AI coding agent?** Point Claude Code, Cursor, Aider, or any agentic IDE at [`AGENTS.md`](
|
|
55
|
+
> **Adopting with an AI coding agent?** Point Claude Code, Cursor, Aider, or any agentic IDE at [`AGENTS.md`](https://github.com/vnageshwaran-de/agentprdiff/blob/main/AGENTS.md) — a step-by-step adoption playbook the agent reads directly. Humans driving the adoption: see [`docs/ai-driven-adoption.md`](https://github.com/vnageshwaran-de/agentprdiff/blob/main/docs/ai-driven-adoption.md) for copy-paste prompt templates. The canonical file layout — what's mandatory, what's recommended, what's optional — is at [`docs/suite-layout.md`](https://github.com/vnageshwaran-de/agentprdiff/blob/main/docs/suite-layout.md).
|
|
54
56
|
|
|
55
57
|
## Why
|
|
56
58
|
|
|
@@ -150,7 +152,7 @@ def my_agent(query: str):
|
|
|
150
152
|
|
|
151
153
|
The patch is scoped to the specific client instance and reversed when the `with` block exits — no global SDK state is touched. Anthropic adopters use `agentprdiff.adapters.anthropic` with the same shape.
|
|
152
154
|
|
|
153
|
-
See [`docs/adapters.md`](
|
|
155
|
+
See [`docs/adapters.md`](https://github.com/vnageshwaran-de/agentprdiff/blob/main/docs/adapters.md) for the full reference, including pricing overrides, custom provider tags, and recipes for nested agents.
|
|
154
156
|
|
|
155
157
|
### Option B — Manual instrumentation
|
|
156
158
|
|
|
@@ -198,7 +200,7 @@ jobs:
|
|
|
198
200
|
with: { name: agentprdiff, path: artifacts/ }
|
|
199
201
|
```
|
|
200
202
|
|
|
201
|
-
See [`docs/ci-integration.md`](
|
|
203
|
+
See [`docs/ci-integration.md`](https://github.com/vnageshwaran-de/agentprdiff/blob/main/docs/ci-integration.md) for GitLab, CircleCI, and Buildkite.
|
|
202
204
|
|
|
203
205
|
## Quickstart
|
|
204
206
|
|
|
@@ -221,10 +223,10 @@ agentprdiff check suite.py # exit 1; see the diff
|
|
|
221
223
|
|
|
222
224
|
## Status
|
|
223
225
|
|
|
224
|
-
`agentprdiff` is **alpha** (0.
|
|
226
|
+
`agentprdiff` is **alpha** (0.2.x). The core model, CLI, and OpenAI / Anthropic SDK adapters are stable. LangChain/LangGraph adapters and a JS companion package for the Vercel AI SDK are on the 0.3 roadmap. See [`CHANGELOG.md`](https://github.com/vnageshwaran-de/agentprdiff/blob/main/CHANGELOG.md).
|
|
225
227
|
|
|
226
228
|
Feedback, bug reports, and PRs extremely welcome. Open an issue or @ me.
|
|
227
229
|
|
|
228
230
|
## License
|
|
229
231
|
|
|
230
|
-
MIT. See [`LICENSE`](
|
|
232
|
+
MIT. See [`LICENSE`](https://github.com/vnageshwaran-de/agentprdiff/blob/main/LICENSE).
|
|
@@ -11,9 +11,9 @@ pip install agentprdiff
|
|
|
11
11
|
[](https://github.com/vnageshwaran-de/agentprdiff/actions/workflows/ci.yml)
|
|
12
12
|
[](https://pypi.org/project/agentprdiff/)
|
|
13
13
|
[](https://pypi.org/project/agentprdiff/)
|
|
14
|
-
[](
|
|
14
|
+
[](https://github.com/vnageshwaran-de/agentprdiff/blob/main/LICENSE)
|
|
15
15
|
|
|
16
|
-
> **Adopting with an AI coding agent?** Point Claude Code, Cursor, Aider, or any agentic IDE at [`AGENTS.md`](
|
|
16
|
+
> **Adopting with an AI coding agent?** Point Claude Code, Cursor, Aider, or any agentic IDE at [`AGENTS.md`](https://github.com/vnageshwaran-de/agentprdiff/blob/main/AGENTS.md) — a step-by-step adoption playbook the agent reads directly. Humans driving the adoption: see [`docs/ai-driven-adoption.md`](https://github.com/vnageshwaran-de/agentprdiff/blob/main/docs/ai-driven-adoption.md) for copy-paste prompt templates. The canonical file layout — what's mandatory, what's recommended, what's optional — is at [`docs/suite-layout.md`](https://github.com/vnageshwaran-de/agentprdiff/blob/main/docs/suite-layout.md).
|
|
17
17
|
|
|
18
18
|
## Why
|
|
19
19
|
|
|
@@ -113,7 +113,7 @@ def my_agent(query: str):
|
|
|
113
113
|
|
|
114
114
|
The patch is scoped to the specific client instance and reversed when the `with` block exits — no global SDK state is touched. Anthropic adopters use `agentprdiff.adapters.anthropic` with the same shape.
|
|
115
115
|
|
|
116
|
-
See [`docs/adapters.md`](
|
|
116
|
+
See [`docs/adapters.md`](https://github.com/vnageshwaran-de/agentprdiff/blob/main/docs/adapters.md) for the full reference, including pricing overrides, custom provider tags, and recipes for nested agents.
|
|
117
117
|
|
|
118
118
|
### Option B — Manual instrumentation
|
|
119
119
|
|
|
@@ -161,7 +161,7 @@ jobs:
|
|
|
161
161
|
with: { name: agentprdiff, path: artifacts/ }
|
|
162
162
|
```
|
|
163
163
|
|
|
164
|
-
See [`docs/ci-integration.md`](
|
|
164
|
+
See [`docs/ci-integration.md`](https://github.com/vnageshwaran-de/agentprdiff/blob/main/docs/ci-integration.md) for GitLab, CircleCI, and Buildkite.
|
|
165
165
|
|
|
166
166
|
## Quickstart
|
|
167
167
|
|
|
@@ -184,10 +184,10 @@ agentprdiff check suite.py # exit 1; see the diff
|
|
|
184
184
|
|
|
185
185
|
## Status
|
|
186
186
|
|
|
187
|
-
`agentprdiff` is **alpha** (0.
|
|
187
|
+
`agentprdiff` is **alpha** (0.2.x). The core model, CLI, and OpenAI / Anthropic SDK adapters are stable. LangChain/LangGraph adapters and a JS companion package for the Vercel AI SDK are on the 0.3 roadmap. See [`CHANGELOG.md`](https://github.com/vnageshwaran-de/agentprdiff/blob/main/CHANGELOG.md).
|
|
188
188
|
|
|
189
189
|
Feedback, bug reports, and PRs extremely welcome. Open an issue or @ me.
|
|
190
190
|
|
|
191
191
|
## License
|
|
192
192
|
|
|
193
|
-
MIT. See [`LICENSE`](
|
|
193
|
+
MIT. See [`LICENSE`](https://github.com/vnageshwaran-de/agentprdiff/blob/main/LICENSE).
|
|
@@ -4,12 +4,16 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "agentprdiff"
|
|
7
|
-
version = "0.2.
|
|
7
|
+
version = "0.2.1"
|
|
8
8
|
description = "Guard your LLM agents in CI. Snapshot tests that catch behavioral regressions when models, prompts, or vendors change."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.10"
|
|
11
11
|
license = { text = "MIT" }
|
|
12
|
-
authors = [
|
|
12
|
+
authors = [
|
|
13
|
+
{ name = "Vinoth Nageshwaran" },
|
|
14
|
+
{ email = "vnageshwaran@gmail.com" },
|
|
15
|
+
]
|
|
16
|
+
maintainers = [{ name = "Vinoth Nageshwaran", email = "vnageshwaran@gmail.com" }]
|
|
13
17
|
keywords = [
|
|
14
18
|
"llm",
|
|
15
19
|
"agent",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|