@fidacy/openclaw-plugin 0.7.0 → 0.9.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 +26 -0
- package/dist/index.js +3 -3
- package/openclaw.plugin.json +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,31 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.9.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- Fidacy can now ask the 452 people who already installed it whether to turn on full protection, without them ever opening a terminal.
|
|
8
|
+
|
|
9
|
+
The problem was that **2 of 407** MCP installs had ever run `install-hooks`. Without that hook an MCP server only sees calls to its own tools, so deleting a file, reading a secret or reaching a CRM goes nowhere near us. For 99% of the base the product is a payment gate that almost never fires, and there was no way to ask those people anything: they do not open terminals, do not read changelogs, and the guided setup only helps whoever installs next.
|
|
10
|
+
|
|
11
|
+
Two things solve it together. The installed base is **not** stuck in the past — hosts launch the server as `npx -y @fidacy/mcp` with no version pin, so every agent restart already pulls the newest build. And the protocol has elicitation: during a tool call, a server may ask the user for input _through the host_, and they answer in a dialog inside the tool they already use.
|
|
12
|
+
|
|
13
|
+
So on the next payment decision, the operator is asked once, in their own UI, and one click wires it in — existing hooks merged around, backup kept, every path printed.
|
|
14
|
+
|
|
15
|
+
It asks only while processing a call, only if the client declares the capability, only once per install ever, and it never blocks or delays a decision. Where elicitation is not supported it degrades to a line in the tool result, which is still better than the silence it replaces.
|
|
16
|
+
|
|
17
|
+
## 0.8.0
|
|
18
|
+
|
|
19
|
+
### Minor Changes
|
|
20
|
+
|
|
21
|
+
- `protect` now offers to turn the firewall on, because without that step none of it is enforced.
|
|
22
|
+
|
|
23
|
+
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.
|
|
24
|
+
|
|
25
|
+
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.
|
|
26
|
+
|
|
27
|
+
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.
|
|
28
|
+
|
|
3
29
|
## 0.7.0
|
|
4
30
|
|
|
5
31
|
### Minor 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.
|
|
5181
|
+
var CLIENT_VERSION = true ? "0.8.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.
|
|
5396
|
+
var CLIENT_VERSION2 = true ? "0.8.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.
|
|
5539
|
+
var CLIENT_VERSION3 = true ? "0.8.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`;
|
package/openclaw.plugin.json
CHANGED
|
@@ -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
|
+
"version": "0.8.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.
|
|
3
|
+
"version": "0.9.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.
|
|
60
|
+
"@fidacy/mcp": "0.11.0"
|
|
61
61
|
},
|
|
62
62
|
"scripts": {
|
|
63
63
|
"build": "node scripts/bundle.mjs",
|