@fidacy/openclaw-plugin 0.6.1 → 0.7.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 +18 -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,23 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.7.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- `npx @fidacy/mcp protect` — a short conversation that configures the firewall, so nobody has to guess.
|
|
8
|
+
|
|
9
|
+
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.
|
|
10
|
+
|
|
11
|
+
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.
|
|
12
|
+
|
|
13
|
+
y = yes, let it a = ask me first n = never
|
|
14
|
+
|
|
15
|
+
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.
|
|
16
|
+
|
|
17
|
+
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.
|
|
18
|
+
|
|
19
|
+
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.
|
|
20
|
+
|
|
3
21
|
## 0.6.1
|
|
4
22
|
|
|
5
23
|
### 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.
|
|
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.
|
|
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.
|
|
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`;
|
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.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.
|
|
3
|
+
"version": "0.7.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.9.0"
|
|
61
61
|
},
|
|
62
62
|
"scripts": {
|
|
63
63
|
"build": "node scripts/bundle.mjs",
|