From c28f7fe91eb2c1a409e13ba0e9952df5c0e6293b Mon Sep 17 00:00:00 2001 From: pc-gemini Date: Wed, 19 Aug 2026 22:23:26 +0900 Subject: [PATCH] docs(skill): clarify standalone discovery description --- skills/xmemo/CHANGELOG.md | 8 ++++++++ skills/xmemo/SKILL.md | 2 +- skills/xmemo/scripts/xmemo-skill.mjs | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/skills/xmemo/CHANGELOG.md b/skills/xmemo/CHANGELOG.md index 6a368ed..101886f 100644 --- a/skills/xmemo/CHANGELOG.md +++ b/skills/xmemo/CHANGELOG.md @@ -1,5 +1,13 @@ # XMemo Skill Change Log +## 1.1.11 + +- Simplify the standalone Skill description so agents can discover its core + memory, continuity, TODO, expense, and diagnostics workflows without an + exhaustive command list. +- Preserve the existing runtime commands, authentication, scopes, service + requests, and MCP fallback behavior. + ## 1.1.10 - Clarify plain-text `doctor` output: an explicit `--anonymous` health check diff --git a/skills/xmemo/SKILL.md b/skills/xmemo/SKILL.md index c751dee..659fc86 100644 --- a/skills/xmemo/SKILL.md +++ b/skills/xmemo/SKILL.md @@ -1,6 +1,6 @@ --- name: xmemo-memory -description: Persistent user-owned memory for agents with standalone runtime execution. Use when an agent should remember, recall, search memory, preserve restart continuity, manage TODOs, record expenses, diagnose XMemo auth, or operate XMemo even when MCP tools are not configured. +description: Persistent, user-owned memory for agents. Use the standalone runtime to remember, recall, search, preserve restart continuity, manage TODOs and expenses, or diagnose XMemo when MCP tools are unavailable. --- # XMemo Memory diff --git a/skills/xmemo/scripts/xmemo-skill.mjs b/skills/xmemo/scripts/xmemo-skill.mjs index 38802e5..9001b46 100644 --- a/skills/xmemo/scripts/xmemo-skill.mjs +++ b/skills/xmemo/scripts/xmemo-skill.mjs @@ -13,7 +13,7 @@ import os from 'node:os'; import readline from 'node:readline'; import { randomUUID } from 'node:crypto'; -const SKILL_VERSION = '1.1.10'; +const SKILL_VERSION = '1.1.11'; 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';