fastgrc-openclaw 1.0.24 → 1.0.25

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/dist/bin.js CHANGED
@@ -293,7 +293,7 @@ if (cmd === "uninstall") {
293
293
  process.stdout.write("\u2713 API key and policy ID removed from ~/.fastgrc.json\n");
294
294
  doUninstallHook(targetDir);
295
295
  process.stdout.write(
296
- "\n\u2713 Config and HOOK.md cleaned up.\nComplete removal \u2014 run these two commands:\n sudo openclaw plugins remove fastgrc-openclaw\n npm uninstall -g fastgrc-openclaw\n"
296
+ "\n\u2713 Config and HOOK.md cleaned up.\nComplete removal \u2014 run these two commands:\n rm -rf ~/.openclaw/npm/node_modules/fastgrc-openclaw\n npm uninstall -g fastgrc-openclaw\n"
297
297
  );
298
298
  process.exit(0);
299
299
  }
package/dist/bin.mjs CHANGED
@@ -270,7 +270,7 @@ if (cmd === "uninstall") {
270
270
  process.stdout.write("\u2713 API key and policy ID removed from ~/.fastgrc.json\n");
271
271
  doUninstallHook(targetDir);
272
272
  process.stdout.write(
273
- "\n\u2713 Config and HOOK.md cleaned up.\nComplete removal \u2014 run these two commands:\n sudo openclaw plugins remove fastgrc-openclaw\n npm uninstall -g fastgrc-openclaw\n"
273
+ "\n\u2713 Config and HOOK.md cleaned up.\nComplete removal \u2014 run these two commands:\n rm -rf ~/.openclaw/npm/node_modules/fastgrc-openclaw\n npm uninstall -g fastgrc-openclaw\n"
274
274
  );
275
275
  process.exit(0);
276
276
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fastgrc-openclaw",
3
- "version": "1.0.24",
3
+ "version": "1.0.25",
4
4
  "description": "FastGRC agent compliance plugin for OpenClaw — evaluates every tool call against your policy before it executes",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",