You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
debugger: --metrics and --full-output replace --verbose; logs sit under their step; logs --last
- --verbose is gone; its two effects are separate flags: --metrics (per-reply
latency and turn duration) and --full-output (untruncated tool results).
- say --logs now prints a turn's log lines beneath the event they belong to,
so a failing tool's traceback appears under the tool's error line rather
than above it.
- logs --lines/-n is now logs --last (with -n kept as the short form).
lk agent debugger status # active agent, its tools, state, log file
498
498
lk agent debugger stop --transcript # closing summary, plus the whole conversation
499
499
```
@@ -502,10 +502,10 @@ lk agent debugger stop --transcript # closing summary, plus the whole
502
502
503
503
Useful options:
504
504
505
-
- `say --logs` interleaves the agent's log lines with the turn, so a tool's traceback shows up next to the sanitized error the user would hear.
505
+
- `say --logs` shows the agent's log lines beneath the step they belong to, so a tool's traceback appears right under the sanitized error the user would hear.
506
506
- `say --timeout 30s` bounds how long to wait for the reply (default 2 minutes); the exit code is non-zero if the turn failed or timed out.
507
507
- `--json` on any command prints machine-readable output. Each turn is a document with `text`, `reply`, `duration_ms`, and an `events` list of `message`, `tool_call`, `handoff`, `config`, `error`, and `log` entries.
508
-
- `--verbose` shows full tool output and per-turn latency metrics.
508
+
- `--metrics` adds per-turn latency metrics (time to first token, end-to-end) and `--full-output` shows tool results in full instead of a capped excerpt.
509
509
- `restart` relaunches the agent with a fresh conversation after the code changes.
510
510
- `listen --timeout 15s` waits for the agent to speak unprompted, for example after a tool set a timer, and prints whatever it says.
511
511
- `--port` runs several sessions side by side (one agent per port).
0 commit comments