From 60ff8c5f12ea20ef1299f958aed9b1a43cdb5900 Mon Sep 17 00:00:00 2001 From: NagyVikt Date: Fri, 24 Apr 2026 12:09:33 +0200 Subject: [PATCH] fix(vscode-active-agents): correct publisher id to Recodee Marketplace publisher is 'Recodee' (two e's); manifest still spelled 'recodeee' which blocked the first upload with: "Publisher ID 'recodeee' provided in the extension manifest should match the publisher ID 'Recodee' under which you are trying to publish this extension." Rename the publisher + the fully-qualified extension id (Recodee.gitguardex-active-agents) in both the live manifest and the template copy, update the extension.js constant, and update the matching assertion in the session-state test. Co-Authored-By: Claude Opus 4.7 (1M context) --- templates/vscode/guardex-active-agents/extension.js | 2 +- templates/vscode/guardex-active-agents/package.json | 4 ++-- test/vscode-active-agents-session-state.test.js | 4 ++-- vscode/guardex-active-agents/extension.js | 2 +- vscode/guardex-active-agents/package.json | 4 ++-- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/templates/vscode/guardex-active-agents/extension.js b/templates/vscode/guardex-active-agents/extension.js index 0745fc1..ba5a43e 100644 --- a/templates/vscode/guardex-active-agents/extension.js +++ b/templates/vscode/guardex-active-agents/extension.js @@ -36,7 +36,7 @@ const ACTIVE_AGENTS_MANIFEST_RELATIVE = path.join('vscode', 'guardex-active-agen const ACTIVE_AGENTS_INSTALL_SCRIPT_RELATIVE = path.join('scripts', 'install-vscode-active-agents-extension.js'); const RELOAD_WINDOW_ACTION = 'Reload Window'; const UPDATE_LATER_ACTION = 'Later'; -const ACTIVE_AGENTS_EXTENSION_ID = 'recodeee.gitguardex-active-agents'; +const ACTIVE_AGENTS_EXTENSION_ID = 'Recodee.gitguardex-active-agents'; const RESTART_EXTENSION_HOST_COMMAND = 'workbench.action.restartExtensionHost'; const REFRESH_POLL_INTERVAL_MS = 30_000; const INSPECT_PANEL_VIEW_TYPE = 'gitguardex.activeAgents.inspect'; diff --git a/templates/vscode/guardex-active-agents/package.json b/templates/vscode/guardex-active-agents/package.json index 389ed61..5071b33 100644 --- a/templates/vscode/guardex-active-agents/package.json +++ b/templates/vscode/guardex-active-agents/package.json @@ -2,7 +2,7 @@ "name": "gitguardex-active-agents", "displayName": "GitGuardex Active Agents", "description": "Shows live Guardex sandbox sessions and repo changes in a dedicated VS Code Active Agents sidebar.", - "publisher": "recodeee", + "publisher": "Recodee", "version": "0.0.19", "license": "MIT", "icon": "icon.png", @@ -123,7 +123,7 @@ "extension/context": [ { "command": "gitguardex.activeAgents.restart", - "when": "extension == recodeee.gitguardex-active-agents && extensionStatus == installed", + "when": "extension == Recodee.gitguardex-active-agents && extensionStatus == installed", "group": "2_configure@2" } ], diff --git a/test/vscode-active-agents-session-state.test.js b/test/vscode-active-agents-session-state.test.js index a3b81ae..b767792 100644 --- a/test/vscode-active-agents-session-state.test.js +++ b/test/vscode-active-agents-session-state.test.js @@ -1345,7 +1345,7 @@ test('active-agents manifest contributes restart actions for extension managemen ); assert.deepEqual(restartExtensionAction, { command: 'gitguardex.activeAgents.restart', - when: 'extension == recodeee.gitguardex-active-agents && extensionStatus == installed', + when: 'extension == Recodee.gitguardex-active-agents && extensionStatus == installed', group: '2_configure@2', }); @@ -1507,7 +1507,7 @@ test('active-agents restart command restarts the extension host for this extensi extension.activate(context); await flushAsyncWork(); - await registrations.commands.get('gitguardex.activeAgents.restart')('recodeee.gitguardex-active-agents'); + await registrations.commands.get('gitguardex.activeAgents.restart')('Recodee.gitguardex-active-agents'); await registrations.commands.get('gitguardex.activeAgents.restart')('someone.else'); const restartCalls = registrations.executedCommands.filter( diff --git a/vscode/guardex-active-agents/extension.js b/vscode/guardex-active-agents/extension.js index 34a4b97..4cd6e4b 100644 --- a/vscode/guardex-active-agents/extension.js +++ b/vscode/guardex-active-agents/extension.js @@ -36,7 +36,7 @@ const ACTIVE_AGENTS_MANIFEST_RELATIVE = path.join('vscode', 'guardex-active-agen const ACTIVE_AGENTS_INSTALL_SCRIPT_RELATIVE = path.join('scripts', 'install-vscode-active-agents-extension.js'); const RELOAD_WINDOW_ACTION = 'Reload Window'; const UPDATE_LATER_ACTION = 'Later'; -const ACTIVE_AGENTS_EXTENSION_ID = 'recodeee.gitguardex-active-agents'; +const ACTIVE_AGENTS_EXTENSION_ID = 'Recodee.gitguardex-active-agents'; const RESTART_EXTENSION_HOST_COMMAND = 'workbench.action.restartExtensionHost'; const REFRESH_POLL_INTERVAL_MS = 30_000; const INSPECT_PANEL_VIEW_TYPE = 'gitguardex.activeAgents.inspect'; diff --git a/vscode/guardex-active-agents/package.json b/vscode/guardex-active-agents/package.json index 389ed61..5071b33 100644 --- a/vscode/guardex-active-agents/package.json +++ b/vscode/guardex-active-agents/package.json @@ -2,7 +2,7 @@ "name": "gitguardex-active-agents", "displayName": "GitGuardex Active Agents", "description": "Shows live Guardex sandbox sessions and repo changes in a dedicated VS Code Active Agents sidebar.", - "publisher": "recodeee", + "publisher": "Recodee", "version": "0.0.19", "license": "MIT", "icon": "icon.png", @@ -123,7 +123,7 @@ "extension/context": [ { "command": "gitguardex.activeAgents.restart", - "when": "extension == recodeee.gitguardex-active-agents && extensionStatus == installed", + "when": "extension == Recodee.gitguardex-active-agents && extensionStatus == installed", "group": "2_configure@2" } ],