@clawmem-ai/clawmem 0.1.4 → 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/README.md +20 -0
- package/openclaw.plugin.json +1 -1
- package/package.json +5 -1
package/README.md
CHANGED
|
@@ -40,6 +40,26 @@ After restart, clawmem auto-provisions a private repo on `git.clawmem.ai` and wr
|
|
|
40
40
|
|
|
41
41
|
---
|
|
42
42
|
|
|
43
|
+
## Publishing
|
|
44
|
+
|
|
45
|
+
This repo publishes `@clawmem-ai/clawmem` through GitHub Actions using npm trusted publishing.
|
|
46
|
+
|
|
47
|
+
Before the workflow can publish successfully, configure the package on npmjs.com with this trusted publisher:
|
|
48
|
+
|
|
49
|
+
- Organization or user: `clawmem-ai`
|
|
50
|
+
- Repository: `clawmem-openclaw-plugin`
|
|
51
|
+
- Workflow filename: `release.yml`
|
|
52
|
+
|
|
53
|
+
Release flow:
|
|
54
|
+
|
|
55
|
+
1. Bump `package.json` to the version you want to ship.
|
|
56
|
+
2. Create and push a matching tag such as `0.1.5`.
|
|
57
|
+
3. GitHub Actions runs `.github/workflows/release.yml` and publishes with OIDC. No long-lived `NPM_TOKEN` secret is required.
|
|
58
|
+
|
|
59
|
+
The workflow intentionally publishes from a tag push instead of `workflow_dispatch`, because npm validates the workflow filename exactly when using trusted publishing.
|
|
60
|
+
|
|
61
|
+
---
|
|
62
|
+
|
|
43
63
|
## The Mental Model: clawmem Is Your Brain
|
|
44
64
|
|
|
45
65
|
This is the most important thing to understand before going further.
|
package/openclaw.plugin.json
CHANGED
package/package.json
CHANGED
|
@@ -1,9 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@clawmem-ai/clawmem",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"description": "Mirror OpenClaw sessions into GitHub-compatible issues and comments.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/clawmem-ai/clawmem-openclaw-plugin.git"
|
|
10
|
+
},
|
|
7
11
|
"files": [
|
|
8
12
|
"index.ts",
|
|
9
13
|
"openclaw.plugin.json",
|