context-mode 1.0.7 → 1.0.9
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.
- package/.claude-plugin/marketplace.json +2 -2
- package/.claude-plugin/plugin.json +1 -1
- package/build/cli.js +42 -21
- package/build/server.js +1 -1
- package/cli.bundle.mjs +438 -0
- package/hooks/pretooluse.mjs +3 -1
- package/package.json +3 -2
- package/server.bundle.mjs +94 -76
- package/skills/ctx-doctor/SKILL.md +1 -1
- package/skills/ctx-upgrade/SKILL.md +1 -1
|
@@ -16,7 +16,7 @@ Run diagnostics and display results directly in the conversation.
|
|
|
16
16
|
1. Derive the **plugin root** from this skill's base directory (go up 2 levels — remove `/skills/ctx-doctor`).
|
|
17
17
|
2. Run with Bash:
|
|
18
18
|
```
|
|
19
|
-
|
|
19
|
+
CLI="<PLUGIN_ROOT>/cli.bundle.mjs"; [ ! -f "$CLI" ] && CLI="<PLUGIN_ROOT>/build/cli.js"; node "$CLI" doctor
|
|
20
20
|
```
|
|
21
21
|
3. **IMPORTANT**: After the Bash tool completes, re-display the key results as markdown text directly in the conversation so the user sees them without expanding the tool output. Format as a checklist:
|
|
22
22
|
```
|
|
@@ -16,7 +16,7 @@ Pull latest from GitHub and reinstall the plugin.
|
|
|
16
16
|
1. Derive the **plugin root** from this skill's base directory (go up 2 levels — remove `/skills/ctx-upgrade`).
|
|
17
17
|
2. Run with Bash:
|
|
18
18
|
```
|
|
19
|
-
|
|
19
|
+
CLI="<PLUGIN_ROOT>/cli.bundle.mjs"; [ ! -f "$CLI" ] && CLI="<PLUGIN_ROOT>/build/cli.js"; node "$CLI" upgrade
|
|
20
20
|
```
|
|
21
21
|
3. **IMPORTANT**: After the Bash tool completes, re-display the key results as markdown text directly in the conversation so the user sees them without expanding the tool output. Format as:
|
|
22
22
|
```
|