Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 13 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
`[invariants]` knobs; config sections ignore unknown keys, so
forward-compatible `agentdiff.toml` files load cleanly.

### Changed
- **Repository moved to the `kerrshift` organization**: canonical URLs now
point to `github.com/kerrshift/agentdiff` — package metadata
(`pyproject.toml` Homepage/Repository), README badge + clone link, the
baseline-envelope schema `$id`, and the docs link in `agentdiff init`
generated workflows. Reusable-action references are now
`kerrshift/agentdiff/.github/actions/agentdiff-check`; old
`lostmartian/agentdiff` URLs continue to work via GitHub redirects.

## [0.4.0] - 2026-08-28

AgentDiff v0.4.0 — trace capture, Goodhart-resistant gating, and a full docs
Expand Down Expand Up @@ -247,9 +256,9 @@ natively (no caller-side reshaping).
### Documentation
- README/cookbook guides updated for the live adapter recipes.

[0.2.1]: https://github.com/lostmartian/agentdiff/releases/tag/v0.2.1
[0.3.0]: https://github.com/lostmartian/agentdiff/releases/tag/v0.3.0
[0.2.2]: https://github.com/lostmartian/agentdiff/releases/tag/v0.2.2
[0.2.1]: https://github.com/kerrshift/agentdiff/releases/tag/v0.2.1
[0.3.0]: https://github.com/kerrshift/agentdiff/releases/tag/v0.3.0
[0.2.2]: https://github.com/kerrshift/agentdiff/releases/tag/v0.2.2

## [0.2.0] - 2026-08-19

Expand Down Expand Up @@ -293,4 +302,4 @@ regression engine for multi-turn, tool-using AI agents.
- Requires Python 3.10+.
- Licensed under MIT.

[0.2.0]: https://github.com/lostmartian/agentdiff/releases/tag/v0.2.0
[0.2.0]: https://github.com/kerrshift/agentdiff/releases/tag/v0.2.0
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
**Catch silent cost surges and broken agent loops before they ship.**

<p align="center">
<a href="https://github.com/lostmartian/agentdiff/actions/workflows/ci.yml"><img src="https://github.com/lostmartian/agentdiff/actions/workflows/ci.yml/badge.svg" alt="CI Build" /></a>
<a href="https://github.com/kerrshift/agentdiff/actions/workflows/ci.yml"><img src="https://github.com/kerrshift/agentdiff/actions/workflows/ci.yml/badge.svg" alt="CI Build" /></a>
<a href="https://pypi.org/project/agent-trajectory-diff/"><img src="https://img.shields.io/pypi/v/agent-trajectory-diff.svg?color=10b981" alt="PyPI version" /></a>
<a href="https://pypi.org/project/agent-trajectory-diff/"><img src="https://img.shields.io/badge/python-3.10%20%7C%203.11%20%7C%203.12%20%7C%203.13-blue.svg" alt="Python Versions" /></a>
<a href="https://github.com/astral-sh/ruff"><img src="https://img.shields.io/badge/code%20style-ruff-000000.svg" alt="Code Style: Ruff" /></a>
Expand Down Expand Up @@ -174,7 +174,7 @@ jobs:
with:
python-version: "3.11"

- uses: lostmartian/agentdiff/.github/actions/agentdiff-check@v0.2.2
- uses: kerrshift/agentdiff/.github/actions/agentdiff-check@v0.2.2
with:
baseline: baselines/golden.json
candidate: traces/pr_candidate.json
Expand Down Expand Up @@ -245,7 +245,7 @@ This repository uses [`uv`](https://docs.astral.sh/uv/) for lightning-fast envir

```bash
# Clone the repository
git clone https://github.com/lostmartian/agentdiff.git
git clone https://github.com/kerrshift/agentdiff.git
cd agentdiff

# Install dependencies and sync virtualenv
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ agentdiff = "agentdiff.cli:main"
agentdiff = "agentdiff.pytest_plugin"

[project.urls]
Homepage = "https://github.com/lostmartian/agentdiff"
Repository = "https://github.com/lostmartian/agentdiff"
Homepage = "https://github.com/kerrshift/agentdiff"
Repository = "https://github.com/kerrshift/agentdiff"

[dependency-groups]
dev = [
Expand Down
2 changes: 1 addition & 1 deletion schema/baseline_envelope.schema.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://github.com/lostmartian/agentdiff/schema/baseline_envelope.schema.json",
"$id": "https://github.com/kerrshift/agentdiff/schema/baseline_envelope.schema.json",
"title": "AgentDiff Baseline Envelope",
"description": "Statistical baseline over N >= 1 recorded agent runs (v2 baseline format). Wraps canonical AgentTrace runs; never alters them. A v1 single-trace baseline loads as an envelope with N=1 and mode=strict.",
"type": "object",
Expand Down
2 changes: 1 addition & 1 deletion src/agentdiff/init_wizard.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def detect_framework() -> FrameworkInfo:

TOML_TEMPLATE = """\
# AgentDiff configuration — generated by `agentdiff init`.
# Docs: https://github.com/lostmartian/agentdiff
# Docs: https://github.com/kerrshift/agentdiff

[compare]
detect_loops = true
Expand Down
Loading