context-mode 1.0.104 → 1.0.105

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.
@@ -13,10 +13,10 @@ Run diagnostics and display results directly in the conversation.
13
13
 
14
14
  ## Instructions
15
15
 
16
- 1. Call the `ctx_doctor` MCP tool directly. It runs all checks server-side and returns a markdown checklist.
17
- 2. Display the results verbatim — they are already formatted as a checklist with `[x]` PASS, `[ ]` FAIL, `[-]` WARN.
16
+ 1. Call the `ctx_doctor` MCP tool directly. It runs all checks server-side and returns a plain-text status report.
17
+ 2. Display the results verbatim — they are already formatted with plain-text status prefixes: `[OK]` PASS, `[FAIL]` FAIL, `[WARN]` WARN. Renderer-safe (no markdown task-list syntax) for cross-client compatibility (e.g., Z.ai GLM).
18
18
  3. **Fallback** (only if MCP tool call fails): Derive the **plugin root** from this skill's base directory (go up 2 levels — remove `/skills/ctx-doctor`), then run with Bash:
19
19
  ```
20
20
  CLI="<PLUGIN_ROOT>/cli.bundle.mjs"; [ ! -f "$CLI" ] && CLI="<PLUGIN_ROOT>/build/cli.js"; node "$CLI" doctor
21
21
  ```
22
- Re-display results as a markdown checklist.
22
+ Re-display results verbatim with the same `[OK]`/`[FAIL]`/`[WARN]` prefixes.