ahp-inspector 1.1.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,28 @@
1
+ # ahp-inspector
2
+
3
+ Local-first viewer for VS Code Agent Host Protocol (AHP) JSONL logs.
4
+
5
+ ```bash
6
+ npx ahp-inspector # auto-open the most recent AHP log
7
+ npx ahp-inspector path.jsonl # open a specific file
8
+ ```
9
+
10
+ Starts a local HTTP server on `127.0.0.1`, opens your default browser, and
11
+ streams the log into a fast virtualized timeline with search, filtering,
12
+ correlation, and detail inspection.
13
+
14
+ Flags:
15
+
16
+ - `--port <n>` — choose a specific port (default: 5173; `0` for ephemeral).
17
+ - `--no-open` — start the server but don't auto-open the browser.
18
+ - `--no-auto-discover` — skip the auto-open-latest-log step on no-arg launches.
19
+
20
+ See the [project README](https://github.com/roblourens/ahp-inspector#readme) for
21
+ the auto-discovery rule, full feature list, and screenshots.
22
+
23
+ **Privacy:** binds to `127.0.0.1` only, no telemetry, no outbound network calls.
24
+ Log files are read locally and never uploaded.
25
+
26
+ ## License
27
+
28
+ MIT
@@ -0,0 +1 @@
1
+ #!/usr/bin/env node