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
For incremental follow-ups, copy the previous output's `fetched_at` value into `--after <fetched_at>`. `--before` is also available when you want to inspect only older timeline slices.
134
+
127
135
When `--show` does not include `timeline` (for example `--show meta`, `--show summary`, or `--show actions`), both `pr view` and `issue view` stay on the lightweight metadata path and skip timeline bootstrap.
128
136
129
137
Use `--show` to choose which output sections to render. Use `--expand` to automatically open folded content within those sections.
@@ -309,6 +317,8 @@ This supports the normal flow where one review contains multiple inline comments
309
317
All output follows consistent formatting rules so both humans and LLMs can parse it reliably:
310
318
311
319
-**Metadata** is rendered as YAML-style frontmatter at the top of PR/issue views.
320
+
- Frontmatter includes `fetched_at`, so the next incremental read can use `--after <fetched_at>`.
321
+
- When timeline filtering is active, frontmatter also includes `timeline_after` / `timeline_before` and filtered vs unfiltered event counts.
312
322
-**Description** is wrapped in `<description>...</description>` tags.
313
323
-**Comment bodies** use `<comment>...</comment>` tags to avoid markdown fence ambiguity with code blocks inside comments.
314
324
-**Hidden timeline sections** are separated by `---` dividers and include ready-to-run expand commands to load the omitted content.
Use plain `view` for the first pass. On follow-up reads, reuse the previous frontmatter `fetched_at` as `--after <previous_fetched_at>` for an incremental timeline refresh.
120
+
117
121
### Prepare a PR body
118
122
119
123
```bash
@@ -131,10 +135,13 @@ Use this before `gh pr create` when you need to load a repo PR template, append
For lightweight inspection, prefer non-timeline `--show` combinations such as `--show meta`, `--show summary`, or `--show actions`; `gh-llm` keeps those paths on metadata-only loading unless `timeline` is explicitly requested.
144
+
Frontmatter includes `fetched_at`, plus `timeline_after` / `timeline_before` and filtered vs unfiltered counts when timeline filtering is active.
0 commit comments