@axonflow/openclaw 2.1.1 → 2.2.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.
@@ -20,6 +20,10 @@
20
20
  "AXONFLOW_CONFIG_DIR": {
21
21
  "required": false,
22
22
  "description": "Override the per-user config directory used for the Community-SaaS registration file (mode 0o600). Defaults to OS conventions: $XDG_CONFIG_HOME/axonflow on Linux, ~/Library/Application Support/axonflow on macOS, %APPDATA%\\axonflow on Windows."
23
+ },
24
+ "AXONFLOW_LICENSE_TOKEN": {
25
+ "required": false,
26
+ "description": "AxonFlow Pro plugin-claim license token (begins with 'AXON-'). When set, the plugin forwards this token on every governed request via the X-License-Token header so the agent applies Pro-tier entitlements (extended audit retention, higher quotas, license-gated capabilities). Wins over pluginConfig.licenseToken when both are set. Get one from getaxonflow.com/plugins/pro — the token is emailed to the address used at Stripe Checkout."
23
27
  }
24
28
  },
25
29
  "runtimeBehavior": {
@@ -81,6 +85,12 @@
81
85
  "placeholder": "alice@example.com",
82
86
  "help": "Per-user identity forwarded as the X-User-Email header. Required for the override lifecycle endpoints (createOverride, revokeOverride, listOverrides) and for correct per-user scoping on explainDecision. Block-path features still work without it."
83
87
  },
88
+ "licenseToken": {
89
+ "label": "Pro License Token",
90
+ "sensitive": true,
91
+ "placeholder": "AXON-...",
92
+ "help": "AxonFlow Pro plugin-claim license token. When set, the plugin forwards this on every governed request via X-License-Token so the agent applies Pro-tier entitlements (longer audit retention, higher quotas, license-gated capabilities). AXONFLOW_LICENSE_TOKEN env var wins over this value."
93
+ },
84
94
  "highRiskTools": {
85
95
  "label": "High-Risk Tools",
86
96
  "placeholder": "web_fetch, message",
@@ -127,6 +137,9 @@
127
137
  "userEmail": {
128
138
  "type": "string"
129
139
  },
140
+ "licenseToken": {
141
+ "type": "string"
142
+ },
130
143
  "highRiskTools": {
131
144
  "type": "array",
132
145
  "items": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@axonflow/openclaw",
3
- "version": "2.1.1",
3
+ "version": "2.2.0",
4
4
  "description": "Policy enforcement, approval gates, and audit trails for OpenClaw — govern tool inputs before execution, scan outbound messages for PII/secrets, and record agent activity for review and compliance",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -11,8 +11,13 @@
11
11
  "types": "./dist/index.d.ts"
12
12
  }
13
13
  },
14
+ "bin": {
15
+ "axonflow-openclaw-recover": "./bin/axonflow-openclaw-recover.mjs",
16
+ "axonflow-openclaw-status": "./bin/axonflow-openclaw-status.mjs"
17
+ },
14
18
  "files": [
15
19
  "dist",
20
+ "bin",
16
21
  "policies",
17
22
  "README.md",
18
23
  "CHANGELOG.md",