html2pptx-local-mcp 1.1.29 → 1.1.32

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.
@@ -10,12 +10,17 @@ import {
10
10
  localSlideEditorManager,
11
11
  readRegisteredEditorBaseUrl,
12
12
  } from '../lib/local-slide-editor-launcher.js';
13
+ import { syncManagedSkills } from '../lib/self-heal-skills.js';
13
14
 
14
15
  let inputBuffer = Buffer.alloc(0);
15
16
  let negotiatedProtocol = DEFAULT_PROTOCOL;
16
17
  let wireMode = 'content-length';
17
18
  let mcpClientInfo = null;
18
19
 
20
+ // Repair dangling skill symlinks and refresh outdated skills on startup so the
21
+ // skill loads (and stays current) on the next agent restart -- no user action.
22
+ syncManagedSkills({ log: (message) => process.stderr.write(`[html2pptx-mcp] ${message}\n`) });
23
+
19
24
  process.stdin.on('data', (chunk) => {
20
25
  inputBuffer = Buffer.concat([inputBuffer, chunk]);
21
26
  drainMessages();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "html2pptx-local-mcp",
3
- "version": "1.1.29",
3
+ "version": "1.1.32",
4
4
  "type": "module",
5
5
  "description": "Local stdio MCP server for opening html2pptx slide HTML in the local edit-slide editor.",
6
6
  "bin": {
@@ -18,6 +18,7 @@
18
18
  "lib/local-editor-state.js",
19
19
  "lib/local-slide-editor-launcher.js",
20
20
  "lib/pptx-studio-mcp-core.js",
21
+ "lib/self-heal-skills.js",
21
22
  "lib/server/template-html-policy.mjs",
22
23
  "mcp/pptx-studio-mcp-server.mjs",
23
24
  "public/skills",