From 0ef5b3e7c8afcd8440860523365f70fae6aff653 Mon Sep 17 00:00:00 2001
From: reesebuilt <126643625+reesepj@users.noreply.github.com>
Date: Wed, 5 Aug 2026 16:03:41 -0500
Subject: [PATCH] Use the canonical account name, not a redirect
The account was renamed and the old name is now UNCLAIMED, not a permanent
alias. GitHub frees a renamed username immediately, so every redirect dies the
moment anyone registers it.
Two of these were live risks rather than cosmetics:
verifier/go.mod declared the module as github.com/
-
+
@@ -56,19 +56,19 @@ The rest of the limits are in [Limits](#limits). They are not footnotes.
Linux, Node.js 22.12 or newer. Verified on Node 24.14.1.
```bash
-npm install -g @reesebuilt/agentwall
+npm install -g @repsecure/agentwall
agentwall init --mode monitor
agentwall doctor
```
The npm package named `agentwall`, without a scope, is a different and unrelated project. This
-one is `@reesebuilt/agentwall`; the command it installs is `agentwall`.
+one is `@repsecure/agentwall`; the command it installs is `agentwall`.
From a checkout instead:
```bash
-git clone https://github.com/reesebuilt/agentwall.git
+git clone https://github.com/repsecure/agentwall.git
cd agentwall
npm install
npm run build
@@ -250,7 +250,7 @@ go list -m all
```
```
-github.com/reesebuilt/agentwall/verifier
+github.com/repsecure/agentwall/verifier
```
One line, and it is this module. SHA-256, Ed25519, SPKI parsing, and JSON all come from the Go
diff --git a/docs/install.md b/docs/install.md
index b7539e6..f4d5946 100644
--- a/docs/install.md
+++ b/docs/install.md
@@ -12,7 +12,7 @@
## Local source install
```bash
-git clone https://github.com/reesebuilt/agentwall
+git clone https://github.com/repsecure/agentwall
cd agentwall
npm install
npm run build
diff --git a/package-lock.json b/package-lock.json
index 3b2231e..4d93db7 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,11 +1,11 @@
{
- "name": "@reesebuilt/agentwall",
+ "name": "@repsecure/agentwall",
"version": "0.2.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
- "name": "@reesebuilt/agentwall",
+ "name": "@repsecure/agentwall",
"version": "0.2.0",
"license": "Apache-2.0",
"dependencies": {
diff --git a/package.json b/package.json
index fa75c6e..2941334 100644
--- a/package.json
+++ b/package.json
@@ -1,14 +1,14 @@
{
- "name": "@reesebuilt/agentwall",
+ "name": "@repsecure/agentwall",
"version": "0.2.0",
"description": "Agentwall: provenance-aware policy enforcement for agent egress, tools, content, and approvals",
- "homepage": "https://github.com/reesebuilt/agentwall#readme",
+ "homepage": "https://github.com/repsecure/agentwall#readme",
"bugs": {
- "url": "https://github.com/reesebuilt/agentwall/issues"
+ "url": "https://github.com/repsecure/agentwall/issues"
},
"repository": {
"type": "git",
- "url": "git+https://github.com/reesebuilt/agentwall.git"
+ "url": "git+https://github.com/repsecure/agentwall.git"
},
"main": "dist/index.js",
"scripts": {
diff --git a/verifier/README.md b/verifier/README.md
index f7b8119..da43ef4 100644
--- a/verifier/README.md
+++ b/verifier/README.md
@@ -35,7 +35,7 @@ the FORMAT.
Zero third party dependencies is a property you check rather than a claim you accept:
cd verifier && go list -m all
- github.com/reesebuilt/agentwall/verifier
+ github.com/repsecure/agentwall/verifier
One line, and it is this module. SHA-256, Ed25519, SPKI parsing, and JSON all come from the Go
standard library, maintained by the Go security team, so a reader auditing this verifier reads this
diff --git a/verifier/go.mod b/verifier/go.mod
index 402e8c3..0e394ea 100644
--- a/verifier/go.mod
+++ b/verifier/go.mod
@@ -1,3 +1,3 @@
-module github.com/reesebuilt/agentwall/verifier
+module github.com/repsecure/agentwall/verifier
go 1.22