@fidacy/openclaw-plugin 0.6.0 → 0.6.1
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 +12 -0
- package/dist/index.js +5 -3
- package/openclaw.plugin.json +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.6.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Declaring one system no longer locks the agent out of every other one.
|
|
8
|
+
|
|
9
|
+
Found by installing the published 0.8.0 from npm and using it: declaring only the CRM immediately blocked `gmail` and `hubspot` too. Strict whitelist semantics say everything off the list falls, but "these are my systems" reads, to the person writing it, as the list of systems they want governed — not an exhaustive inventory of everything the agent touches. Someone trying Fidacy would declare one system, watch their agent break everywhere else, and uninstall before understanding why.
|
|
10
|
+
|
|
11
|
+
The default now governs what you declared. Full lockdown is one word away: `"unknownDestinations": "block"` refuses anything heading somewhere you never listed. The strong property is still there, it just stopped being a trap and became a decision you make knowingly.
|
|
12
|
+
|
|
13
|
+
The declared system is governed exactly as before either way.
|
|
14
|
+
|
|
3
15
|
## 0.6.0
|
|
4
16
|
|
|
5
17
|
### Minor Changes
|
package/dist/index.js
CHANGED
|
@@ -4764,6 +4764,7 @@ function readConfig() {
|
|
|
4764
4764
|
// classe de defeito do teto de pagamento que era jogado fora em silêncio.
|
|
4765
4765
|
actionClasses: raw.actionClasses && typeof raw.actionClasses === "object" ? raw.actionClasses : void 0,
|
|
4766
4766
|
systems: Array.isArray(raw.systems) ? raw.systems : void 0,
|
|
4767
|
+
unknownDestinations: raw.unknownDestinations === "block" ? "block" : void 0,
|
|
4767
4768
|
// Install-state passthrough: dropping these on a read→write cycle would
|
|
4768
4769
|
// reset every once-per-install nudge into an every-time nag.
|
|
4769
4770
|
created_at: typeof raw.created_at === "string" ? raw.created_at : void 0,
|
|
@@ -4791,6 +4792,7 @@ function ensureState() {
|
|
|
4791
4792
|
api_key: null,
|
|
4792
4793
|
mandate: { payees: [], categories: ["*"], currency: "USD", perTxMax: 2500, maxTotal: 1e4 },
|
|
4793
4794
|
systems: [],
|
|
4795
|
+
unknownDestinations: "allow",
|
|
4794
4796
|
actionClasses: Object.fromEntries(ACTION_CLASSES.map((k) => [k.id, { mode: k.defaultMode }])),
|
|
4795
4797
|
created_at: (/* @__PURE__ */ new Date()).toISOString()
|
|
4796
4798
|
};
|
|
@@ -5176,7 +5178,7 @@ function sessionIdOf(ctx) {
|
|
|
5176
5178
|
import { statSync } from "node:fs";
|
|
5177
5179
|
|
|
5178
5180
|
// ../mcp/src/telemetry.ts
|
|
5179
|
-
var CLIENT_VERSION = true ? "0.6.
|
|
5181
|
+
var CLIENT_VERSION = true ? "0.6.1" : "dev";
|
|
5180
5182
|
function bandOf(amount) {
|
|
5181
5183
|
if (typeof amount !== "number" || !Number.isFinite(amount) || amount <= 0) return void 0;
|
|
5182
5184
|
if (amount < 10) return "lt10";
|
|
@@ -5391,7 +5393,7 @@ function requestUpgrade() {
|
|
|
5391
5393
|
}
|
|
5392
5394
|
|
|
5393
5395
|
// ../mcp/src/provision.ts
|
|
5394
|
-
var CLIENT_VERSION2 = true ? "0.6.
|
|
5396
|
+
var CLIENT_VERSION2 = true ? "0.6.1" : "dev";
|
|
5395
5397
|
function provisionEnabled() {
|
|
5396
5398
|
const v = (process.env.FIDACY_DISABLE_PROVISION ?? "").trim().toLowerCase();
|
|
5397
5399
|
return !(v === "1" || v === "true" || v === "yes");
|
|
@@ -5534,7 +5536,7 @@ function trialCountdownLine(keyOverride) {
|
|
|
5534
5536
|
}
|
|
5535
5537
|
|
|
5536
5538
|
// ../mcp/src/register.ts
|
|
5537
|
-
var CLIENT_VERSION3 = true ? "0.6.
|
|
5539
|
+
var CLIENT_VERSION3 = true ? "0.6.1" : "dev";
|
|
5538
5540
|
function endpoint3() {
|
|
5539
5541
|
const base = (process.env.FIDACY_ENGINE_URL ?? "https://api.fidacy.com").replace(/\/$/, "");
|
|
5540
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.
|
|
6
|
+
"version": "0.6.1",
|
|
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.
|
|
3
|
+
"version": "0.6.1",
|
|
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)",
|
|
@@ -56,8 +56,8 @@
|
|
|
56
56
|
"openclaw": "2026.6.11",
|
|
57
57
|
"typebox": "1.1.39",
|
|
58
58
|
"typescript": "^5.6.3",
|
|
59
|
-
"@fidacy/
|
|
60
|
-
"@fidacy/
|
|
59
|
+
"@fidacy/firewall": "0.1.1",
|
|
60
|
+
"@fidacy/mcp": "0.8.1"
|
|
61
61
|
},
|
|
62
62
|
"scripts": {
|
|
63
63
|
"build": "node scripts/bundle.mjs",
|