gm-plugkit 2.0.2060 → 2.0.2062

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.
Files changed (2) hide show
  1. package/bootstrap.js +1 -1
  2. package/package.json +1 -1
package/bootstrap.js CHANGED
@@ -829,7 +829,7 @@ function discoverBundledSkillsAndSources() {
829
829
  const m = f.match(/^SKILL-(.+)\.md$/);
830
830
  if (m) found.set(m[1], path.join(__dirname, f));
831
831
  }
832
- } catch (_) {}
832
+ } catch (e) { obsEvent('bootstrap', 'discover-bundled-skills.readdir-failed', { dir: __dirname, error: e.message }); }
833
833
  const devSkillsRoots = [
834
834
  path.join(__dirname, '..', 'gm-skill', 'skills'),
835
835
  path.join(__dirname, '..', '..', 'gm-skill', 'skills'),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gm-plugkit",
3
- "version": "2.0.2060",
3
+ "version": "2.0.2062",
4
4
  "description": "Bootstrap and daemon-spawn tool for gm plugkit binary. Downloads the correct platform wasm, verifies SHA256, and launches agentplug-runner (the native wasm host) as the spool watcher daemon.",
5
5
  "main": "index.js",
6
6
  "bin": {