fraim-hub 2.0.300 → 2.0.301
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.
|
@@ -304,6 +304,13 @@ function ensureFraimMcpLatestLauncher() {
|
|
|
304
304
|
}
|
|
305
305
|
writeFileIfChanged(fraimMcpShimPath, packagedFraimShimSource('mcp', packagedRuntime), process.platform === 'win32' ? undefined : 0o755);
|
|
306
306
|
writeFileIfChanged(fraimCliShimPath, packagedFraimShimSource('cli', packagedRuntime), process.platform === 'win32' ? undefined : 0o755);
|
|
307
|
+
// Issue #1474: keep the npx companion shim in parity with the non-packaged branch below.
|
|
308
|
+
// The packaged fraim-mcp shim itself never invokes npx, but git/playwright base MCP servers
|
|
309
|
+
// (added later via the connect-mcp skill once a system npm is available) and doctor's
|
|
310
|
+
// launch-plan diagnostic both expect this file to exist alongside the stable fraim shim.
|
|
311
|
+
// Without it, doctor's "stable shim missing on disk" check could never be satisfied on a
|
|
312
|
+
// packaged install, and --fix-mcp/add-ide (which call this same function) could never fix it.
|
|
313
|
+
writeFileIfChanged(fraimNpxShimPath, process.platform === 'win32' ? windowsFraimNpxShimSource : posixFraimNpxShimSource, process.platform === 'win32' ? undefined : 0o755);
|
|
307
314
|
return {
|
|
308
315
|
command: fraimMcpShimPath,
|
|
309
316
|
args: [],
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fraim-hub",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.301",
|
|
4
4
|
"description": "FRAIM Hub local companion package.",
|
|
5
5
|
"author": "Sid Mathur <sid.mathur@gmail.com>",
|
|
6
6
|
"homepage": "https://github.com/mathursrus/FRAIM#readme",
|
|
@@ -211,7 +211,7 @@
|
|
|
211
211
|
"electron-updater": "^6.8.9",
|
|
212
212
|
"express": "^5.2.1",
|
|
213
213
|
"extract-zip": "^2.0.1",
|
|
214
|
-
"fraim": "2.0.
|
|
214
|
+
"fraim": "2.0.301",
|
|
215
215
|
"mongodb": "^7.0.0",
|
|
216
216
|
"node-cron": "4.2.1",
|
|
217
217
|
"node-edge-tts": "^1.2.10",
|