agentprdiff 0.2.3__tar.gz → 0.2.5__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.
Files changed (25) hide show
  1. {agentprdiff-0.2.3 → agentprdiff-0.2.5}/CHANGELOG.md +38 -0
  2. {agentprdiff-0.2.3 → agentprdiff-0.2.5}/PKG-INFO +19 -4
  3. {agentprdiff-0.2.3 → agentprdiff-0.2.5}/README.md +14 -0
  4. {agentprdiff-0.2.3 → agentprdiff-0.2.5}/pyproject.toml +5 -4
  5. {agentprdiff-0.2.3 → agentprdiff-0.2.5}/src/agentprdiff/__init__.py +1 -1
  6. {agentprdiff-0.2.3 → agentprdiff-0.2.5}/.gitignore +0 -0
  7. {agentprdiff-0.2.3 → agentprdiff-0.2.5}/LICENSE +0 -0
  8. {agentprdiff-0.2.3 → agentprdiff-0.2.5}/examples/quickstart/README.md +0 -0
  9. {agentprdiff-0.2.3 → agentprdiff-0.2.5}/examples/regression-tour/README.md +0 -0
  10. {agentprdiff-0.2.3 → agentprdiff-0.2.5}/src/agentprdiff/adapters/__init__.py +0 -0
  11. {agentprdiff-0.2.3 → agentprdiff-0.2.5}/src/agentprdiff/adapters/anthropic.py +0 -0
  12. {agentprdiff-0.2.3 → agentprdiff-0.2.5}/src/agentprdiff/adapters/openai.py +0 -0
  13. {agentprdiff-0.2.3 → agentprdiff-0.2.5}/src/agentprdiff/adapters/pricing.py +0 -0
  14. {agentprdiff-0.2.3 → agentprdiff-0.2.5}/src/agentprdiff/cli.py +0 -0
  15. {agentprdiff-0.2.3 → agentprdiff-0.2.5}/src/agentprdiff/core.py +0 -0
  16. {agentprdiff-0.2.3 → agentprdiff-0.2.5}/src/agentprdiff/differ.py +0 -0
  17. {agentprdiff-0.2.3 → agentprdiff-0.2.5}/src/agentprdiff/filtering.py +0 -0
  18. {agentprdiff-0.2.3 → agentprdiff-0.2.5}/src/agentprdiff/graders/__init__.py +0 -0
  19. {agentprdiff-0.2.3 → agentprdiff-0.2.5}/src/agentprdiff/graders/deterministic.py +0 -0
  20. {agentprdiff-0.2.3 → agentprdiff-0.2.5}/src/agentprdiff/graders/semantic.py +0 -0
  21. {agentprdiff-0.2.3 → agentprdiff-0.2.5}/src/agentprdiff/loader.py +0 -0
  22. {agentprdiff-0.2.3 → agentprdiff-0.2.5}/src/agentprdiff/reporters.py +0 -0
  23. {agentprdiff-0.2.3 → agentprdiff-0.2.5}/src/agentprdiff/runner.py +0 -0
  24. {agentprdiff-0.2.3 → agentprdiff-0.2.5}/src/agentprdiff/scaffold.py +0 -0
  25. {agentprdiff-0.2.3 → agentprdiff-0.2.5}/src/agentprdiff/store.py +0 -0
@@ -8,6 +8,44 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
8
8
 
9
9
  ## [Unreleased]
10
10
 
