promptgraph-mcp 1.8.1 → 1.9.6
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/index.js +2 -1
- package/package.json +5 -6
package/index.js
CHANGED
|
@@ -392,7 +392,8 @@ if (args[0] === 'update') {
|
|
|
392
392
|
spin.start();
|
|
393
393
|
let latest = null;
|
|
394
394
|
try {
|
|
395
|
-
const
|
|
395
|
+
const npmCmd = process.platform === 'win32' ? 'npm.cmd' : 'npm';
|
|
396
|
+
const r = spawnSync(npmCmd, ['view', 'promptgraph-mcp', 'version'], { encoding: 'utf8' });
|
|
396
397
|
latest = r.stdout?.trim();
|
|
397
398
|
} catch {}
|
|
398
399
|
spin.stop();
|
package/package.json
CHANGED
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "promptgraph-mcp",
|
|
3
|
-
|
|
4
|
-
"version": "1.8.1",
|
|
3
|
+
"version": "1.9.6",
|
|
5
4
|
"main": "index.js",
|
|
6
5
|
"type": "module",
|
|
7
6
|
"bin": {
|
|
8
|
-
"pg": "
|
|
9
|
-
"promptgraph": "
|
|
10
|
-
"promptgraph-mcp": "
|
|
7
|
+
"pg": "index.js",
|
|
8
|
+
"promptgraph": "index.js",
|
|
9
|
+
"promptgraph-mcp": "index.js"
|
|
11
10
|
},
|
|
12
11
|
"scripts": {
|
|
13
12
|
"start": "node index.js",
|
|
@@ -28,7 +27,7 @@
|
|
|
28
27
|
"description": "Semantic skill router for Claude Code — load only the skills you need, save 20k+ tokens per session",
|
|
29
28
|
"repository": {
|
|
30
29
|
"type": "git",
|
|
31
|
-
"url": "https://github.com/NeiP4n/promptgraph.git"
|
|
30
|
+
"url": "git+https://github.com/NeiP4n/promptgraph.git"
|
|
32
31
|
},
|
|
33
32
|
"homepage": "https://github.com/NeiP4n/promptgraph#readme",
|
|
34
33
|
"engines": {
|