@fidacy/openclaw-plugin 0.1.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.
@@ -0,0 +1,51 @@
1
+ {
2
+ "id": "fidacy",
3
+ "name": "Fidacy — Payment Firewall",
4
+ "description": "A signed, independently-verifiable verdict on every money-moving agent action. Blocks wrong/lookalike payee, over-cap, and duplicate-invoice fraud before money moves. Non-custodial, local-first, deny-by-default.",
5
+ "version": "0.1.0",
6
+ "contracts": {
7
+ "tools": [
8
+ "request_payment",
9
+ "verify_mandate",
10
+ "get_audit_proof",
11
+ "assess_action",
12
+ "fidacy_upgrade"
13
+ ]
14
+ },
15
+ "configSchema": {
16
+ "type": "object",
17
+ "additionalProperties": false,
18
+ "properties": {
19
+ "engineApiKey": {
20
+ "type": "string",
21
+ "description": "Fidacy engine API key (fky_live_/fky_test_) enabling signed verdicts via assess_action. Falls back to FIDACY_ENGINE_API_KEY."
22
+ },
23
+ "engineUrl": {
24
+ "type": "string",
25
+ "description": "Fidacy engine base URL. Defaults to https://api.fidacy.com (or FIDACY_ENGINE_URL)."
26
+ },
27
+ "subject": {
28
+ "type": "string",
29
+ "description": "Mandate subject identity for this agent. Defaults to agent:demo (or FIDACY_SUBJECT)."
30
+ }
31
+ }
32
+ },
33
+ "uiHints": {
34
+ "engineApiKey": {
35
+ "label": "Engine API key",
36
+ "placeholder": "fky_live_...",
37
+ "sensitive": true,
38
+ "help": "Optional. Enables signed trust verdicts (assess_action) from the live Fidacy engine."
39
+ },
40
+ "engineUrl": {
41
+ "label": "Engine URL",
42
+ "placeholder": "https://api.fidacy.com",
43
+ "advanced": true
44
+ },
45
+ "subject": {
46
+ "label": "Agent subject",
47
+ "placeholder": "agent:demo",
48
+ "advanced": true
49
+ }
50
+ }
51
+ }
package/package.json ADDED
@@ -0,0 +1,65 @@
1
+ {
2
+ "name": "@fidacy/openclaw-plugin",
3
+ "version": "0.1.0",
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
+ "license": "Apache-2.0",
6
+ "homepage": "https://fidacy.com",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/lucaslubi/fidacy-mcp.git"
10
+ },
11
+ "keywords": [
12
+ "openclaw",
13
+ "openclaw-plugin",
14
+ "payments",
15
+ "firewall",
16
+ "mandate",
17
+ "trust",
18
+ "verdict",
19
+ "ed25519",
20
+ "fidacy"
21
+ ],
22
+ "type": "module",
23
+ "main": "dist/index.js",
24
+ "files": [
25
+ "dist",
26
+ "openclaw.plugin.json",
27
+ "README.md",
28
+ "LICENSE",
29
+ "CHANGELOG.md"
30
+ ],
31
+ "publishConfig": {
32
+ "access": "public"
33
+ },
34
+ "openclaw": {
35
+ "extensions": [
36
+ "./dist/index.js"
37
+ ],
38
+ "compat": {
39
+ "pluginApi": ">=2026.6.11"
40
+ },
41
+ "build": {
42
+ "openclawVersion": "2026.6.11",
43
+ "pluginSdkVersion": "2026.6.11"
44
+ },
45
+ "install": {
46
+ "npmSpec": "@fidacy/openclaw-plugin"
47
+ }
48
+ },
49
+ "engines": {
50
+ "node": ">=20"
51
+ },
52
+ "devDependencies": {
53
+ "@types/node": "^22.10.0",
54
+ "esbuild": "^0.24.0",
55
+ "openclaw": "2026.6.11",
56
+ "typebox": "1.1.39",
57
+ "typescript": "^5.6.3",
58
+ "@fidacy/mcp": "0.1.9",
59
+ "@fidacy/firewall": "0.1.0"
60
+ },
61
+ "scripts": {
62
+ "build": "node scripts/bundle.mjs",
63
+ "typecheck": "tsc --noEmit"
64
+ }
65
+ }