Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions skills/xmemo/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# XMemo Skill Change Log

## 1.1.14

- Align the documented standalone Skill runtime with the MemoryOS Node.js
baseline: Node.js 22.22.0 or newer.
- Keep the runtime behavior, authentication, scopes, service APIs, and package
metadata unchanged.

## 1.1.13

- Add the read-only `recall-context` command for the service's bounded,
Expand Down
3 changes: 2 additions & 1 deletion skills/xmemo/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ XMemo supports two parallel integration paths:
1. **Bundled Skill script** at `scripts/xmemo-skill.mjs` (primary standalone direct REST API integration, fully self-contained and zero-dependency).
2. **XMemo MCP tools** (when running in environments that natively host the XMemo MCP server).

Run bundled commands from the Skill root with Node.js 20 or newer.
Run bundled commands from the Skill root with Node.js 22.22.0 or newer. This
matches the MemoryOS service and repository runtime baseline.

## Hosted Discovery Boundary

Expand Down
2 changes: 1 addition & 1 deletion skills/xmemo/references/operations.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ bundled `xmemo` Skill. This is the primary standalone runtime for direct REST ac

XMemo supports two parallel integration paths:

1. **Bundled Skill script** (`node scripts/xmemo-skill.mjs <command>`), which directly integrates with the XMemo REST API using stored credentials. Run commands from the Skill root with Node.js 20 or newer.
1. **Bundled Skill script** (`node scripts/xmemo-skill.mjs <command>`), which directly integrates with the XMemo REST API using stored credentials. Run commands from the Skill root with Node.js 22.22.0 or newer, matching the MemoryOS service and repository runtime baseline.
2. **XMemo MCP tools** (when running in environments that natively host the XMemo MCP server).

Credential resolution is `XMEMO_KEY` first, then the user-scoped credential
Expand Down
2 changes: 1 addition & 1 deletion skills/xmemo/scripts/xmemo-skill.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import os from 'node:os';
import readline from 'node:readline';
import { randomUUID } from 'node:crypto';

const SKILL_VERSION = '1.1.13';
const SKILL_VERSION = '1.1.14';
const credentialsPath = path.join(os.homedir(), '.xmemo', 'skill-credentials.json');
const registrationPath = path.join(os.homedir(), '.xmemo', 'skill-registration.json');
const SCRIPT_COMMAND = 'node scripts/xmemo-skill.mjs';
Expand Down
Loading