@fidacy/openclaw-plugin 0.6.1 → 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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,35 @@
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
+
15
+ ## 0.7.0
16
+
17
+ ### Minor Changes
18
+
19
+ - `npx @fidacy/mcp protect` — a short conversation that configures the firewall, so nobody has to guess.
20
+
21
+ Found by installing the published package and looking at what a person actually sees. The boot banner talked about payees; `systems`, `actionClasses` and the modes only existed for someone who opened `config.json` and worked out the schema alone. A guard nobody finds is a guard that does not exist, and the hidden one was precisely the one that stops the agent reaching a system nobody authorised.
22
+
23
+ Seven questions, one keystroke each, in plain language. Nobody needs to know what `crm.export` means to answer "may it export your customer records?" — translating that into the engine's vocabulary is our job, not theirs.
24
+
25
+ y = yes, let it a = ask me first n = never
26
+
27
+ Then: which systems does this agent work with. It gets read access to those and nothing more until you say otherwise, and you choose whether anything heading elsewhere is refused too.
28
+
29
+ Offline and deterministic on purpose: no network, no model, no account. Someone who just installed can protect their machine before deciding whether they trust us.
30
+
31
+ The banner now carries the command on every boot, not just the first — anyone who installed before this version never saw a first run with it.
32
+
3
33
  ## 0.6.1
4
34
 
5
35
  ### Patch Changes
package/dist/index.js CHANGED
@@ -5178,7 +5178,7 @@ function sessionIdOf(ctx) {
5178
5178
  import { statSync } from "node:fs";
5179
5179
 
5180
5180
  // ../mcp/src/telemetry.ts
5181
- var CLIENT_VERSION = true ? "0.6.1" : "dev";
5181
+ var CLIENT_VERSION = true ? "0.7.0" : "dev";
5182
5182
  function bandOf(amount) {
5183
5183
  if (typeof amount !== "number" || !Number.isFinite(amount) || amount <= 0) return void 0;
5184
5184
  if (amount < 10) return "lt10";
@@ -5393,7 +5393,7 @@ function requestUpgrade() {
5393
5393
  }
5394
5394
 
5395
5395
  // ../mcp/src/provision.ts
5396
- var CLIENT_VERSION2 = true ? "0.6.1" : "dev";
5396
+ var CLIENT_VERSION2 = true ? "0.7.0" : "dev";
5397
5397
  function provisionEnabled() {
5398
5398
  const v = (process.env.FIDACY_DISABLE_PROVISION ?? "").trim().toLowerCase();
5399
5399
  return !(v === "1" || v === "true" || v === "yes");
@@ -5536,7 +5536,7 @@ function trialCountdownLine(keyOverride) {
5536
5536
  }
5537
5537
 
5538
5538
  // ../mcp/src/register.ts
5539
- var CLIENT_VERSION3 = true ? "0.6.1" : "dev";
5539
+ var CLIENT_VERSION3 = true ? "0.7.0" : "dev";
5540
5540
  function endpoint3() {
5541
5541
  const base = (process.env.FIDACY_ENGINE_URL ?? "https://api.fidacy.com").replace(/\/$/, "");
5542
5542
  return `${base}/v1/register`;
@@ -3,7 +3,7 @@
3
3
  "name": "Fidacy AI Agent Firewall",
4
4
  "description": "Firewall for AI agents. Watches every action the agent takes and ends each session in a digest anyone can recompute; commands, paths and arguments never leave your machine, only counts and a hash. Blocks wrong/lookalike payee, over-cap and duplicate-invoice fraud before money moves. Non-custodial, local-first, deny-by-default. Anonymous telemetry (counts only) can be disabled with FIDACY_DISABLE_TELEMETRY=1.",
5
5
  "icon": "https://fidacy.com/logo.png",
6
- "version": "0.6.1",
6
+ "version": "0.7.0",
7
7
  "contracts": {
8
8
  "tools": [
9
9
  "request_payment",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fidacy/openclaw-plugin",
3
- "version": "0.6.1",
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.8.1"
60
+ "@fidacy/mcp": "0.10.0"
61
61
  },
62
62
  "scripts": {
63
63
  "build": "node scripts/bundle.mjs",