suemo 0.1.10 → 0.1.11

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "suemo",
3
- "version": "0.1.10",
3
+ "version": "0.1.11",
4
4
  "description": "Persistent semantic memory for AI agents — backed by SurrealDB.",
5
5
  "author": {
6
6
  "name": "Umar Alfarouk",
@@ -51,7 +51,7 @@
51
51
  "@crustjs/style": "^0.0.6",
52
52
  "@logtape/file": "^2.0.5",
53
53
  "@logtape/logtape": "^2.0.5",
54
- "@mdrv/surreal-node": "^3.0.3",
54
+ "@mdrv/surrealdb-node": "^3.0.3",
55
55
  "elysia": "^1.4.28",
56
56
  "surrealdb": "^2.0.3",
57
57
  "zod": "^4.3.6"
package/src/db/client.ts CHANGED
@@ -3,7 +3,7 @@
3
3
  // createNodeEngines() patches in the Node.js WebSocket implementation.
4
4
  import type { SurrealTarget } from '@/src/config.ts'
5
5
  import { getLogger } from '@/src/logger.ts'
6
- import { createNodeEngines } from '@mdrv/surreal-node'
6
+ import { createNodeEngines } from '@mdrv/surrealdb-node'
7
7
  import { createRemoteEngines, Surreal } from 'surrealdb'
8
8
 
9
9
  const log = getLogger(['suemo', 'db', 'client'])
@@ -1,5 +1,5 @@
1
1
  /**
2
- * suemo OpenCode plugin (v0.1.10)
2
+ * suemo OpenCode plugin (v0.1.11)
3
3
  *
4
4
  * Purpose:
5
5
  * - Inject strict, always-on suemo memory workflow instructions.
@@ -12,7 +12,7 @@
12
12
  import type { Plugin } from '@opencode-ai/plugin'
13
13
 
14
14
  const SERVICE = 'suemo-plugin'
15
- const PLUGIN_VERSION = '0.1.10'
15
+ const PLUGIN_VERSION = '0.1.11'
16
16
  const PROTOCOL_MARKER = 'Suemo Persistent Memory — Protocol'
17
17
 
18
18
  interface SystemTransformOutput {
@@ -38,7 +38,7 @@ interface PluginLogExtra {
38
38
  [key: string]: unknown
39
39
  }
40
40
 
41
- const MEMORY_INSTRUCTIONS = `## Suemo Persistent Memory — Protocol (v0.1.10)
41
+ const MEMORY_INSTRUCTIONS = `## Suemo Persistent Memory — Protocol (v0.1.11)
42
42
 
43
43
  You have access to suemo persistent memory tools (commonly prefixed as \`suemo_*\`).
44
44
 
package/src/sync.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  import type { SurrealTarget } from '@/src/config.ts'
2
2
  import { getLogger } from '@/src/logger.ts'
3
3
  import type { SyncResult } from '@/src/types.ts'
4
- import { createNodeEngines } from '@mdrv/surreal-node'
4
+ import { createNodeEngines } from '@mdrv/surrealdb-node'
5
5
  import { createHash } from 'node:crypto'
6
6
  import { createRemoteEngines, Surreal } from 'surrealdb'
7
7