suemo 0.1.9 → 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.9",
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",
@@ -49,16 +49,16 @@
49
49
  "@crustjs/plugins": "^0.0.20",
50
50
  "@crustjs/prompts": "^0.0.10",
51
51
  "@crustjs/style": "^0.0.6",
52
- "@logtape/file": "^2.0.4",
53
- "@logtape/logtape": "^2.0.4",
54
- "@mdrv/surreal-node": "latest",
52
+ "@logtape/file": "^2.0.5",
53
+ "@logtape/logtape": "^2.0.5",
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"
58
58
  },
59
59
  "devDependencies": {
60
- "@opencode-ai/plugin": "^1.3.0",
60
+ "@opencode-ai/plugin": "^1.3.2",
61
61
  "@types/bun": "^1.3.11",
62
- "typescript": "^5.9.3"
62
+ "typescript": "^6.0.2"
63
63
  }
64
64
  }
@@ -1,9 +1,8 @@
1
1
  ---
2
2
  name: suemo
3
- description: OpenCode-focused persistent memory workflow for suemo with CLI/MCP parity and versioned references.
3
+ description: OpenCode-focused persistent memory workflow for suemo with CLI/MCP parity and references.
4
4
  license: GPL-3.0-only
5
5
  compatibility: opencode
6
- version: 0.1.9
7
6
  ---
8
7
 
9
8
  # suemo skill
@@ -1,7 +1,6 @@
1
1
  ---
2
2
  name: agents-snippet
3
3
  description: AGENTS.md snippet optimized for suemo skill discovery and usage.
4
- version: 0.1.9
5
4
  ---
6
5
 
7
6
  # AGENTS.md snippet
@@ -1,7 +1,6 @@
1
1
  ---
2
2
  name: cli-reference
3
3
  description: CLI command reference for suemo v0.0.6 including skill access.
4
- version: 0.1.9
5
4
  ---
6
5
 
7
6
  # CLI reference
@@ -1,7 +1,6 @@
1
1
  ---
2
2
  name: core-workflow
3
3
  description: Canonical suemo operating loop for OpenCode agents.
4
- version: 0.1.9
5
4
  ---
6
5
 
7
6
  # Core workflow
@@ -1,7 +1,6 @@
1
1
  ---
2
2
  name: manual-test-plan
3
3
  description: Comprehensive manual test matrix for suemo features and commands.
4
- version: 0.1.9
5
4
  ---
6
5
 
7
6
  # Manual test plan
@@ -1,7 +1,6 @@
1
1
  ---
2
2
  name: mcp-reference
3
3
  description: MCP tool reference for suemo v0.0.6.
4
- version: 0.1.9
5
4
  ---
6
5
 
7
6
  # MCP tools
@@ -1,7 +1,6 @@
1
1
  ---
2
2
  name: schema-retention-longevity
3
3
  description: Long-term schema and retention design expectations for suemo.
4
- version: 0.1.9
5
4
  ---
6
5
 
7
6
  # Schema + retention longevity
@@ -1,7 +1,6 @@
1
1
  ---
2
2
  name: sync-local-vps
3
3
  description: Two-way sync manual scenario for local and VPS SurrealDB.
4
- version: 0.1.9
5
4
  ---
6
5
 
7
6
  # Local ↔ VPS sync scenario
package/src/AGENTS.md CHANGED
@@ -126,5 +126,3 @@ suemo skill manual-test-plan
126
126
  Load docs once per session unless requirements changed.
127
127
 
128
128
  ---
129
-
130
- _Version: 0.1.9 | Updated: 2026-03-24 | Summary: stricter schema + explicit completion contract_
@@ -1325,7 +1325,7 @@ const initFastembedCmd = init.sub('fastembed')
1325
1325
  'id',
1326
1326
  ...(manager.kind === 'systemd' ? ['systemctl'] : ['ln', 'chpst']),
1327
1327
  ])
1328
- requireArchPackages(['python-fastembed', 'python-fastapi', 'python-uvicorn'])
1328
+ requireArchPackages(['python-fastembed', 'python-fastapi', 'uvicorn'])
1329
1329
 
1330
1330
  const scriptContent = FASTEMBED_SCRIPT_TEXT
1331
1331
  const result = buildFastembedActions(scriptContent, manager)
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.9)
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.9'
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.9)
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 '@surrealdb/node'
4
+ import { createNodeEngines } from '@mdrv/surrealdb-node'
5
5
  import { createHash } from 'node:crypto'
6
6
  import { createRemoteEngines, Surreal } from 'surrealdb'
7
7