Skip to content

Commit 87e4ada

Browse files
Release prep
1 parent 30d099a commit 87e4ada

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

examples/too_many_cooks_vscode_extension/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "too-many-cooks",
33
"displayName": "Too Many Cooks",
44
"description": "Visualize multi-agent coordination - see file locks, messages, and plans across AI agents working on your codebase",
5-
"version": "0.1.0",
5+
"version": "0.2.0",
66
"publisher": "Nimblesite",
77
"license": "MIT",
88
"icon": "media/icons/chef-128.png",

examples/too_many_cooks_vscode_extension/src/test/suite/extension-activation.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ suite('Extension Activation', () => {
1313
});
1414

1515
test('Extension is present and can be activated', async () => {
16-
const extension = vscode.extensions.getExtension('dart-node.too-many-cooks');
16+
const extension = vscode.extensions.getExtension('Nimblesite.too-many-cooks');
1717
assert.ok(extension, 'Extension should be present');
1818
assert.ok(extension.isActive, 'Extension should be active');
1919
});

examples/too_many_cooks_vscode_extension/src/test/test-helpers.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export const waitForCondition = async (
4646
export async function waitForExtensionActivation(): Promise<void> {
4747
console.log('[TEST HELPER] Starting extension activation wait...');
4848

49-
const extension = vscode.extensions.getExtension('dart-node.too-many-cooks');
49+
const extension = vscode.extensions.getExtension('Nimblesite.too-many-cooks');
5050
if (!extension) {
5151
throw new Error('Extension not found - check publisher name in package.json');
5252
}

0 commit comments

Comments
 (0)