@mono-agent/memory-supermemory 0.5.1 → 0.6.0

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
@@ -37,7 +37,7 @@ const block = await store.load("conv-1", "preferences");
37
37
  markdown block capped at `maxBytes`. Degrades to `undefined` on any error.
38
38
  - `appendHostSummary` / `scheduleCapture` → `POST /v3/documents` (one-liner / full turn,
39
39
  async server-side extraction). Writes never throw.
40
- - `recall(query)` → hits shaped for the in-app `memory_recall` MCP tool.
40
+ - `recall(query)` → hits shaped for the in-app `MemoryRecall` MCP tool.
41
41
 
42
42
  ## Public API
43
43
 
@@ -58,7 +58,7 @@ injectable seam (`SupermemoryFetch`) so the store is fully unit-testable without
58
58
  ## What This Package Does Not Own
59
59
 
60
60
  It does not own backend selection (that is `config.memory.backend`) or the
61
- `memory_recall` tool wiring; both are resolved in `@mono-agent/agent-app`. It also does not own
61
+ `MemoryRecall` tool wiring; both are resolved in `@mono-agent/agent-app`. It also does not own
62
62
  the Supermemory service itself (extraction, consolidation, and storage all happen
63
63
  server-side). It does not run BuJo scheduled consolidation and ignores `mode`/`embeddings`/`llm`.
64
64
 
package/dist/store.d.ts CHANGED
@@ -43,7 +43,7 @@ export declare class SupermemoryMemoryStore implements MemoryStore {
43
43
  /** Drain queued captures (HTTP client owns no handle to close). */
44
44
  close(): Promise<void>;
45
45
  /**
46
- * Recall hits shaped for the in-app `memory_recall` MCP tool (Stage 3 reuses the bujo formatter).
46
+ * Recall hits shaped for the in-app `MemoryRecall` MCP tool (Stage 3 reuses the bujo formatter).
47
47
  * Unlike `load`, this propagates client errors so the recall tool can report a search failure.
48
48
  */
49
49
  recall(query: string, options?: {
package/dist/store.js CHANGED
@@ -80,7 +80,7 @@ export class SupermemoryMemoryStore {
80
80
  await this.flush();
81
81
  }
82
82
  /**
83
- * Recall hits shaped for the in-app `memory_recall` MCP tool (Stage 3 reuses the bujo formatter).
83
+ * Recall hits shaped for the in-app `MemoryRecall` MCP tool (Stage 3 reuses the bujo formatter).
84
84
  * Unlike `load`, this propagates client errors so the recall tool can report a search failure.
85
85
  */
86
86
  async recall(query, options) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mono-agent/memory-supermemory",
3
- "version": "0.5.1",
3
+ "version": "0.6.0",
4
4
  "description": "Supermemory external memory backend: a MemoryStore over Supermemory's REST API (local OSS binary or hosted cloud).",
5
5
  "type": "module",
6
6
  "license": "UNLICENSED",
@@ -18,7 +18,7 @@
18
18
  "README.md"
19
19
  ],
20
20
  "dependencies": {
21
- "@mono-agent/agent-contracts": "0.5.1"
21
+ "@mono-agent/agent-contracts": "0.6.0"
22
22
  },
23
23
  "publishConfig": {
24
24
  "access": "public"