debugsk 0.0.1

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/README.md ADDED
@@ -0,0 +1,36 @@
1
+ # debugsk
2
+
3
+ Debug investigation CLI (server + Codex skill management) for hypothesis-driven workflows.
4
+
5
+ ## Usage
6
+
7
+ Start the local log server in background and print JSON connection info:
8
+
9
+ ```
10
+ npx debugsk@latest server start --json
11
+ ```
12
+
13
+ The server responds to CORS preflight (OPTIONS), so the default JSON snippet works across origins.
14
+
15
+ Stop:
16
+
17
+ ```
18
+ npx debugsk@latest server stop --json
19
+ ```
20
+
21
+ Status:
22
+
23
+ ```
24
+ npx debugsk@latest server status --json
25
+ ```
26
+
27
+ Codex skill install/update/remove:
28
+
29
+ ```
30
+ npx debugsk@latest codex install
31
+ npx debugsk@latest codex update
32
+ npx debugsk@latest codex remove
33
+ ```
34
+
35
+ Default install target is `./.codex/skills` (current directory). Use `-u` to install to `~/.codex/skills`.
36
+ If `./.codex` does not exist, debugsk will ask before creating it.
package/dist/cli.d.ts ADDED
@@ -0,0 +1 @@
1
+ #!/usr/bin/env node