@fidacy/mcp 0.2.8 → 0.2.9

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 CHANGED
@@ -1,5 +1,23 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.2.9
4
+
5
+ ### Patch Changes
6
+
7
+ - 1a3f504: Name the publisher in package metadata, and release through CI so the artifact
8
+ carries Sigstore provenance.
9
+
10
+ The `author` field was missing, which is why trust registries listed the packages
11
+ as authored by "Unknown". More importantly, every release so far went out as a
12
+ manual `npm publish` from a laptop, so no `@fidacy/*` package carried a
13
+ provenance attestation. Provenance is an OIDC statement from a CI runner about
14
+ which workflow built the artifact, so a laptop cannot produce one regardless of
15
+ flags. The Release workflow was already configured for it and simply had never
16
+ been used.
17
+
18
+ For a project whose entire claim is independently verifiable evidence, shipping
19
+ without supply-chain attestation was the wrong asymmetry.
20
+
3
21
  ## 0.2.5
4
22
 
5
23
  TypeScript declarations ship in the package. Every entrypoint (., ./assess,
package/dist/core.js CHANGED
@@ -461,7 +461,7 @@ function resolveMandateRules(cfg) {
461
461
  }
462
462
 
463
463
  // src/telemetry.ts
464
- var CLIENT_VERSION = true ? "0.2.8" : "dev";
464
+ var CLIENT_VERSION = true ? "0.2.9" : "dev";
465
465
  function bandOf(amount) {
466
466
  if (typeof amount !== "number" || !Number.isFinite(amount) || amount <= 0) return void 0;
467
467
  if (amount < 10) return "lt10";
package/dist/index.js CHANGED
@@ -490,7 +490,7 @@ function resolveMandateRules(cfg) {
490
490
  }
491
491
 
492
492
  // src/telemetry.ts
493
- var CLIENT_VERSION = true ? "0.2.8" : "dev";
493
+ var CLIENT_VERSION = true ? "0.2.9" : "dev";
494
494
  function bandOf(amount) {
495
495
  if (typeof amount !== "number" || !Number.isFinite(amount) || amount <= 0) return void 0;
496
496
  if (amount < 10) return "lt10";
@@ -834,7 +834,7 @@ async function findArtifacts(sha2562, cfg) {
834
834
  }
835
835
 
836
836
  // src/provision.ts
837
- var CLIENT_VERSION2 = true ? "0.2.8" : "dev";
837
+ var CLIENT_VERSION2 = true ? "0.2.9" : "dev";
838
838
  function provisionEnabled() {
839
839
  const v = (process.env.FIDACY_DISABLE_PROVISION ?? "").trim().toLowerCase();
840
840
  return !(v === "1" || v === "true" || v === "yes");
@@ -1264,7 +1264,7 @@ function renderAlertLine(alerts) {
1264
1264
  var state = ensureState();
1265
1265
  var core = makeCore();
1266
1266
  var subject = process.env.FIDACY_SUBJECT ?? "agent:demo";
1267
- var SERVER_VERSION = true ? "0.2.8" : "dev";
1267
+ var SERVER_VERSION = true ? "0.2.9" : "dev";
1268
1268
  var bootClaim = claimUrl();
1269
1269
  var server = new McpServer(
1270
1270
  { name: "fidacy", version: SERVER_VERSION },
package/dist/lib.js CHANGED
@@ -613,7 +613,7 @@ function resolveMandateRules(cfg) {
613
613
  }
614
614
 
615
615
  // src/telemetry.ts
616
- var CLIENT_VERSION = true ? "0.2.8" : "dev";
616
+ var CLIENT_VERSION = true ? "0.2.9" : "dev";
617
617
  function bandOf(amount) {
618
618
  if (typeof amount !== "number" || !Number.isFinite(amount) || amount <= 0) return void 0;
619
619
  if (amount < 10) return "lt10";
@@ -791,7 +791,7 @@ function requestUpgrade() {
791
791
  }
792
792
 
793
793
  // src/provision.ts
794
- var CLIENT_VERSION2 = true ? "0.2.8" : "dev";
794
+ var CLIENT_VERSION2 = true ? "0.2.9" : "dev";
795
795
  function provisionEnabled() {
796
796
  const v = (process.env.FIDACY_DISABLE_PROVISION ?? "").trim().toLowerCase();
797
797
  return !(v === "1" || v === "true" || v === "yes");
package/package.json CHANGED
@@ -1,8 +1,9 @@
1
1
  {
2
2
  "name": "@fidacy/mcp",
3
- "version": "0.2.8",
3
+ "version": "0.2.9",
4
4
  "description": "Fidacy action firewall for AI agents. Mandate-gated payment authorization as an MCP server.",
5
5
  "license": "Apache-2.0",
6
+ "author": "Fidacy (ZeepCode Group Technology LLC) <hello@fidacy.com> (https://fidacy.com)",
6
7
  "homepage": "https://fidacy.com",
7
8
  "keywords": [
8
9
  "mcp",
@@ -49,12 +50,6 @@
49
50
  "publishConfig": {
50
51
  "access": "public"
51
52
  },
52
- "scripts": {
53
- "build": "node scripts/bundle.mjs",
54
- "dev": "tsx watch src/index.ts",
55
- "start": "node dist/index.js",
56
- "prepublishOnly": "npm run build"
57
- },
58
53
  "engines": {
59
54
  "node": ">=18"
60
55
  },
@@ -63,14 +58,19 @@
63
58
  "zod": "^3.25.0"
64
59
  },
65
60
  "devDependencies": {
66
- "@fidacy/firewall": "workspace:*",
67
61
  "@types/node": "^22.10.0",
68
62
  "tsx": "^4.19.2",
69
- "typescript": "^5.7.2"
63
+ "typescript": "^5.7.2",
64
+ "@fidacy/firewall": "0.1.1"
70
65
  },
71
66
  "mcpName": "com.fidacy/mcp",
72
67
  "repository": {
73
68
  "type": "git",
74
69
  "url": "git+https://github.com/lucaslubi/fidacy-mcp.git"
70
+ },
71
+ "scripts": {
72
+ "build": "node scripts/bundle.mjs",
73
+ "dev": "tsx watch src/index.ts",
74
+ "start": "node dist/index.js"
75
75
  }
76
- }
76
+ }