From 84b8712977aa62ab298565db4e930f1e381c6367 Mon Sep 17 00:00:00 2001
From: macanderson
Date: Sat, 18 Jul 2026 19:27:42 -0700
Subject: [PATCH] chore: update GitHub repo URLs from oxageninc to macanderson
org
The arena and stella repositories moved from the oxageninc org to the
macanderson account; point all badges, links, and package metadata at
the new home.
Co-Authored-By: Claude Fable 5
---
.github/ISSUE_TEMPLATE/config.yml | 2 +-
CHANGELOG.md | 4 ++--
CONTRIBUTING.md | 4 ++--
README.md | 10 +++++-----
SECURITY.md | 2 +-
harbor/pyproject.toml | 4 ++--
package.json | 2 +-
web/index.html | 10 +++++-----
8 files changed, 19 insertions(+), 19 deletions(-)
diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml
index 0ee3cf4..ec8d3ec 100644
--- a/.github/ISSUE_TEMPLATE/config.yml
+++ b/.github/ISSUE_TEMPLATE/config.yml
@@ -1,5 +1,5 @@
blank_issues_enabled: false
contact_links:
- name: Security vulnerability (private report)
- url: https://github.com/oxageninc/arena/security/advisories/new
+ url: https://github.com/macanderson/arena/security/advisories/new
about: Report security issues privately via GitHub Security Advisories — do NOT open a public issue. See SECURITY.md.
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 81d2219..365d5a9 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -52,5 +52,5 @@ CLIs, engineered to survive scrutiny.
Dependabot, and a dependency-review gate that blocks known-vulnerable PRs.
- `SECURITY.md` with a private vulnerability reporting channel.
-[Unreleased]: https://github.com/oxageninc/arena/compare/5122005...HEAD
-[0.1.0]: https://github.com/oxageninc/arena/releases/tag/v0.1.0
+[Unreleased]: https://github.com/macanderson/arena/compare/5122005...HEAD
+[0.1.0]: https://github.com/macanderson/arena/releases/tag/v0.1.0
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 2360e59..c699f7d 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -8,7 +8,7 @@ each undermine the one thing the project exists to provide.
## Before you write code
-- **Search [open issues](https://github.com/oxageninc/arena/issues) first** —
+- **Search [open issues](https://github.com/macanderson/arena/issues) first** —
someone may already be on it.
- For anything non-trivial (new adapter, new task, stat/report change), **open
an issue** and sketch the approach before investing in code. A 5-minute
@@ -21,7 +21,7 @@ each undermine the one thing the project exists to provide.
Arena needs **Node 22+** and **pnpm** (the CI pins pnpm 11):
```bash
-git clone https://github.com/oxageninc/arena
+git clone https://github.com/macanderson/arena
cd arena
pnpm install
pnpm typecheck
diff --git a/README.md b/README.md
index e736e4f..d725e70 100644
--- a/README.md
+++ b/README.md
@@ -5,16 +5,16 @@
# Arena
-[](https://github.com/oxageninc/arena/actions/workflows/ci.yml)
+[](https://github.com/macanderson/arena/actions/workflows/ci.yml)
[](LICENSE)
-[](https://scorecard.dev/viewer/?uri=github.com/oxageninc/arena)
+[](https://scorecard.dev/viewer/?uri=github.com/macanderson/arena)
**Head-to-head benchmarks for agentic coding CLIs — built to survive scrutiny.** · [arena.oxagen.sh](https://arena.oxagen.sh)
-Arena runs two or more coding agents (Claude Code, Gemini CLI, [Oxagen](https://oxagen.sh), [Stella](https://github.com/oxageninc/stella), or your own) on the **same tasks, same model, same budget, same timeout**, grades them with **held-out tests the agent can never see or author**, and reports each metric separately with real statistics and full receipts.
+Arena runs two or more coding agents (Claude Code, Gemini CLI, [Oxagen](https://oxagen.sh), [Stella](https://github.com/macanderson/stella), or your own) on the **same tasks, same model, same budget, same timeout**, grades them with **held-out tests the agent can never see or author**, and reports each metric separately with real statistics and full receipts.
```bash
-git clone https://github.com/oxageninc/arena
+git clone https://github.com/macanderson/arena
cd arena && pnpm install
pnpm arena doctor # which agent CLIs are installed?
@@ -139,7 +139,7 @@ Contributions welcome — see [CONTRIBUTING.md](CONTRIBUTING.md) (adding an
adapter or task fixture is a great first PR). We also have a
[Code of Conduct](.github/CODE_OF_CONDUCT.md) and a
[changelog](CHANGELOG.md). Report security issues privately via the repo's
-[Security tab](https://github.com/oxageninc/arena/security/advisories/new) — not
+[Security tab](https://github.com/macanderson/arena/security/advisories/new) — not
as a public issue.
MIT © Mac Anderson
diff --git a/SECURITY.md b/SECURITY.md
index 9b3fe59..cea5ebc 100644
--- a/SECURITY.md
+++ b/SECURITY.md
@@ -4,7 +4,7 @@
Please **do not** open a public issue for security vulnerabilities.
-Report privately via GitHub's [**Report a vulnerability**](https://github.com/oxageninc/arena/security/advisories/new) button on the repository's Security tab (Security → Advisories → Report a vulnerability). This opens a private channel with the maintainers.
+Report privately via GitHub's [**Report a vulnerability**](https://github.com/macanderson/arena/security/advisories/new) button on the repository's Security tab (Security → Advisories → Report a vulnerability). This opens a private channel with the maintainers.
We aim to acknowledge reports within 3 business days and to ship a fix or mitigation for confirmed high-severity issues as quickly as is practical. We'll coordinate a disclosure timeline with you and credit you in the advisory unless you prefer otherwise.
diff --git a/harbor/pyproject.toml b/harbor/pyproject.toml
index f4d0907..de11f10 100644
--- a/harbor/pyproject.toml
+++ b/harbor/pyproject.toml
@@ -29,8 +29,8 @@ dependencies = [
dev = ["pytest>=7.0", "pytest-asyncio>=0.21", "ruff>=0.8"]
[project.urls]
-Homepage = "https://github.com/oxageninc/arena"
-Repository = "https://github.com/oxageninc/arena"
+Homepage = "https://github.com/macanderson/arena"
+Repository = "https://github.com/macanderson/arena"
[tool.setuptools]
packages = ["arena_harbor"]
diff --git a/package.json b/package.json
index d89b2eb..33d714e 100644
--- a/package.json
+++ b/package.json
@@ -6,7 +6,7 @@
"type": "module",
"repository": {
"type": "git",
- "url": "https://github.com/oxageninc/arena.git"
+ "url": "https://github.com/macanderson/arena.git"
},
"keywords": [
"benchmark",
diff --git a/web/index.html b/web/index.html
index 1921f3d..ba595f0 100644
--- a/web/index.html
+++ b/web/index.html
@@ -32,7 +32,7 @@
Method
Agents
Harbor
- GitHub
+ GitHub
@@ -54,12 +54,12 @@ Head-to-head benchmarks for agentic coding CLIs — built to survive scrutin
is reported separately, with real statistics and full receipts.
# the only comparison that isolates the harness: same model everywhere
-$ git clone https://github.com/oxageninc/arena && cd arena && pnpm install
+$ git clone https://github.com/macanderson/arena && cd arena && pnpm install
$ pnpm arena run --agents oxagen,claude-code \
--model anthropic/claude-sonnet-5 --trials 3 --budget 5
$ open results/run-*/report.md
@@ -317,7 +317,7 @@
Before you publish a number