deepclaw-openclaw 0.1.3 → 0.1.5

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,16 @@
2
2
 
3
3
  All notable changes to this project will be documented here.
4
4
 
5
+ ## 0.1.5 - Plugin API range correction
6
+
7
+ - Use the single-comparator plugin API range accepted by OpenClaw 2026.9 while retaining the npm peer range needed by the deployed prerelease-tagged host.
8
+
9
+ ## 0.1.4 - OpenClaw 2026.9 compatibility
10
+
11
+ - Import plugin APIs from the supported `openclaw/plugin-sdk/core` entrypoint.
12
+ - Build and test against OpenClaw 2026.9.4 on Node.js 26.
13
+ - Keep compatibility with gateway releases from 2026.5.6 onward and the deployed 2026.7.1-2 build.
14
+
5
15
  ## 0.1.2 - GitHub Packages publishing prep
6
16
 
7
17
  - Add GitHub Actions workflow support for publishing to npmjs and GitHub Packages.
package/dist/index.d.ts CHANGED
@@ -1,9 +1,9 @@
1
- import type { OpenClawPluginApi } from "openclaw/plugin-sdk";
1
+ import type { OpenClawPluginApi } from "openclaw/plugin-sdk/core";
2
2
  declare const plugin: {
3
3
  id: string;
4
4
  name: string;
5
5
  description: string;
6
- configSchema: import("openclaw/plugin-sdk").OpenClawPluginConfigSchema;
6
+ configSchema: import("openclaw/plugin-sdk/core").OpenClawPluginConfigSchema;
7
7
  register(api: OpenClawPluginApi): void;
8
8
  };
9
9
  export default plugin;
package/dist/index.js CHANGED
@@ -1,4 +1,4 @@
1
- import { emptyPluginConfigSchema } from "openclaw/plugin-sdk";
1
+ import { emptyPluginConfigSchema } from "openclaw/plugin-sdk/core";
2
2
  import { createDeepClawService } from "./src/service.js";
3
3
  import { parseDeepClawConfig } from "./src/config.js";
4
4
  const plugin = {
@@ -1,4 +1,4 @@
1
- import type { OpenClawPluginApi } from "openclaw/plugin-sdk";
1
+ import type { OpenClawPluginApi } from "openclaw/plugin-sdk/core";
2
2
  import type { DeepClawConfig } from "./config.js";
3
3
  /**
4
4
  * One LLM call record — captured from llm_output hook.
package/index.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  // DeepClaw OpenClaw Plugin — real-time LLM cost & usage tracking
2
- import type { OpenClawPluginApi } from "openclaw/plugin-sdk";
3
- import { emptyPluginConfigSchema } from "openclaw/plugin-sdk";
2
+ import type { OpenClawPluginApi } from "openclaw/plugin-sdk/core";
3
+ import { emptyPluginConfigSchema } from "openclaw/plugin-sdk/core";
4
4
  import { createDeepClawService } from "./src/service.js";
5
5
  import { parseDeepClawConfig } from "./src/config.js";
6
6
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "deepclaw-openclaw",
3
- "version": "0.1.3",
3
+ "version": "0.1.5",
4
4
  "license": "MIT",
5
5
  "description": "DeepClaw observability plugin for OpenClaw — real-time LLM usage, token, cache, reasoning, and cost telemetry.",
6
6
  "repository": {
@@ -46,14 +46,14 @@
46
46
  ],
47
47
  "dependencies": {},
48
48
  "peerDependencies": {
49
- "openclaw": ">=2026.3.2"
49
+ "openclaw": "2026.7.1-2 || >=2026.5.6"
50
50
  },
51
51
  "devDependencies": {
52
52
  "@types/node": "^22.0.0",
53
53
  "tsx": "^4.21.0",
54
54
  "typescript": "^5.4.0",
55
55
  "vitest": "^4.1.5",
56
- "openclaw": "^2026.4.24"
56
+ "openclaw": "2026.9.4"
57
57
  },
58
58
  "files": [
59
59
  "dist/**",
@@ -72,11 +72,11 @@
72
72
  "type": "plugin",
73
73
  "category": "observability",
74
74
  "compat": {
75
- "pluginApi": ">=2026.3.2",
76
- "minGatewayVersion": "2026.3.2"
75
+ "pluginApi": ">=2026.5.6",
76
+ "minGatewayVersion": "2026.5.6"
77
77
  },
78
78
  "build": {
79
- "openclawVersion": "2026.5.6"
79
+ "openclawVersion": "2026.9.4"
80
80
  },
81
81
  "tags": [
82
82
  "deepclaw",
package/src/service.ts CHANGED
@@ -1,4 +1,4 @@
1
- import type { OpenClawPluginApi } from "openclaw/plugin-sdk";
1
+ import type { OpenClawPluginApi } from "openclaw/plugin-sdk/core";
2
2
  import type { DeepClawConfig } from "./config.js";
3
3
  import { calculateCost } from "./pricing.js";
4
4