deepclaw-openclaw 0.1.0 → 0.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,11 @@
2
2
 
3
3
  All notable changes to this project will be documented here.
4
4
 
5
+ ## 0.1.1 - Metadata cleanup
6
+
7
+ - Mark `syncToken` as required in the OpenClaw plugin config schema for clearer marketplace/security metadata.
8
+ - Update README ownership line to Digitizer with the official website link.
9
+
5
10
  ## 0.1.0 - Public release candidate
6
11
 
7
12
  - Initial OpenClaw plugin package metadata.
package/README.md CHANGED
@@ -120,6 +120,7 @@ The package is intentionally narrow:
120
120
  - `LICENSE`
121
121
  - `SECURITY.md`
122
122
  - `CHANGELOG.md`
123
+ - `SKILL.md`
123
124
 
124
125
  ## Security
125
126
 
@@ -127,8 +128,8 @@ Do not commit sync tokens or OpenClaw runtime state. See [SECURITY.md](SECURITY.
127
128
 
128
129
  ## Status
129
130
 
130
- `0.1.0` is an initial public release candidate. APIs may still evolve with OpenClaw plugin hook changes.
131
+ `0.1.1` is an initial public release candidate. APIs may still evolve with OpenClaw plugin hook changes.
131
132
 
132
133
  ## License
133
134
 
134
- MIT © Ben Kalsky / Digitizers.
135
+ MIT © Ben Kalsky / [Digitizer](https://digitizer.co.il).
package/SKILL.md ADDED
@@ -0,0 +1,62 @@
1
+ ---
2
+ name: deepclaw-openclaw
3
+ description: OpenClaw observability plugin for DeepClaw — streams real-time LLM usage, token, cache, reasoning, and cost telemetry into DeepClaw.
4
+ version: 0.1.0
5
+ author: Ben Kalsky / Digitizers
6
+ license: MIT
7
+ tags:
8
+ - openclaw
9
+ - plugin
10
+ - observability
11
+ - deepclaw
12
+ - llm-costs
13
+ - llm-observability
14
+ - cost-tracking
15
+ ---
16
+
17
+ # DeepClaw OpenClaw Plugin
18
+
19
+ `deepclaw-openclaw` is an OpenClaw plugin that sends LLM usage telemetry from OpenClaw to DeepClaw.
20
+
21
+ ## What it tracks
22
+
23
+ - Provider and model
24
+ - Input/output tokens
25
+ - Cache read/write tokens
26
+ - Reasoning/thinking tokens
27
+ - Per-call and per-session cost breakdowns
28
+ - `costSource` metadata for auditability
29
+
30
+ ## Install
31
+
32
+ ```bash
33
+ npm install deepclaw-openclaw
34
+ ```
35
+
36
+ npm package: https://www.npmjs.com/package/deepclaw-openclaw
37
+ GitHub: https://github.com/Digitizers/deepclaw-openclaw
38
+
39
+ ## Configure
40
+
41
+ ```yaml
42
+ plugins:
43
+ deepclaw-openclaw:
44
+ enabled: true
45
+ syncToken: "YOUR_DEEPCLAW_SYNC_TOKEN"
46
+ instanceId: "prod-agent-01"
47
+ apiUrl: "https://app.deep-claw.com"
48
+ flushIntervalMs: 5000
49
+ debug: false
50
+ ```
51
+
52
+ Environment variables are also supported:
53
+
54
+ - `DEEPCLAW_SYNC_TOKEN`
55
+ - `DEEPCLAW_INSTANCE_ID`
56
+ - `DEEPCLAW_API_URL`
57
+
58
+ ## Status
59
+
60
+ Initial public release candidate: `0.1.0`.
61
+
62
+ For full documentation, see the repository README.
@@ -5,6 +5,7 @@
5
5
  "configSchema": {
6
6
  "type": "object",
7
7
  "additionalProperties": false,
8
+ "required": ["syncToken"],
8
9
  "properties": {
9
10
  "enabled": { "type": "boolean" },
10
11
  "apiUrl": { "type": "string" },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "deepclaw-openclaw",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
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": {
@@ -62,11 +62,19 @@
62
62
  "README.md",
63
63
  "LICENSE",
64
64
  "CHANGELOG.md",
65
- "SECURITY.md"
65
+ "SECURITY.md",
66
+ "SKILL.md"
66
67
  ],
67
68
  "openclaw": {
68
69
  "type": "plugin",
69
70
  "category": "observability",
71
+ "compat": {
72
+ "pluginApi": ">=2026.3.2",
73
+ "minGatewayVersion": "2026.3.2"
74
+ },
75
+ "build": {
76
+ "openclawVersion": "2026.4.24"
77
+ },
70
78
  "tags": [
71
79
  "deepclaw",
72
80
  "cost-tracking",