suemo 0.1.9 → 0.1.10
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 +6 -6
- package/skills/suemo/SKILL.md +1 -2
- package/skills/suemo/references/agents-snippet.md +0 -1
- package/skills/suemo/references/cli-reference.md +0 -1
- package/skills/suemo/references/core-workflow.md +0 -1
- package/skills/suemo/references/manual-test-plan.md +0 -1
- package/skills/suemo/references/mcp-reference.md +0 -1
- package/skills/suemo/references/schema-retention-longevity.md +0 -1
- package/skills/suemo/references/sync-local-vps.md +0 -1
- package/src/AGENTS.md +0 -2
- package/src/cli/commands/init.ts +1 -1
- package/src/opencode/plugin.ts +3 -3
- package/src/sync.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "suemo",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.10",
|
|
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.
|
|
53
|
-
"@logtape/logtape": "^2.0.
|
|
54
|
-
"@mdrv/surreal-node": "
|
|
52
|
+
"@logtape/file": "^2.0.5",
|
|
53
|
+
"@logtape/logtape": "^2.0.5",
|
|
54
|
+
"@mdrv/surreal-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.
|
|
60
|
+
"@opencode-ai/plugin": "^1.3.2",
|
|
61
61
|
"@types/bun": "^1.3.11",
|
|
62
|
-
"typescript": "^
|
|
62
|
+
"typescript": "^6.0.2"
|
|
63
63
|
}
|
|
64
64
|
}
|
package/skills/suemo/SKILL.md
CHANGED
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: suemo
|
|
3
|
-
description: OpenCode-focused persistent memory workflow for suemo with CLI/MCP parity and
|
|
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
|
package/src/AGENTS.md
CHANGED
package/src/cli/commands/init.ts
CHANGED
|
@@ -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', '
|
|
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/opencode/plugin.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* suemo OpenCode plugin (v0.1.
|
|
2
|
+
* suemo OpenCode plugin (v0.1.10)
|
|
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.
|
|
15
|
+
const PLUGIN_VERSION = '0.1.10'
|
|
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.
|
|
41
|
+
const MEMORY_INSTRUCTIONS = `## Suemo Persistent Memory — Protocol (v0.1.10)
|
|
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 '@
|
|
4
|
+
import { createNodeEngines } from '@mdrv/surreal-node'
|
|
5
5
|
import { createHash } from 'node:crypto'
|
|
6
6
|
import { createRemoteEngines, Surreal } from 'surrealdb'
|
|
7
7
|
|