deepclaw-openclaw 0.1.1 → 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 +5 -0
- package/README.md +15 -1
- package/package.json +1 -1
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.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
|
+
|
|
5
10
|
## 0.1.1 - Metadata cleanup
|
|
6
11
|
|
|
7
12
|
- Mark `syncToken` as required in the OpenClaw plugin config schema for clearer marketplace/security 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
|
|
@@ -128,7 +142,7 @@ Do not commit sync tokens or OpenClaw runtime state. See [SECURITY.md](SECURITY.
|
|
|
128
142
|
|
|
129
143
|
## Status
|
|
130
144
|
|
|
131
|
-
`0.1.
|
|
145
|
+
`0.1.2` is an initial public release candidate. APIs may still evolve with OpenClaw plugin hook changes.
|
|
132
146
|
|
|
133
147
|
## License
|
|
134
148
|
|
package/package.json
CHANGED