debugsk 0.0.5 → 0.0.6

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.
Files changed (2) hide show
  1. package/README.md +21 -5
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # debugsk
2
2
 
3
- Debug investigation CLI (server + Codex skill management) for hypothesis-driven workflows.
3
+ Debug investigation CLI (server + skill management for Claude Code and Codex) for hypothesis-driven workflows.
4
4
 
5
5
  ## Usage
6
6
 
@@ -24,12 +24,28 @@ Status:
24
24
  npx debugsk@latest server status --json
25
25
  ```
26
26
 
27
- Codex skill install/update/remove:
27
+ ## Claude Code Skill
28
+
29
+ Install the skill directly to `~/.claude/skills/`:
30
+
31
+ ```
32
+ npx debugsk@latest claude install -u
33
+ npx debugsk@latest claude update -u
34
+ npx debugsk@latest claude remove -u
35
+ ```
36
+
37
+ Default install target is `./.claude/skills` (current directory). Use `-u` to install to `~/.claude/skills`.
38
+
39
+ > **Warning**: Skills installed via npx take priority over plugin-installed skills. If you have both the plugin and a npx-installed skill, the npx-installed version will be used. To revert to the plugin version, run `npx debugsk@latest claude remove`.
40
+
41
+ ## Codex Skill
42
+
43
+ Install the skill to `~/.codex/skills/`:
28
44
 
29
45
  ```
30
- npx debugsk@latest codex install
31
- npx debugsk@latest codex update
32
- npx debugsk@latest codex remove
46
+ npx debugsk@latest codex install -u
47
+ npx debugsk@latest codex update -u
48
+ npx debugsk@latest codex remove -u
33
49
  ```
34
50
 
35
51
  Default install target is `./.codex/skills` (current directory). Use `-u` to install to `~/.codex/skills`.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "debugsk",
3
- "version": "0.0.5",
3
+ "version": "0.0.6",
4
4
  "description": "Debug investigation CLI: server + skill management for Claude Code and Codex hypothesis-driven workflows.",
5
5
  "bin": {
6
6
  "debugsk": "dist/cli.js"
@@ -43,4 +43,4 @@
43
43
  "typescript": "^5.6.3",
44
44
  "vitest": "^3.0.4"
45
45
  }
46
- }
46
+ }