From 20da419b65076c9f101d33713dda21f0d2c27852 Mon Sep 17 00:00:00 2001 From: pc-gemini Date: Thu, 13 Aug 2026 22:43:56 +0900 Subject: [PATCH] docs(skill): consolidate command examples --- skills/xmemo/CHANGELOG.md | 5 +++++ skills/xmemo/SKILL.md | 14 ++++---------- skills/xmemo/scripts/xmemo-skill.mjs | 2 +- 3 files changed, 10 insertions(+), 11 deletions(-) diff --git a/skills/xmemo/CHANGELOG.md b/skills/xmemo/CHANGELOG.md index 693b76a..fd8c458 100644 --- a/skills/xmemo/CHANGELOG.md +++ b/skills/xmemo/CHANGELOG.md @@ -1,5 +1,10 @@ # XMemo Skill Change Log +## 1.1.8 + +- Consolidate repeated command examples in `SKILL.md`: document each canonical + command once, while retaining `auth-status` as a runtime compatibility alias. + ## 1.1.7 - Stop shipping `install.sh` and `install.ps1` inside the published Skill. Their diff --git a/skills/xmemo/SKILL.md b/skills/xmemo/SKILL.md index a71c7ce..252dba3 100644 --- a/skills/xmemo/SKILL.md +++ b/skills/xmemo/SKILL.md @@ -144,7 +144,6 @@ The Skill script handles all operations directly, including status checks and to ```text node scripts/xmemo-skill.mjs auth status [--verify] -node scripts/xmemo-skill.mjs auth-status [--verify] node scripts/xmemo-skill.mjs auth add --from-stdin --allow-plaintext node scripts/xmemo-skill.mjs auth claim-status [--allow-plaintext] node scripts/xmemo-skill.mjs auth claim-confirm [--allow-plaintext] @@ -160,15 +159,10 @@ variable in the launching environment to stop using it. ## Setup And Repair -If the bundled script reports auth or service errors, use the Skill diagnostics command: - -```text -node scripts/xmemo-skill.mjs doctor -node scripts/xmemo-skill.mjs doctor --anonymous -node scripts/xmemo-skill.mjs auth status --verify -node scripts/xmemo-skill.mjs auth-status --verify -node scripts/xmemo-skill.mjs auth claim-status -``` +If the bundled script reports auth or service errors, use the canonical commands +above: `doctor`, `doctor --anonymous`, `auth status --verify`, and +`auth claim-status`. The `auth-status` spelling remains a compatibility alias, +but it is intentionally not repeated in this reference. `doctor` retains authenticated diagnosis when a credential is available. `doctor --anonymous` performs the same service-health check without sending an diff --git a/skills/xmemo/scripts/xmemo-skill.mjs b/skills/xmemo/scripts/xmemo-skill.mjs index b08c3ff..6897f32 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.7'; +const SKILL_VERSION = '1.1.8'; 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';