deepclaw-openclaw 0.1.0 → 0.1.2

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.2 - GitHub Packages publishing prep
6
+
7
+ - Add GitHub Actions workflow support for publishing to npmjs and GitHub Packages.
8
+ - Document the scoped GitHub Packages install path as `@digitizers/deepclaw-openclaw`.
9
+
10
+ ## 0.1.1 - Metadata cleanup
11
+
12
+ - Mark `syncToken` as required in the OpenClaw plugin config schema for clearer marketplace/security metadata.
13
+ - Update README ownership line to Digitizer with the official website link.
14
+
5
15
  ## 0.1.0 - Public release candidate
6
16
 
7
17
  - Initial OpenClaw plugin package metadata.
package/README.md CHANGED
@@ -27,10 +27,24 @@ This plugin captures the raw usage shape exposed by OpenClaw, normalizes the imp
27
27
 
28
28
  ## Installation
29
29
 
30
+ From the public npm registry:
31
+
30
32
  ```bash
31
33
  npm install deepclaw-openclaw
32
34
  ```
33
35
 
36
+ From GitHub Packages, once the scoped mirror package has been published:
37
+
38
+ ```bash
39
+ # .npmrc
40
+ @digitizers:registry=https://npm.pkg.github.com
41
+ //npm.pkg.github.com/:_authToken=${GITHUB_TOKEN}
42
+
43
+ npm install @digitizers/deepclaw-openclaw
44
+ ```
45
+
46
+ The GitHub Packages build is published as the scoped alias `@digitizers/deepclaw-openclaw`; the canonical npmjs package remains `deepclaw-openclaw` for easier public installation.
47
+
34
48
  For local development or manual installation:
35
49
 
36
50
  ```bash
@@ -120,6 +134,7 @@ The package is intentionally narrow:
120
134
  - `LICENSE`
121
135
  - `SECURITY.md`
122
136
  - `CHANGELOG.md`
137
+ - `SKILL.md`
123
138
 
124
139
  ## Security
125
140
 
@@ -127,8 +142,8 @@ Do not commit sync tokens or OpenClaw runtime state. See [SECURITY.md](SECURITY.
127
142
 
128
143
  ## Status
129
144
 
130
- `0.1.0` is an initial public release candidate. APIs may still evolve with OpenClaw plugin hook changes.
145
+ `0.1.2` is an initial public release candidate. APIs may still evolve with OpenClaw plugin hook changes.
131
146
 
132
147
  ## License
133
148
 
134
- MIT © Ben Kalsky / Digitizers.
149
+ 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.2",
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",