waku-memory 0.4.0 → 0.4.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.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "waku",
3
- "version": "0.4.0",
4
- "description": "Waku Memory: durable memory for your Codex sessions. memory.recall brings what is known about a project into a session; memory.remember keeps what matters; the plugin's hooks open each session with a brief and send each turn to be remembered.",
3
+ "version": "0.4.1",
4
+ "description": "Waku Memory: durable memory for your Codex sessions. memory.recall brings what is known about a project into a session; memory.remember keeps what matters; the plugin's hooks open each session with a brief and send each turn to be remembered. What you type and what the agent replies is sent to Waku's servers and on to Anthropic, which is what turns a session into memories; your files, the commands the agent runs and its reasoning are not. This is an alpha and its data can be lost.",
5
5
  "skills": "./skills/",
6
6
  "hooks": "./hooks/hooks.json",
7
7
  "interface": {
package/dist/capture.js CHANGED
@@ -252,6 +252,15 @@ export function hookInvocation(execPath, indexPath) {
252
252
  // Codex-only machine has no other way to learn that the same three hooks
253
253
  // exist there too, or that installing the Waku plugin instead is the other
254
254
  // route to the same events (codexPluginPresent, this file's own enable()).
255
+ //
256
+ // This text now exists in four places with no mechanism sharing it (found
257
+ // 2026-09-10, status.md item 9's dated paragraph): this DISCLOSURE, the
258
+ // Codex plugin manifest's "description" (.codex-plugin/plugin.json, pinned
259
+ // by plugin.test.mjs), skills/waku/SKILL.md's "sent to Waku" bullet, and
260
+ // the frontend's OAuth consent page (waku-memory-frontend
261
+ // app/oauth/consent/page.tsx, its CONSENT_DISCLOSURE constant). A change to
262
+ // the two facts here -- where captured content goes, and that this is an
263
+ // alpha -- has to be carried to the other three by hand.
255
264
  export const DISCLOSURE = 'Captured content is sent to our servers and to Anthropic for extraction. ' +
256
265
  'This is an alpha whose data can be lost. ' +
257
266
  'What you type, what the agent replies, and the names of the tools it uses are sent; ' +
package/dist/hook.js CHANGED
@@ -63,7 +63,7 @@ export { SESSION_END_HOOK_TIMEOUT_S, SESSION_END_TIMEOUT_MS } from "./harnesses.
63
63
  // hook.test.mjs's drift check (against package.json) both need it; task 14
64
64
  // (spec 012 §9) bumps this, package.json and the plugin manifest
65
65
  // (.codex-plugin/plugin.json) to 0.3.0 together.
66
- export const SHIM_VERSION = '0.4.0';
66
+ export const SHIM_VERSION = '0.4.1';
67
67
  // Exported for capture.ts, which writes the file this module reads.
68
68
  export const CONFIG_FILE_NAME = 'config.json';
69
69
  // Same-directory temp file + rename, exactly atomicWriteJson's technique in
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waku-memory",
3
- "version": "0.4.0",
3
+ "version": "0.4.1",
4
4
  "description": "Install Waku Memory into your agent harness, and turn on automatic session capture.",
5
5
  "keywords": ["mcp", "memory", "claude-code", "agent", "waku"],
6
6
  "homepage": "https://github.com/ShenSeanChen/waku-memory-backend/tree/spec-driven/shim#readme",
@@ -16,8 +16,17 @@ learn, and brings it back into later sessions.
16
16
  a procedure or a fact they will want next time. Use their words. Do not
17
17
  store secrets, credentials or file contents.
18
18
  - What the person types and what you reply is sent to Waku after each turn
19
- by the plugin's hooks; tool output is not.
19
+ by the plugin's hooks; tool output is not. It goes on to Anthropic, which
20
+ is what turns a session into memories. This is an alpha and its data can
21
+ be lost.
20
22
 
21
23
  One-time setup the person does: after installing, Codex asks them to
22
24
  review and trust this plugin's hooks (`/hooks` in the CLI). Until then
23
25
  the brief and the capture do not run.
26
+
27
+ <!-- This bullet's two facts (where captured content goes, and that this
28
+ is an alpha) also live in capture.ts's DISCLOSURE, the Codex plugin
29
+ manifest's "description" (.codex-plugin/plugin.json), and the
30
+ frontend's OAuth consent page (waku-memory-frontend
31
+ app/oauth/consent/page.tsx's CONSENT_DISCLOSURE). No mechanism shares
32
+ the string; a change here has to be carried to the other three. -->