agentprdiff 0.2.3__tar.gz → 0.2.4__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.3 → agentprdiff-0.2.4}/CHANGELOG.md +22 -0
- {agentprdiff-0.2.3 → agentprdiff-0.2.4}/PKG-INFO +10 -4
- {agentprdiff-0.2.3 → agentprdiff-0.2.4}/README.md +5 -0
- {agentprdiff-0.2.3 → agentprdiff-0.2.4}/pyproject.toml +5 -4
- {agentprdiff-0.2.3 → agentprdiff-0.2.4}/src/agentprdiff/__init__.py +1 -1
- {agentprdiff-0.2.3 → agentprdiff-0.2.4}/.gitignore +0 -0
- {agentprdiff-0.2.3 → agentprdiff-0.2.4}/LICENSE +0 -0
- {agentprdiff-0.2.3 → agentprdiff-0.2.4}/examples/quickstart/README.md +0 -0
- {agentprdiff-0.2.3 → agentprdiff-0.2.4}/examples/regression-tour/README.md +0 -0
- {agentprdiff-0.2.3 → agentprdiff-0.2.4}/src/agentprdiff/adapters/__init__.py +0 -0
- {agentprdiff-0.2.3 → agentprdiff-0.2.4}/src/agentprdiff/adapters/anthropic.py +0 -0
- {agentprdiff-0.2.3 → agentprdiff-0.2.4}/src/agentprdiff/adapters/openai.py +0 -0
- {agentprdiff-0.2.3 → agentprdiff-0.2.4}/src/agentprdiff/adapters/pricing.py +0 -0
- {agentprdiff-0.2.3 → agentprdiff-0.2.4}/src/agentprdiff/cli.py +0 -0
- {agentprdiff-0.2.3 → agentprdiff-0.2.4}/src/agentprdiff/core.py +0 -0
- {agentprdiff-0.2.3 → agentprdiff-0.2.4}/src/agentprdiff/differ.py +0 -0
- {agentprdiff-0.2.3 → agentprdiff-0.2.4}/src/agentprdiff/filtering.py +0 -0
- {agentprdiff-0.2.3 → agentprdiff-0.2.4}/src/agentprdiff/graders/__init__.py +0 -0
- {agentprdiff-0.2.3 → agentprdiff-0.2.4}/src/agentprdiff/graders/deterministic.py +0 -0
- {agentprdiff-0.2.3 → agentprdiff-0.2.4}/src/agentprdiff/graders/semantic.py +0 -0
- {agentprdiff-0.2.3 → agentprdiff-0.2.4}/src/agentprdiff/loader.py +0 -0
- {agentprdiff-0.2.3 → agentprdiff-0.2.4}/src/agentprdiff/reporters.py +0 -0
- {agentprdiff-0.2.3 → agentprdiff-0.2.4}/src/agentprdiff/runner.py +0 -0
- {agentprdiff-0.2.3 → agentprdiff-0.2.4}/src/agentprdiff/scaffold.py +0 -0
- {agentprdiff-0.2.3 → agentprdiff-0.2.4}/src/agentprdiff/store.py +0 -0
|
@@ -8,6 +8,28 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
8
8
|
|
|
9
9
|
## [Unreleased]
|
|
10
10
|
|
|
11
|
+
## [0.2.4] — 2026-04-29
|
|
12
|
+
|
|
13
|
+
Metadata-only release. Code is identical to 0.2.3 — this exists solely
|
|
14
|
+
to ship the new docs site URL onto pypi.org's package sidebar (PyPI
|
|
15
|
+
reads `Project-URL` entries from the published wheel, not from the
|
|
16
|
+
GitHub repo, so the docs site otherwise wouldn't be discoverable from
|
|
17
|
+
pypi.org/project/agentprdiff).
|
|
18
|
+
|
|
19
|
+
### Changed
|
|
20
|
+
|
|
21
|
+
- `pyproject.toml` `[project.urls]`: `Homepage` and `Documentation` now
|
|
22
|
+
point at the new MkDocs Material site (https://agentprdiff.dev).
|
|
23
|
+
`Repository` and `Issues` continue to point at GitHub. Added a
|
|
24
|
+
`Changelog` URL.
|
|
25
|
+
- `README.md`: prominent docs link in the header and pepy.tech download
|
|
26
|
+
badges (lifetime + monthly).
|
|
27
|
+
|
|
28
|
+
### Internal
|
|
29
|
+
|
|
30
|
+
- Synced `agentprdiff.__version__` string with `pyproject.toml`'s
|
|
31
|
+
`version` field — was a leftover miss from the 0.2.3 release.
|
|
32
|
+
|
|
11
33
|
## [0.2.3] — 2026-04-28
|
|
12
34
|
|
|
13
35
|
### Added
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: agentprdiff
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.4
|
|
4
4
|
Summary: Guard your LLM agents in CI. Snapshot tests that catch behavioral regressions when models, prompts, or vendors change.
|
|
5
|
-
Project-URL: Homepage, https://
|
|
6
|
-
Project-URL: Documentation, https://
|
|
7
|
-
Project-URL: Issues, https://github.com/vnageshwaran-de/agentprdiff/issues
|
|
5
|
+
Project-URL: Homepage, https://agentprdiff.dev
|
|
6
|
+
Project-URL: Documentation, https://agentprdiff.dev
|
|
8
7
|
Project-URL: Repository, https://github.com/vnageshwaran-de/agentprdiff
|
|
8
|
+
Project-URL: Issues, https://github.com/vnageshwaran-de/agentprdiff/issues
|
|
9
|
+
Project-URL: Changelog, https://github.com/vnageshwaran-de/agentprdiff/blob/main/CHANGELOG.md
|
|
9
10
|
Author: Vinoth Nageshwaran
|
|
10
11
|
Author-email: vnageshwaran@gmail.com
|
|
11
12
|
Maintainer-email: Vinoth Nageshwaran <vnageshwaran@gmail.com>
|
|
@@ -41,6 +42,8 @@ Description-Content-Type: text/markdown
|
|
|
41
42
|
|
|
42
43
|
**Guard your LLM agents in CI.** Snapshot tests that catch behavioral regressions when models, prompts, or vendors change.
|
|
43
44
|
|
|
45
|
+
📚 **[Documentation: agentprdiff.dev](https://agentprdiff.dev/)** · ⚡ [Quickstart](https://agentprdiff.dev/quickstart/) · 🤖 [AI-agent adoption](https://agentprdiff.dev/quickstart/#path-a--let-an-ai-agent-adopt-the-package-for-you-recommended) · 📦 [PyPI](https://pypi.org/project/agentprdiff/)
|
|
46
|
+
|
|
44
47
|
> You upgraded Claude. You tweaked a system prompt. You swapped `gpt-4o` for `gpt-4o-mini` in the cheap path. Which of your agent's behaviors just changed? `agentprdiff` tells you — before the PR merges.
|
|
45
48
|
|
|
46
49
|
```bash
|
|
@@ -50,7 +53,10 @@ pip install agentprdiff
|
|
|
50
53
|
[](https://github.com/vnageshwaran-de/agentprdiff/actions/workflows/ci.yml)
|
|
51
54
|
[](https://pypi.org/project/agentprdiff/)
|
|
52
55
|
[](https://pypi.org/project/agentprdiff/)
|
|
56
|
+
[](https://pepy.tech/project/agentprdiff)
|
|
57
|
+
[](https://pepy.tech/project/agentprdiff)
|
|
53
58
|
[](https://github.com/vnageshwaran-de/agentprdiff/blob/main/LICENSE)
|
|
59
|
+
[](https://agentprdiff.dev/)
|
|
54
60
|
|
|
55
61
|
> **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).
|
|
56
62
|
|
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
**Guard your LLM agents in CI.** Snapshot tests that catch behavioral regressions when models, prompts, or vendors change.
|
|
4
4
|
|
|
5
|
+
📚 **[Documentation: agentprdiff.dev](https://agentprdiff.dev/)** · ⚡ [Quickstart](https://agentprdiff.dev/quickstart/) · 🤖 [AI-agent adoption](https://agentprdiff.dev/quickstart/#path-a--let-an-ai-agent-adopt-the-package-for-you-recommended) · 📦 [PyPI](https://pypi.org/project/agentprdiff/)
|
|
6
|
+
|
|
5
7
|
> You upgraded Claude. You tweaked a system prompt. You swapped `gpt-4o` for `gpt-4o-mini` in the cheap path. Which of your agent's behaviors just changed? `agentprdiff` tells you — before the PR merges.
|
|
6
8
|
|
|
7
9
|
```bash
|
|
@@ -11,7 +13,10 @@ pip install agentprdiff
|
|
|
11
13
|
[](https://github.com/vnageshwaran-de/agentprdiff/actions/workflows/ci.yml)
|
|
12
14
|
[](https://pypi.org/project/agentprdiff/)
|
|
13
15
|
[](https://pypi.org/project/agentprdiff/)
|
|
16
|
+
[](https://pepy.tech/project/agentprdiff)
|
|
17
|
+
[](https://pepy.tech/project/agentprdiff)
|
|
14
18
|
[](https://github.com/vnageshwaran-de/agentprdiff/blob/main/LICENSE)
|
|
19
|
+
[](https://agentprdiff.dev/)
|
|
15
20
|
|
|
16
21
|
> **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
22
|
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "agentprdiff"
|
|
7
|
-
version = "0.2.
|
|
7
|
+
version = "0.2.4"
|
|
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"
|
|
@@ -52,10 +52,11 @@ dev = [
|
|
|
52
52
|
]
|
|
53
53
|
|
|
54
54
|
[project.urls]
|
|
55
|
-
Homepage = "https://
|
|
56
|
-
Documentation = "https://
|
|
57
|
-
Issues = "https://github.com/vnageshwaran-de/agentprdiff/issues"
|
|
55
|
+
Homepage = "https://agentprdiff.dev"
|
|
56
|
+
Documentation = "https://agentprdiff.dev"
|
|
58
57
|
Repository = "https://github.com/vnageshwaran-de/agentprdiff"
|
|
58
|
+
Issues = "https://github.com/vnageshwaran-de/agentprdiff/issues"
|
|
59
|
+
Changelog = "https://github.com/vnageshwaran-de/agentprdiff/blob/main/CHANGELOG.md"
|
|
59
60
|
|
|
60
61
|
[project.scripts]
|
|
61
62
|
agentprdiff = "agentprdiff.cli:main"
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|