From cbb65f722d06a6efcc0944d941db7bf339071570 Mon Sep 17 00:00:00 2001 From: Claude Date: Sat, 14 Mar 2026 23:00:35 +0000 Subject: [PATCH 1/2] docs: add Known limitations section to README Notes single entry point constraint and that only Anthropic has been tested end-to-end despite openai being a config option. https://claude.ai/code/session_018nuwtRWVYDAxHzQ2r1Rk64 --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index 434e3f0..7e68f9b 100644 --- a/README.md +++ b/README.md @@ -527,6 +527,13 @@ See [CLAUDE.md](CLAUDE.md) for repo structure and contributor notes. --- +## Known limitations + +- **Single entry point** — only one preview URL or start command per run is supported; recording across multiple routes in a single run is on the roadmap. +- **Anthropic only (tested)** — the `llm.provider` config accepts `'openai'` as a value, but only Anthropic has been tested end-to-end. Other providers may work but are unsupported for now. + +--- + ## Roadmap - **Multiple preview URL support** — currently GitGlimpse accepts a single preview URL per run; planned support for specifying multiple starting points so a single PR can record demos across several routes or environments simultaneously. From cc8c41bd31251b049847b70715315d282325c93a Mon Sep 17 00:00:00 2001 From: Claude Date: Sat, 14 Mar 2026 23:06:44 +0000 Subject: [PATCH 2/2] docs: soften known limitations wording https://claude.ai/code/session_018nuwtRWVYDAxHzQ2r1Rk64 --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7e68f9b..e592127 100644 --- a/README.md +++ b/README.md @@ -529,8 +529,8 @@ See [CLAUDE.md](CLAUDE.md) for repo structure and contributor notes. ## Known limitations -- **Single entry point** — only one preview URL or start command per run is supported; recording across multiple routes in a single run is on the roadmap. -- **Anthropic only (tested)** — the `llm.provider` config accepts `'openai'` as a value, but only Anthropic has been tested end-to-end. Other providers may work but are unsupported for now. +- **Single entry point** — only one preview URL or start command per run is supported; multiple entry points are planned. +- **LLM provider** — tested with Anthropic; other providers may work but aren't officially supported yet. ---