From 896c8036f5f5a4bb2db74ca6ad46b36e91fffcc3 Mon Sep 17 00:00:00 2001 From: Claude Date: Sat, 31 Jan 2026 16:39:43 +0000 Subject: [PATCH] Update CLAUDE.md debug bundle tables for wink v0.24.0 - Add missing tables: logs, transcript, config, run_context - Add Debug Bundle Views section with tool_timeline, native_tool_calls, transcript_entries, and error_summary - Update metrics description to include timing - Use lowercase for guide name in CLI example https://claude.ai/code/session_011wUxh1mZUtgx5C7XBitJ9z --- AGENTS.md | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/AGENTS.md b/AGENTS.md index 8244613..e14b3a0 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -82,7 +82,7 @@ tests/ # 100% coverage # Documentation uv run wink docs list uv run wink docs search "Feedback" -uv run wink docs read guide TOOLS +uv run wink docs read guide tools # Debug bundles - human inspection (opens browser UI) uv run wink debug debug_bundles/ @@ -97,8 +97,21 @@ uv run wink query "debug_bundles/*.zip" "SELECT * FROM tool_calls" | Table | Description | |-------|-------------| | `manifest` | Bundle metadata (status, timestamps) | +| `logs` | Log entries with optional sequence numbers | +| `transcript` | Transcript entries from TranscriptCollector | +| `tool_calls` | Tool invocations | | `errors` | Aggregated errors | -| `tool_calls` | Tool invocations (hint_lookup usage) | -| `metrics` | Token usage | | `session_slices` | Session state | | `files` | Workspace files | +| `config` | Flattened configuration | +| `metrics` | Token usage and timing | +| `run_context` | Execution IDs | + +### Debug Bundle Views + +| View | Description | +|------|-------------| +| `tool_timeline` | Tool calls ordered by timestamp with duration | +| `native_tool_calls` | Native tool calls from transcripts | +| `transcript_entries` | TranscriptCollector entries | +| `error_summary` | Errors with truncated traceback |