From b1519a5a4e4f1a4034214a6a90cdffd5e38fe6c1 Mon Sep 17 00:00:00 2001 From: lostmartian Date: Tue, 1 Sep 2026 23:12:57 +0530 Subject: [PATCH] chore(repo): update canonical URLs for kerrshift org transfer --- CHANGELOG.md | 17 +++++++++++++---- README.md | 6 +++--- pyproject.toml | 4 ++-- schema/baseline_envelope.schema.json | 2 +- src/agentdiff/init_wizard.py | 2 +- 5 files changed, 20 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index df5c3984..eb2afebb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 @@ -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 @@ -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 \ No newline at end of file +[0.2.0]: https://github.com/kerrshift/agentdiff/releases/tag/v0.2.0 \ No newline at end of file diff --git a/README.md b/README.md index da577d55..3e5805ce 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ **Catch silent cost surges and broken agent loops before they ship.**

- CI Build + CI Build PyPI version Python Versions Code Style: Ruff @@ -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 @@ -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 diff --git a/pyproject.toml b/pyproject.toml index 9cc80d38..066203ec 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 = [ diff --git a/schema/baseline_envelope.schema.json b/schema/baseline_envelope.schema.json index 7fa4d208..0dfacda1 100644 --- a/schema/baseline_envelope.schema.json +++ b/schema/baseline_envelope.schema.json @@ -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", diff --git a/src/agentdiff/init_wizard.py b/src/agentdiff/init_wizard.py index 487f74bf..571ba646 100644 --- a/src/agentdiff/init_wizard.py +++ b/src/agentdiff/init_wizard.py @@ -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