@fidacy/openclaw-plugin 0.7.0 → 0.8.0

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/CHANGELOG.md +12 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.8.0
4
+
5
+ ### Minor Changes
6
+
7
+ - `protect` now offers to turn the firewall on, because without that step none of it is enforced.
8
+
9
+ The measurement is the whole argument: **2 of 407** MCP installs had ever run `install-hooks`. The command exists, it is careful, and nobody finds it. An MCP server only ever sees calls to its own tools — deleting a file, reading a secret or reaching your CRM goes through the agent's host, not through us. So every answer someone gives about what their agent may do was being written to a firewall that was not in the path.
10
+
11
+ Asking at the end of `protect` is the difference, because it is the one moment there is a human at the terminal thinking about exactly this.
12
+
13
+ It asks; it never installs on its own. That file is someone's editor config, and writing to it without consent is both what put us in a security review on ClawHub and, more to the point, the exact thing this product exists to stop an agent from doing. Existing hooks are merged around, a backup is kept, and every path touched is printed. Say no and your answers are still saved, with the command to enforce them later.
14
+
3
15
  ## 0.7.0
4
16
 
5
17
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fidacy/openclaw-plugin",
3
- "version": "0.7.0",
3
+ "version": "0.8.0",
4
4
  "description": "Fidacy payment firewall as a native OpenClaw plugin: signed, verifiable verdicts on every money-moving agent action, in-process (no MCP subprocess).",
5
5
  "license": "Apache-2.0",
6
6
  "author": "Fidacy (ZeepCode Group Technology LLC) <hello@fidacy.com> (https://fidacy.com)",
@@ -57,7 +57,7 @@
57
57
  "typebox": "1.1.39",
58
58
  "typescript": "^5.6.3",
59
59
  "@fidacy/firewall": "0.1.1",
60
- "@fidacy/mcp": "0.9.0"
60
+ "@fidacy/mcp": "0.10.0"
61
61
  },
62
62
  "scripts": {
63
63
  "build": "node scripts/bundle.mjs",