@bd7pil/opencode-deep-memory 0.3.4 → 0.3.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 +16 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -176,6 +176,22 @@ npm install
|
|
|
176
176
|
npm run verify # typecheck + test (363) + build + smoke (49)
|
|
177
177
|
```
|
|
178
178
|
|
|
179
|
+
## CI/CD (npm Trusted Publishing)
|
|
180
|
+
|
|
181
|
+
Releases use npm OIDC Trusted Publishing — no token needed. To set up for a fork:
|
|
182
|
+
|
|
183
|
+
1. **npmjs.com** → Package Settings → Trusted Publishers → Add:
|
|
184
|
+
- Owner: your GitHub username
|
|
185
|
+
- Repository: your fork name
|
|
186
|
+
- Workflow filename: `publish.yml`
|
|
187
|
+
2. **package.json** → update `repository.url` to match your fork
|
|
188
|
+
3. **Push a tag** → GitHub Actions auto-publishes:
|
|
189
|
+
```bash
|
|
190
|
+
git tag v1.0.0 && git push origin v1.0.0
|
|
191
|
+
```
|
|
192
|
+
|
|
193
|
+
Requirements: npm CLI ≥ 11.5.1, Node.js ≥ 22, `id-token: write` permission, public repository.
|
|
194
|
+
|
|
179
195
|
## License
|
|
180
196
|
|
|
181
197
|
MIT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bd7pil/opencode-deep-memory",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.5",
|
|
4
4
|
"description": "Persistent context intelligence for OpenCode — cross-session memory, compaction checkpoints, context reconstruction.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|