@fidacy/openclaw-plugin 0.2.7 → 0.2.8
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 +5 -5
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.2.8
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 2e846a7: Funnel: move the strongest claim nudge before the activation wall, and make the
|
|
8
|
+
first-block nudge scary-but-true.
|
|
9
|
+
|
|
10
|
+
The proof-teaser nudge fired at decision 25, stranded behind the 20-decision
|
|
11
|
+
activation wall: once the firewall fails closed at 20, denied calls stop
|
|
12
|
+
advancing the counter, so 25 was never reached and the single strongest reason
|
|
13
|
+
to claim (the history you already built) never showed. It now fires at 15, five
|
|
14
|
+
decisions before the wall — carrot before stick, which is the highest-converting
|
|
15
|
+
moment the PLG research points to.
|
|
16
|
+
|
|
17
|
+
The first-deny nudge now cites the real $441,788 agent incident. Grounded fear,
|
|
18
|
+
never manufactured: for a company whose pitch is verify-don't-trust, a cited
|
|
19
|
+
fact converts and a fabricated panic would be self-refuting.
|
|
20
|
+
|
|
3
21
|
## 0.2.7
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|
package/dist/index.js
CHANGED
|
@@ -4709,7 +4709,7 @@ function resolveMandateRules(cfg) {
|
|
|
4709
4709
|
}
|
|
4710
4710
|
|
|
4711
4711
|
// ../mcp/src/telemetry.ts
|
|
4712
|
-
var CLIENT_VERSION = true ? "0.2.
|
|
4712
|
+
var CLIENT_VERSION = true ? "0.2.8" : "dev";
|
|
4713
4713
|
function bandOf(amount) {
|
|
4714
4714
|
if (typeof amount !== "number" || !Number.isFinite(amount) || amount <= 0) return void 0;
|
|
4715
4715
|
if (amount < 10) return "lt10";
|
|
@@ -4887,7 +4887,7 @@ function requestUpgrade() {
|
|
|
4887
4887
|
}
|
|
4888
4888
|
|
|
4889
4889
|
// ../mcp/src/provision.ts
|
|
4890
|
-
var CLIENT_VERSION2 = true ? "0.2.
|
|
4890
|
+
var CLIENT_VERSION2 = true ? "0.2.8" : "dev";
|
|
4891
4891
|
function provisionEnabled() {
|
|
4892
4892
|
const v = (process.env.FIDACY_DISABLE_PROVISION ?? "").trim().toLowerCase();
|
|
4893
4893
|
return !(v === "1" || v === "true" || v === "yes");
|
|
@@ -4963,13 +4963,13 @@ function decisionNudge(status, violatedRule, upgradeToolName) {
|
|
|
4963
4963
|
return `That was a duplicate-invoice (BEC) catch, the #1 payment fraud. For your operator: ${claimPath}. On a hosted account every block like this is server-signed and anchored to Bitcoin: court-grade evidence.`;
|
|
4964
4964
|
}
|
|
4965
4965
|
if (status === "DENY" && nudgeOnce("first_deny")) {
|
|
4966
|
-
return `Fidacy just blocked this for
|
|
4966
|
+
return `Fidacy just blocked this payment before it moved. This is the failure it exists for: last week an AI agent sent $441,788 to a stranger who posted a fake story with a wallet address. Nothing was checking it. For your operator: ${claimPath}.`;
|
|
4967
4967
|
}
|
|
4968
4968
|
if (status === "ALLOW" && nudgeOnce("first_allow")) {
|
|
4969
4969
|
return `Fidacy authorized this and signed the decision. For your operator: ${claimPath}.`;
|
|
4970
4970
|
}
|
|
4971
|
-
if (count ===
|
|
4972
|
-
return `
|
|
4971
|
+
if (count === 15 && nudgeOnce("proof_teaser")) {
|
|
4972
|
+
return `Fidacy has now checked ${count} payments on this agent and stands between it and the wrong one, the prompt-injected payee, the duplicate, the over-limit charge. That protection pauses after 20 decisions without a free key. Keep the agent covered: ${claimPath}.`;
|
|
4973
4973
|
}
|
|
4974
4974
|
if (count === 10 && nudgeOnce("milestone_10")) {
|
|
4975
4975
|
return `That's 10 actions gated on this install. For your operator: ${claimPath}.`;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fidacy/openclaw-plugin",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.8",
|
|
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.2.
|
|
60
|
+
"@fidacy/mcp": "0.2.10"
|
|
61
61
|
},
|
|
62
62
|
"scripts": {
|
|
63
63
|
"build": "node scripts/bundle.mjs",
|