@infinitedusky/indusk-mcp 1.2.3 → 1.2.5

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.
@@ -290,7 +290,7 @@ export async function extensionsUpdate(projectRoot, names) {
290
290
  }
291
291
  catch (e) {
292
292
  const err = e;
293
- const detail = err.stderr?.trim() || err.message || "unknown error";
293
+ const detail = String(err.stderr ?? err.message ?? "unknown error").trim();
294
294
  console.info(` ${name}: package update failed: ${detail}`);
295
295
  console.info(` ${name}: run manually: pnpm add ${pkg}@latest`);
296
296
  }
@@ -299,8 +299,9 @@ export async function extensionsUpdate(projectRoot, names) {
299
299
  await extensionsAdd(projectRoot, name, source);
300
300
  updated++;
301
301
  }
302
- catch {
303
- console.info(` ${name}: failed to read manifest`);
302
+ catch (e) {
303
+ const err = e;
304
+ console.info(` ${name}: failed to read manifest: ${err.message ?? "unknown"}`);
304
305
  }
305
306
  }
306
307
  if (updated === 0) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@infinitedusky/indusk-mcp",
3
- "version": "1.2.3",
3
+ "version": "1.2.5",
4
4
  "description": "InDusk development system — skills, MCP tools, and CLI for structured AI-assisted development",
5
5
  "type": "module",
6
6
  "files": [