From 7dee984121e5a38cf62ac1cbdd8f749c974bcc78 Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 15 Mar 2026 14:50:03 +0000 Subject: [PATCH 1/2] docs: add one-prompt AI integration snippet and auto-mode tip to quick start https://claude.ai/code/session_01ReGKL69tPB4CGaLVj4LxVF --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index cadfe8b..741be8d 100644 --- a/README.md +++ b/README.md @@ -28,6 +28,11 @@ PR opened/updated (or /glimpse comment) ## Quick start +> **One-prompt integration:** Paste this into your AI agent (Cursor, Copilot, Claude Code, etc.): +> ``` +> Integrate git-glimpse into this repo: https://github.com/DeDuckProject/git-glimpse. Follow the README instructions. +> ``` + ### 1. Add the workflow files Two files are recommended. The first is the main pipeline; the second gives instant 👀 feedback on `/glimpse` comments without adding noise to PR push checks. @@ -140,6 +145,8 @@ export default { } satisfies GitGlimpseConfig; ``` +> **Tip:** Keep the default `auto` mode for your first PR — it runs automatically so you'll see the demo right away. Once you've confirmed everything works, you can switch to `on-demand` if you prefer. Starting with `on-demand` means no demo on your first PR, so you won't know if the integration is working. + ### 3. Add secrets In your repo: **Settings → Secrets and variables → Actions** From 9b8dc9574c63eff423b243f877bd8b5091dd4137 Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 15 Mar 2026 14:51:54 +0000 Subject: [PATCH 2/2] docs: link to example integration PR in quick start https://claude.ai/code/session_01ReGKL69tPB4CGaLVj4LxVF --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 741be8d..ea9f7e0 100644 --- a/README.md +++ b/README.md @@ -32,6 +32,7 @@ PR opened/updated (or /glimpse comment) > ``` > Integrate git-glimpse into this repo: https://github.com/DeDuckProject/git-glimpse. Follow the README instructions. > ``` +> See [an example integration PR](https://github.com/DeDuckProject/epp-demo/pull/41) to know what to expect. ### 1. Add the workflow files