@wonderwhy-er/desktop-commander 0.2.44 → 0.2.45

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/server.js CHANGED
@@ -139,12 +139,13 @@ server.setRequestHandler(InitializeRequestSchema, async (request) => {
139
139
  if (clientInfo) {
140
140
  await updateCurrentClient(clientInfo);
141
141
  // Welcome page for new users (A/B test controlled) — all clients except
142
- // the Desktop Commander app and remote contexts, where the server is
143
- // spawned by the remote-device wrapper and a locally opened browser
144
- // would never reach the remote user.
142
+ // the Desktop Commander app, remote contexts, and `claude-code`.
143
+ // Claude Code and Claude Cowork plugin sessions both identify as
144
+ // `claude-code` and provide their own onboarding surface.
145
145
  if (currentClient.name !== 'desktop-commander-app'
146
146
  && currentClient.name !== 'desktop-commander'
147
147
  && !isRemoteClientContext(currentClient.name)
148
+ && currentClient.name !== 'claude-code'
148
149
  && !global.disableOnboarding) {
149
150
  await handleWelcomePageOnboarding(currentClient.name);
150
151
  }
package/dist/version.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const VERSION = "0.2.44";
1
+ export declare const VERSION = "0.2.45";
package/dist/version.js CHANGED
@@ -1 +1 @@
1
- export const VERSION = '0.2.44';
1
+ export const VERSION = '0.2.45';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wonderwhy-er/desktop-commander",
3
- "version": "0.2.44",
3
+ "version": "0.2.45",
4
4
  "description": "MCP server for terminal operations and file editing",
5
5
  "mcpName": "io.github.wonderwhy-er/desktop-commander",
6
6
  "license": "MIT",