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
5 changes: 5 additions & 0 deletions skills/xmemo/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
14 changes: 4 additions & 10 deletions skills/xmemo/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand All @@ -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
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.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';
Expand Down
Loading