@gkoreli/ghx 2.5.0 → 2.6.0
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 +5 -1
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -76,7 +76,9 @@ turn activity in realtime — turn start/end, text and thought chunks, every too
|
|
|
76
76
|
call and update as the agent works — so
|
|
77
77
|
`tail -f ~/.ghx/sessions/<name>/live.jsonl` watches a running question instead
|
|
78
78
|
of waiting minutes for the final report
|
|
79
|
-
(see [ADR-0022.1](docs/adr/0022.1-live-turn-log.md)).
|
|
79
|
+
(see [ADR-0022.1](docs/adr/0022.1-live-turn-log.md)). `ghx sidecar tail --follow`
|
|
80
|
+
renders that stream as one human-readable line per event, so you rarely need
|
|
81
|
+
the raw `tail -f`.
|
|
80
82
|
|
|
81
83
|
Sessions persist, so follow-up questions on the same repo are cheaper and
|
|
82
84
|
context-aware. The traces are **official OpenTelemetry** (OTLP/JSON, GenAI
|
|
@@ -281,6 +283,7 @@ ghx sidecar sessions list # all sessions
|
|
|
281
283
|
ghx sidecar sessions show <session> # details + report history
|
|
282
284
|
ghx sidecar sessions ledger <session> # the accumulated evidence ledger
|
|
283
285
|
ghx sidecar sessions reroute <s> <turn> <dest> # move a mis-routed turn; both ledgers rebuilt by replay
|
|
286
|
+
ghx sidecar tail [session] --follow # human-readable live view of a running question
|
|
284
287
|
ghx sidecar view [session] # spawn a local trace UI over the session's artifacts
|
|
285
288
|
ghx sidecar view --list # sessions with turn/report counts
|
|
286
289
|
ghx sidecar view --port 9000 # viewer UI port (default 8000)
|
|
@@ -425,6 +428,7 @@ ghx sidecar sessions list # List persisted sidecar sessions
|
|
|
425
428
|
ghx sidecar sessions show <session> # Metadata + report history
|
|
426
429
|
ghx sidecar sessions ledger <session> # Accumulated evidence ledger JSON
|
|
427
430
|
ghx sidecar sessions reroute <s> <turn> <dest> # Move a mis-routed turn and rebuild ledgers
|
|
431
|
+
ghx sidecar tail [session] --follow # Human-readable live view of turn activity (live.jsonl)
|
|
428
432
|
ghx sidecar view [session] # Local OTel viewer over session artifacts
|
|
429
433
|
ghx sidecar evals export --format sft --run <dir> --out <file> # Export committed eval episodes
|
|
430
434
|
ghx sidecar report-sink --out <path> # Internal report-sink MCP server used by ACP turns
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gkoreli/ghx",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.6.0",
|
|
4
4
|
"description": "Agent-first GitHub code exploration. GraphQL batching, code maps, codemode TypeScript sandbox, MCP server.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"ghx": "npm/bin/ghx"
|
|
@@ -28,11 +28,11 @@
|
|
|
28
28
|
"node": ">=16"
|
|
29
29
|
},
|
|
30
30
|
"optionalDependencies": {
|
|
31
|
-
"@gkoreli/ghx-darwin-arm64": "2.
|
|
32
|
-
"@gkoreli/ghx-darwin-x64": "2.
|
|
33
|
-
"@gkoreli/ghx-linux-arm64": "2.
|
|
34
|
-
"@gkoreli/ghx-linux-x64": "2.
|
|
35
|
-
"@gkoreli/ghx-win32-arm64": "2.
|
|
36
|
-
"@gkoreli/ghx-win32-x64": "2.
|
|
31
|
+
"@gkoreli/ghx-darwin-arm64": "2.6.0",
|
|
32
|
+
"@gkoreli/ghx-darwin-x64": "2.6.0",
|
|
33
|
+
"@gkoreli/ghx-linux-arm64": "2.6.0",
|
|
34
|
+
"@gkoreli/ghx-linux-x64": "2.6.0",
|
|
35
|
+
"@gkoreli/ghx-win32-arm64": "2.6.0",
|
|
36
|
+
"@gkoreli/ghx-win32-x64": "2.6.0"
|
|
37
37
|
}
|
|
38
38
|
}
|