From 77ea122dc92f10bfdf067a2f5d98799adc4371b3 Mon Sep 17 00:00:00 2001 From: RCLL Date: Fri, 28 Aug 2026 15:33:53 +0300 Subject: [PATCH] =?UTF-8?q?fix(npm):=20canonical=20GitHub=20org=20case=20i?= =?UTF-8?q?n=20repository.url=20=E2=80=94=20npm=20rejects=20provenance=20o?= =?UTF-8?q?n=20case=20mismatch?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit npm publish --provenance failed with E422: the registry compares package.json repository.url against the OIDC provenance claim BYTE-FOR-BYTE. "holetron-lab" vs GitHub-canonical "Holetron-lab" is a hard reject, not cosmetics. Do not lowercase these again. Also drops the "./" from bin — npm rewrites it on publish anyway and prints a warning that reads like the bin was dropped. --- mcp-server/package.json | 6 +++--- server.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/mcp-server/package.json b/mcp-server/package.json index 31a7f91a..45916a45 100644 --- a/mcp-server/package.json +++ b/mcp-server/package.json @@ -6,15 +6,15 @@ "homepage": "https://rcll.ai", "repository": { "type": "git", - "url": "git+https://github.com/holetron-lab/fleet-memory.git" + "url": "git+https://github.com/Holetron-lab/fleet-memory.git" }, "bugs": { - "url": "https://github.com/holetron-lab/fleet-memory/issues" + "url": "https://github.com/Holetron-lab/fleet-memory/issues" }, "type": "module", "main": "server.js", "bin": { - "fleet-memory-mcp": "./server.js" + "fleet-memory-mcp": "server.js" }, "scripts": { "start": "node server.js" diff --git a/server.json b/server.json index 8be14b01..ee8ec449 100644 --- a/server.json +++ b/server.json @@ -6,7 +6,7 @@ "version": "0.1.0", "websiteUrl": "https://rcll.ai", "repository": { - "url": "https://github.com/holetron-lab/fleet-memory", + "url": "https://github.com/Holetron-lab/fleet-memory", "source": "github", "id": "1344503808" },