@fidacy/mcp 0.1.22 → 0.1.23
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 +7 -0
- package/README.md +23 -0
- package/dist/core.js +1 -1
- package/dist/index.js +3 -3
- package/dist/lib.js +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.1.23
|
|
4
|
+
|
|
5
|
+
Founder note in the README for the week-one install base: how to find your
|
|
6
|
+
anonymous id locally (grep anon_id ~/.fidacy/config.json) and claim your
|
|
7
|
+
install's block history at fidacy.com/claim, plus the founding partner offer.
|
|
8
|
+
No code changes.
|
|
9
|
+
|
|
3
10
|
## 0.1.22
|
|
4
11
|
|
|
5
12
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -16,6 +16,29 @@ Hermes, OpenClaw, and anything else that speaks MCP.
|
|
|
16
16
|
> evidence. Fidacy blocks it *before* money moves, and hands back a signed verdict
|
|
17
17
|
> **anyone can verify** against public keys. You don't trust us — you check the signature.
|
|
18
18
|
|
|
19
|
+
## To everyone who installed Fidacy this week
|
|
20
|
+
|
|
21
|
+
You are one of ~135 installs that made 1,784 real firewall decisions in week one,
|
|
22
|
+
76% of them blocks. Thank you. Two things worth a minute of your time:
|
|
23
|
+
|
|
24
|
+
1. **See and claim what YOUR install blocked.** Your install carries a private,
|
|
25
|
+
anonymous id on your machine (we never learn who you are unless you choose to).
|
|
26
|
+
Run:
|
|
27
|
+
|
|
28
|
+
```bash
|
|
29
|
+
grep anon_id ~/.fidacy/config.json
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
then open `https://fidacy.com/claim?ref=<that id>`. One click turns your local
|
|
33
|
+
history into a free account: server-signed verdicts, Bitcoin-anchored audit,
|
|
34
|
+
nothing about your machine leaves it.
|
|
35
|
+
|
|
36
|
+
2. **Founding partner, 5 seats.** A full year of the evidence layer at $10,800
|
|
37
|
+
instead of $18,000, wired into your stack by the founder, 30-day full refund:
|
|
38
|
+
[fidacy.com/partners](https://fidacy.com/partners)
|
|
39
|
+
|
|
40
|
+
Lucas de Lima, founder
|
|
41
|
+
|
|
19
42
|
## Quick start (free, local-first, no account)
|
|
20
43
|
|
|
21
44
|
```json
|
package/dist/core.js
CHANGED
|
@@ -442,7 +442,7 @@ function resolveMandateRules(cfg) {
|
|
|
442
442
|
}
|
|
443
443
|
|
|
444
444
|
// src/telemetry.ts
|
|
445
|
-
var CLIENT_VERSION = true ? "0.1.
|
|
445
|
+
var CLIENT_VERSION = true ? "0.1.23" : "dev";
|
|
446
446
|
function bandOf(amount) {
|
|
447
447
|
if (typeof amount !== "number" || !Number.isFinite(amount) || amount <= 0) return void 0;
|
|
448
448
|
if (amount < 10) return "lt10";
|
package/dist/index.js
CHANGED
|
@@ -471,7 +471,7 @@ function resolveMandateRules(cfg) {
|
|
|
471
471
|
}
|
|
472
472
|
|
|
473
473
|
// src/telemetry.ts
|
|
474
|
-
var CLIENT_VERSION = true ? "0.1.
|
|
474
|
+
var CLIENT_VERSION = true ? "0.1.23" : "dev";
|
|
475
475
|
function bandOf(amount) {
|
|
476
476
|
if (typeof amount !== "number" || !Number.isFinite(amount) || amount <= 0) return void 0;
|
|
477
477
|
if (amount < 10) return "lt10";
|
|
@@ -814,7 +814,7 @@ async function findArtifacts(sha2562, cfg) {
|
|
|
814
814
|
}
|
|
815
815
|
|
|
816
816
|
// src/provision.ts
|
|
817
|
-
var CLIENT_VERSION2 = true ? "0.1.
|
|
817
|
+
var CLIENT_VERSION2 = true ? "0.1.23" : "dev";
|
|
818
818
|
function provisionEnabled() {
|
|
819
819
|
const v = (process.env.FIDACY_DISABLE_PROVISION ?? "").trim().toLowerCase();
|
|
820
820
|
return !(v === "1" || v === "true" || v === "yes");
|
|
@@ -924,7 +924,7 @@ function weekOneBootNudge(upgradeToolName) {
|
|
|
924
924
|
var state = ensureState();
|
|
925
925
|
var core = makeCore();
|
|
926
926
|
var subject = process.env.FIDACY_SUBJECT ?? "agent:demo";
|
|
927
|
-
var SERVER_VERSION = true ? "0.1.
|
|
927
|
+
var SERVER_VERSION = true ? "0.1.23" : "dev";
|
|
928
928
|
var server = new McpServer({ name: "fidacy", version: SERVER_VERSION });
|
|
929
929
|
server.registerTool(
|
|
930
930
|
"request_payment",
|
package/dist/lib.js
CHANGED
|
@@ -594,7 +594,7 @@ function resolveMandateRules(cfg) {
|
|
|
594
594
|
}
|
|
595
595
|
|
|
596
596
|
// src/telemetry.ts
|
|
597
|
-
var CLIENT_VERSION = true ? "0.1.
|
|
597
|
+
var CLIENT_VERSION = true ? "0.1.23" : "dev";
|
|
598
598
|
function bandOf(amount) {
|
|
599
599
|
if (typeof amount !== "number" || !Number.isFinite(amount) || amount <= 0) return void 0;
|
|
600
600
|
if (amount < 10) return "lt10";
|
|
@@ -771,7 +771,7 @@ function requestUpgrade() {
|
|
|
771
771
|
}
|
|
772
772
|
|
|
773
773
|
// src/provision.ts
|
|
774
|
-
var CLIENT_VERSION2 = true ? "0.1.
|
|
774
|
+
var CLIENT_VERSION2 = true ? "0.1.23" : "dev";
|
|
775
775
|
function provisionEnabled() {
|
|
776
776
|
const v = (process.env.FIDACY_DISABLE_PROVISION ?? "").trim().toLowerCase();
|
|
777
777
|
return !(v === "1" || v === "true" || v === "yes");
|
package/package.json
CHANGED