From a031c8d32dbc5130a1659d18d81f2843a960d629 Mon Sep 17 00:00:00 2001
From: AgentSeal
Date: Sat, 18 Apr 2026 14:55:44 -0700
Subject: [PATCH] chore: point repo URLs at getagentseal org (#97)
Add package.json repository/bugs/homepage fields. Swap hardcoded
AgentSeal/codeburn URLs to getagentseal/codeburn across README,
mac README, macOS menubar star banner, and the menubar installer's
release-API endpoint. 301 redirects keep old URLs working, but
canonical links now point at the current org.
Co-authored-by: AgentSeal
---
README.md | 12 ++++++------
mac/README.md | 2 +-
.../CodeBurnMenubar/Views/MenuBarContent.swift | 2 +-
package.json | 8 ++++++++
src/menubar-installer.ts | 4 ++--
5 files changed, 18 insertions(+), 10 deletions(-)
diff --git a/README.md b/README.md
index 79aa754..a88949d 100644
--- a/README.md
+++ b/README.md
@@ -1,5 +1,5 @@
-
+
CodeBurn
@@ -11,12 +11,12 @@
-
-
+
+
-
+
By task type, tool, model, MCP server, and project. Supports **Claude Code**, **Codex** (OpenAI), **Cursor**, **OpenCode**, **Pi**, and **GitHub Copilot** with a provider plugin system. Tracks one-shot success rate per activity type so you can see where the AI nails it first try vs. burns tokens on edit/test/fix retries. Interactive TUI dashboard with gradient charts, responsive panels, and keyboard navigation. Native macOS menubar app in `mac/`. CSV/JSON export.
@@ -156,7 +156,7 @@ The menu bar widget includes a currency picker with 17 common currencies. For an
## Menu Bar
-
+
```bash
npx codeburn menubar
@@ -212,7 +212,7 @@ These are starting points, not verdicts. A 60% cache hit on a single experimenta
Once you know what to look for, `codeburn optimize` scans your sessions and your `~/.claude/` setup for the most common waste patterns and hands back exact, copy-paste fixes. It never writes to your files.
-
+
```bash
diff --git a/mac/README.md b/mac/README.md
index 4d3e2ae..3a7f1d7 100644
--- a/mac/README.md
+++ b/mac/README.md
@@ -26,7 +26,7 @@ For contributors running a local build instead of the packaged release:
```bash
npm install -g codeburn # CLI the app shells out to for data
-git clone https://github.com/AgentSeal/codeburn.git
+git clone https://github.com/getagentseal/codeburn.git
cd codeburn/mac
swift build -c release
.build/release/CodeBurnMenubar # launch
diff --git a/mac/Sources/CodeBurnMenubar/Views/MenuBarContent.swift b/mac/Sources/CodeBurnMenubar/Views/MenuBarContent.swift
index a07532d..a295067 100644
--- a/mac/Sources/CodeBurnMenubar/Views/MenuBarContent.swift
+++ b/mac/Sources/CodeBurnMenubar/Views/MenuBarContent.swift
@@ -221,7 +221,7 @@ struct FlameMark: View {
}
}
-private let starBannerGitHubURL = URL(string: "https://github.com/AgentSeal/codeburn")!
+private let starBannerGitHubURL = URL(string: "https://github.com/getagentseal/codeburn")!
/// Shown at the very bottom on first launch. A small terracotta strip nudges users to star the
/// repo; clicking opens GitHub, clicking the close icon hides it forever (persisted to
diff --git a/package.json b/package.json
index 3820034..f7aa295 100644
--- a/package.json
+++ b/package.json
@@ -33,6 +33,14 @@
},
"author": "AgentSeal ",
"license": "MIT",
+ "repository": {
+ "type": "git",
+ "url": "git+https://github.com/getagentseal/codeburn.git"
+ },
+ "bugs": {
+ "url": "https://github.com/getagentseal/codeburn/issues"
+ },
+ "homepage": "https://github.com/getagentseal/codeburn#readme",
"dependencies": {
"chalk": "^5.4.1",
"commander": "^13.1.0",
diff --git a/src/menubar-installer.ts b/src/menubar-installer.ts
index 53265c5..3557141 100644
--- a/src/menubar-installer.ts
+++ b/src/menubar-installer.ts
@@ -8,7 +8,7 @@ import { Readable } from 'node:stream'
/// Public GitHub repo that hosts signed macOS release builds. `/releases/latest` returns the
/// newest tagged release; we filter its assets list for our zipped .app bundle.
-const RELEASE_API = 'https://api.github.com/repos/AgentSeal/codeburn/releases/latest'
+const RELEASE_API = 'https://api.github.com/repos/getagentseal/codeburn/releases/latest'
const APP_BUNDLE_NAME = 'CodeBurnMenubar.app'
const ASSET_PATTERN = /^CodeBurnMenubar-.*\.zip$/
const APP_PROCESS_NAME = 'CodeBurnMenubar'
@@ -73,7 +73,7 @@ async function fetchLatestReleaseAsset(): Promise {
if (!asset) {
throw new Error(
`No ${APP_BUNDLE_NAME} zip found in release ${body.tag_name}. ` +
- `Check https://github.com/AgentSeal/codeburn/releases.`
+ `Check https://github.com/getagentseal/codeburn/releases.`
)
}
return asset