@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 +19 -9
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
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
|
-
|
|
111
|
-
|
|
112
|
-
openclaw plugins install
|
|
113
|
-
|
|
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
|
-
##
|
|
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
|
-
|
|
133
|
-
`
|
|
134
|
-
|
|
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
|
|
package/openclaw.plugin.json
CHANGED