11
+ ## [0.2.5] — 2026-04-30
12
+
13
+ Infrastructure-only release. Code is identical to 0.2.4 — this exists
14
+ solely to publish via PyPI's Trusted Publishing flow (OIDC from GitHub
15
+ Actions) so the project page shows verified details for the source
16
+ repository. No API token is used to upload this release.
17
+
18
+ ### Internal
19
+
20
+ - Added `.github/workflows/release.yml` that builds sdist + wheel and
21
+ publishes via `pypa/gh-action-pypi-publish` with OIDC. Triggered on
22
+ GitHub `release: published` and `workflow_dispatch`. Uses the `pypi`
23
+ GitHub environment for tag-restricted deploys (`v*`).
24
+ - First release published through the configured PyPI Trusted Publisher
25
+ for `vnageshwaran-de/agentprdiff` → `release.yml` → `pypi` env.
26
+
27
+ ## [0.2.4] — 2026-04-29
28
+
29
+ Metadata-only release. Code is identical to 0.2.3 — this exists solely
30
+ to ship the new docs site URL onto pypi.org's package sidebar (PyPI
31
+ reads `Project-URL` entries from the published wheel, not from the
32
+ GitHub repo, so the docs site otherwise wouldn't be discoverable from
33
+ pypi.org/project/agentprdiff).
34
+
35
+ ### Changed
36
+
37
+ - `pyproject.toml` `[project.urls]`: `Homepage` and `Documentation` now
38
+ point at the new MkDocs Material site (https://agentprdiff.dev).
39
+ `Repository` and `Issues` continue to point at GitHub. Added a
40
+ `Changelog` URL.
41
+ - `README.md`: prominent docs link in the header and pepy.tech download
42
+ badges (lifetime + monthly).
43
+
44
+ ### Internal
45
+
46
+ - Synced `agentprdiff.__version__` string with `pyproject.toml`'s
47
+ `version` field — was a leftover miss from the 0.2.3 release.
48
+
11
49
  ## [0.2.3] — 2026-04-28
12
50
 
13
51
  ### Added
@@ -1,11 +1,12 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: agentprdiff
3
- Version: 0.2.3
3
+ Version: 0.2.5
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://github.com/vnageshwaran-de/agentprdiff
6
- Project-URL: Documentation, https://github.com/vnageshwaran-de/agentprdiff#readme
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,16 +42,30 @@ 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/)** &nbsp;·&nbsp; ⚡ [Quickstart](https://agentprdiff.dev/quickstart/) &nbsp;·&nbsp; 🤖 [AI-agent adoption](https://agentprdiff.dev/quickstart/#path-a--let-an-ai-agent-adopt-the-package-for-you-recommended) &nbsp;·&nbsp; 📦 [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
47
50
  pip install agentprdiff
48
51
  ```
49
52
 
53
+ > **Don't have Python 3.10+ yet?** Step-by-step install instructions for
54
+ > [macOS, Windows, and Linux](https://agentprdiff.dev/installation/#install-python-310-first-if-you-dont-have-it).
55
+ >
56
+ > **Multiple Python versions on your machine?** If `pip install` reports
57
+ > `No matching distribution found` even after installing Python 3.10+,
58
+ > use `python3.12 -m pip install agentprdiff` (substitute your installed
59
+ > 3.10+ binary). Sidesteps `$PATH` confusion when Homebrew's Python and
60
+ > the system Python coexist. Full troubleshooting: [Installation guide](https://agentprdiff.dev/installation/).
61
+
50
62
  [![CI](https://github.com/vnageshwaran-de/agentprdiff/actions/workflows/ci.yml/badge.svg)](https://github.com/vnageshwaran-de/agentprdiff/actions/workflows/ci.yml)
51
63
  [![PyPI](https://img.shields.io/pypi/v/agentprdiff.svg)](https://pypi.org/project/agentprdiff/)
52
64
  [![Python](https://img.shields.io/pypi/pyversions/agentprdiff.svg)](https://pypi.org/project/agentprdiff/)
65
+ [![Downloads](https://static.pepy.tech/badge/agentprdiff)](https://pepy.tech/project/agentprdiff)
66
+ [![Downloads/month](https://static.pepy.tech/badge/agentprdiff/month)](https://pepy.tech/project/agentprdiff)
53
67
  [![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](https://github.com/vnageshwaran-de/agentprdiff/blob/main/LICENSE)
68
+ [![Docs](https://img.shields.io/badge/docs-agentprdiff.dev-blue)](https://agentprdiff.dev/)
54
69
 
55
70
  > **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
71
 
@@ -2,16 +2,30 @@
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/)** &nbsp;·&nbsp; ⚡ [Quickstart](https://agentprdiff.dev/quickstart/) &nbsp;·&nbsp; 🤖 [AI-agent adoption](https://agentprdiff.dev/quickstart/#path-a--let-an-ai-agent-adopt-the-package-for-you-recommended) &nbsp;·&nbsp; 📦 [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
8
10
  pip install agentprdiff
9
11
  ```
10
12
 
13
+ > **Don't have Python 3.10+ yet?** Step-by-step install instructions for
14
+ > [macOS, Windows, and Linux](https://agentprdiff.dev/installation/#install-python-310-first-if-you-dont-have-it).
15
+ >
16
+ > **Multiple Python versions on your machine?** If `pip install` reports
17
+ > `No matching distribution found` even after installing Python 3.10+,
18
+ > use `python3.12 -m pip install agentprdiff` (substitute your installed
19
+ > 3.10+ binary). Sidesteps `$PATH` confusion when Homebrew's Python and
20
+ > the system Python coexist. Full troubleshooting: [Installation guide](https://agentprdiff.dev/installation/).
21
+
11
22
  [![CI](https://github.com/vnageshwaran-de/agentprdiff/actions/workflows/ci.yml/badge.svg)](https://github.com/vnageshwaran-de/agentprdiff/actions/workflows/ci.yml)
12
23
  [![PyPI](https://img.shields.io/pypi/v/agentprdiff.svg)](https://pypi.org/project/agentprdiff/)
13
24
  [![Python](https://img.shields.io/pypi/pyversions/agentprdiff.svg)](https://pypi.org/project/agentprdiff/)
25
+ [![Downloads](https://static.pepy.tech/badge/agentprdiff)](https://pepy.tech/project/agentprdiff)
26
+ [![Downloads/month](https://static.pepy.tech/badge/agentprdiff/month)](https://pepy.tech/project/agentprdiff)
14
27
  [![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](https://github.com/vnageshwaran-de/agentprdiff/blob/main/LICENSE)
28
+ [![Docs](https://img.shields.io/badge/docs-agentprdiff.dev-blue)](https://agentprdiff.dev/)
15
29
 
16
30
  > **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
31
 
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "agentprdiff"
7
- version = "0.2.3"
7
+ version = "0.2.5"
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://github.com/vnageshwaran-de/agentprdiff"
56
- Documentation = "https://github.com/vnageshwaran-de/agentprdiff#readme"
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"
@@ -67,7 +67,7 @@ from .differ import AssertionChange, TraceDelta, diff_traces
67
67
  from .runner import CaseReport, Runner, RunReport
68
68
  from .store import BaselineStore
69
69
 
70
- __version__ = "0.2.2"
70
+ __version__ = "0.2.5"
71
71
 
72
72
  __all__ = [
73
73
  # core
File without changes
File without changes