suemo 0.1.1 → 0.1.2

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.1",
3
+ "version": "0.1.2",
4
4
  "description": "Persistent semantic memory for AI agents — backed by SurrealDB.",
5
5
  "author": {
6
6
  "name": "Umar Alfarouk",
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  name: suemo
3
3
  description: OpenCode-focused persistent memory workflow for suemo with CLI/MCP parity and versioned references.
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  ---
6
6
 
7
7
  # suemo skill
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  name: agents-snippet
3
3
  description: AGENTS.md snippet optimized for suemo skill discovery and usage.
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  ---
6
6
 
7
7
  # AGENTS.md snippet
@@ -1,7 +1,7 @@
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.1
4
+ version: 0.1.2
5
5
  ---
6
6
 
7
7
  # CLI reference
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  name: core-workflow
3
3
  description: Canonical suemo operating loop for OpenCode agents.
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  ---
6
6
 
7
7
  # Core workflow
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  name: manual-test-plan
3
3
  description: Comprehensive manual test matrix for suemo features and commands.
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  ---
6
6
 
7
7
  # Manual test plan
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  name: mcp-reference
3
3
  description: MCP tool reference for suemo v0.0.6.
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  ---
6
6
 
7
7
  # MCP tools
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  name: schema-retention-longevity
3
3
  description: Long-term schema and retention design expectations for suemo.
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  ---
6
6
 
7
7
  # Schema + retention longevity
@@ -1,7 +1,7 @@
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.1
4
+ version: 0.1.2
5
5
  ---
6
6
 
7
7
  # Local ↔ VPS sync scenario
@@ -6,7 +6,7 @@ const PROJECT_ROOT = dirname(
6
6
  fileURLToPath(import.meta.resolve('@/package.json')),
7
7
  )
8
8
 
9
- import SKILL_FILE_PATH from '@/skills/suemo/SKILL.md' with { type: 'text' }
9
+ const SKILL_FILE_PATH = `${PROJECT_ROOT}/skills/suemo/SKILL.md`
10
10
  const SKILL_REFERENCES_DIR = `${PROJECT_ROOT}/skills/suemo/references/`
11
11
 
12
12
  export function skillFilePath(): string {
@@ -29,7 +29,7 @@ export function skillReferencePath(reference: string): string | null {
29
29
  if (!cleaned) return null
30
30
  const available = new Set(listSkillReferences())
31
31
  if (!available.has(cleaned)) return null
32
- return fileURLToPath(new URL(`${PROJECT_ROOT}/skills/suemo/references/${cleaned}.md`, import.meta.url))
32
+ return `${PROJECT_ROOT}/skills/suemo/references/${cleaned}.md`
33
33
  }
34
34
 
35
35
  export function readSkillReference(reference: string): { name: string; path: string; content: string } | null {