Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion templates/vscode/guardex-active-agents/extension.js
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down
4 changes: 2 additions & 2 deletions templates/vscode/guardex-active-agents/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -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"
}
],
Expand Down
4 changes: 2 additions & 2 deletions test/vscode-active-agents-session-state.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -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',
});

Expand Down Expand Up @@ -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(
Expand Down
2 changes: 1 addition & 1 deletion vscode/guardex-active-agents/extension.js
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down
4 changes: 2 additions & 2 deletions vscode/guardex-active-agents/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -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"
}
],
Expand Down
Loading