@ngo-a/native-memory-citations 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/README.md CHANGED
@@ -107,11 +107,13 @@ earlier citations stale even when the cited lines themselves are unchanged.
107
107
 
108
108
  ## Install
109
109
 
110
- ```bash
111
- openclaw plugins install ./native-memory-citations # current/private local checkout
112
- openclaw plugins install clawhub:ngo-a/native-memory-citations # future publish mode
113
- openclaw plugins install @ngo-a/native-memory-citations # npm publish mode
114
- ```
110
+ From npm (recommended):
111
+
112
+ openclaw plugins install @ngo-a/native-memory-citations
113
+
114
+ From a local checkout (development):
115
+
116
+ openclaw plugins install ./native-memory-citations
115
117
 
116
118
  Reload the Gateway after installing so the plugin host exposes the tools.
117
119
 
@@ -127,11 +129,19 @@ is redacted before it leaves the plugin; named secret patterns provide nicer
127
129
  labels, while the high-entropy backstop handles unknown token formats. Redaction
128
130
  is not an authorization or access-control boundary.
129
131
 
130
- ## Publish
132
+ ## Releasing
133
+
134
+ Published to npm as `@ngo-a/native-memory-citations`.
135
+
136
+ To cut a new release:
137
+
138
+ 1. Make changes and confirm the suite is green: `npm test`
139
+ 2. Bump `version` in `package.json` (e.g. `0.1.0` -> `0.1.1`) per semver.
140
+ 3. `npm publish`
131
141
 
132
- Deferred until distribution mode. When publishing: remove `private`, add the
133
- `files` allowlist and `prepublishOnly` script, then
134
- `clawhub package publish ngo-a/native-memory-citations` (or `npm publish`).
142
+ The `prepublishOnly` script rebuilds `dist/` first, and `publishConfig.access`
143
+ is `public`, so no extra flags are needed. A published version number cannot be
144
+ overwritten; fixes ship as a new version.
135
145
 
136
146
  ## License
137
147
 
@@ -30,7 +30,7 @@
30
30
  },
31
31
  "additionalProperties": false
32
32
  },
33
- "version": "0.1.0",
33
+ "version": "0.1.1",
34
34
  "contracts": {
35
35
  "tools": [
36
36
  "native_memory_search",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ngo-a/native-memory-citations",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "type": "module",
5
5
  "description": "Native OpenClaw plugin for cited local memory search and retrieval.",
6
6
  "license": "MIT",