Skip to content

Commit 0f246d1

Browse files
NagyViktNagyViktclaude
authored
fix(vscode-active-agents): correct publisher id to Recodee (#414)
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: NagyVikt <nagy.viktordp@gmail.com> Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 0752a7e commit 0f246d1

5 files changed

Lines changed: 8 additions & 8 deletions

File tree

templates/vscode/guardex-active-agents/extension.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ const ACTIVE_AGENTS_MANIFEST_RELATIVE = path.join('vscode', 'guardex-active-agen
3636
const ACTIVE_AGENTS_INSTALL_SCRIPT_RELATIVE = path.join('scripts', 'install-vscode-active-agents-extension.js');
3737
const RELOAD_WINDOW_ACTION = 'Reload Window';
3838
const UPDATE_LATER_ACTION = 'Later';
39-
const ACTIVE_AGENTS_EXTENSION_ID = 'recodeee.gitguardex-active-agents';
39+
const ACTIVE_AGENTS_EXTENSION_ID = 'Recodee.gitguardex-active-agents';
4040
const RESTART_EXTENSION_HOST_COMMAND = 'workbench.action.restartExtensionHost';
4141
const REFRESH_POLL_INTERVAL_MS = 30_000;
4242
const INSPECT_PANEL_VIEW_TYPE = 'gitguardex.activeAgents.inspect';

templates/vscode/guardex-active-agents/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "gitguardex-active-agents",
33
"displayName": "GitGuardex Active Agents",
44
"description": "Shows live Guardex sandbox sessions and repo changes in a dedicated VS Code Active Agents sidebar.",
5-
"publisher": "recodeee",
5+
"publisher": "Recodee",
66
"version": "0.0.19",
77
"license": "MIT",
88
"icon": "icon.png",
@@ -123,7 +123,7 @@
123123
"extension/context": [
124124
{
125125
"command": "gitguardex.activeAgents.restart",
126-
"when": "extension == recodeee.gitguardex-active-agents && extensionStatus == installed",
126+
"when": "extension == Recodee.gitguardex-active-agents && extensionStatus == installed",
127127
"group": "2_configure@2"
128128
}
129129
],

test/vscode-active-agents-session-state.test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1345,7 +1345,7 @@ test('active-agents manifest contributes restart actions for extension managemen
13451345
);
13461346
assert.deepEqual(restartExtensionAction, {
13471347
command: 'gitguardex.activeAgents.restart',
1348-
when: 'extension == recodeee.gitguardex-active-agents && extensionStatus == installed',
1348+
when: 'extension == Recodee.gitguardex-active-agents && extensionStatus == installed',
13491349
group: '2_configure@2',
13501350
});
13511351

@@ -1507,7 +1507,7 @@ test('active-agents restart command restarts the extension host for this extensi
15071507
extension.activate(context);
15081508
await flushAsyncWork();
15091509

1510-
await registrations.commands.get('gitguardex.activeAgents.restart')('recodeee.gitguardex-active-agents');
1510+
await registrations.commands.get('gitguardex.activeAgents.restart')('Recodee.gitguardex-active-agents');
15111511
await registrations.commands.get('gitguardex.activeAgents.restart')('someone.else');
15121512

15131513
const restartCalls = registrations.executedCommands.filter(

vscode/guardex-active-agents/extension.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ const ACTIVE_AGENTS_MANIFEST_RELATIVE = path.join('vscode', 'guardex-active-agen
3636
const ACTIVE_AGENTS_INSTALL_SCRIPT_RELATIVE = path.join('scripts', 'install-vscode-active-agents-extension.js');
3737
const RELOAD_WINDOW_ACTION = 'Reload Window';
3838
const UPDATE_LATER_ACTION = 'Later';
39-
const ACTIVE_AGENTS_EXTENSION_ID = 'recodeee.gitguardex-active-agents';
39+
const ACTIVE_AGENTS_EXTENSION_ID = 'Recodee.gitguardex-active-agents';
4040
const RESTART_EXTENSION_HOST_COMMAND = 'workbench.action.restartExtensionHost';
4141
const REFRESH_POLL_INTERVAL_MS = 30_000;
4242
const INSPECT_PANEL_VIEW_TYPE = 'gitguardex.activeAgents.inspect';

vscode/guardex-active-agents/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "gitguardex-active-agents",
33
"displayName": "GitGuardex Active Agents",
44
"description": "Shows live Guardex sandbox sessions and repo changes in a dedicated VS Code Active Agents sidebar.",
5-
"publisher": "recodeee",
5+
"publisher": "Recodee",
66
"version": "0.0.19",
77
"license": "MIT",
88
"icon": "icon.png",
@@ -123,7 +123,7 @@
123123
"extension/context": [
124124
{
125125
"command": "gitguardex.activeAgents.restart",
126-
"when": "extension == recodeee.gitguardex-active-agents && extensionStatus == installed",
126+
"when": "extension == Recodee.gitguardex-active-agents && extensionStatus == installed",
127127
"group": "2_configure@2"
128128
}
129129
],

0 commit comments

Comments
 (0)