@axonflow/openclaw 2.1.0 → 2.1.1

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
@@ -2,6 +2,19 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ## [2.1.1] - 2026-05-05 — exclude runtime-e2e/ from published artifact
6
+
7
+ ### Fixed
8
+
9
+ - **`runtime-e2e/` now excluded from the ClawHub publish.** The runtime
10
+ E2E test harnesses are CI fixtures that drive a real OpenClaw agent
11
+ against a live AxonFlow stack — they're not consumed by the plugin
12
+ runtime. They were inadvertently shipped with the v2.1.0 artifact and
13
+ the static-analysis scanner flagged five of them on a false-positive
14
+ exfiltration heuristic that matched their HTTP Basic-auth header
15
+ setup. Removing the surface area entirely is more durable than
16
+ appealing the heuristic.
17
+
5
18
  ## [2.1.0] - 2026-05-04 — 5 agent-callable governance tools
6
19
 
7
20
  ### Added
package/dist/index.d.ts CHANGED
@@ -26,7 +26,7 @@
26
26
  */
27
27
  import { type AgentToolDef } from "./agent-tools.js";
28
28
  /** Plugin version — update before each release. */
29
- export declare const VERSION = "2.1.0";
29
+ export declare const VERSION = "2.1.1";
30
30
  export { AxonFlowClient } from "./axonflow-client.js";
31
31
  export type { AxonFlowPluginConfig } from "./config.js";
32
32
  export { resolveConfig, shouldGovernTool } from "./config.js";
package/dist/index.js CHANGED
@@ -36,7 +36,7 @@ import { resetMetrics } from "./metrics.js";
36
36
  import { runPluginVersionCheck } from "./plugin-version-check.js";
37
37
  import { buildAgentTools } from "./agent-tools.js";
38
38
  /** Plugin version — update before each release. */
39
- export const VERSION = "2.1.0";
39
+ export const VERSION = "2.1.1";
40
40
  // Re-export for external consumers
41
41
  export { AxonFlowClient } from "./axonflow-client.js";
42
42
  export { resolveConfig, shouldGovernTool } from "./config.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@axonflow/openclaw",
3
- "version": "2.1.0",
3
+ "version": "2.1.1",
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",