diff --git a/docs/index.html b/docs/index.html index 81cbbbd..3c36a20 100644 --- a/docs/index.html +++ b/docs/index.html @@ -323,7 +323,7 @@

Point it at a merged PR.
Get a plain-English explanation.

HOW IT WORKS

-

Four steps, one command.

+

Init once. Then one command per PR.

01
@@ -335,31 +335,32 @@

HOW IT WORKS

03
-
It reads the diff + description via the GitHub CLI, combines it with your profile, and asks Claude to explain it.
+
It reads the diff + description via the GitHub CLI, combines it with your profile, and shells out to the Claude Code CLI to explain it.
04
-
Saved locally, added to a running index of every PR you've explained so far.
+
Saved under ~/.pr-explainer/explainers/, added to a running index of every PR you've explained so far.
-
$ pr-explainer https://github.com/acme/billing-service/pull/482
-
✓ Fetched PR #482 · "Add retry logic to payment webhook handler"
-
✓ Loaded ~/.pr-explainer/learning-profile.md
-
✓ Asking Claude to explain...
-
→ saved to ~/.pr-explainer/explainers/01-retry-logic-for-webhook.md
+
$ pr-explainer https://github.com/facebook/react/pull/32
+
Generating explainer for PR #32: Add new onInput event
+
~/.pr-explainer/explainers/01-react-now-responds-to-text-input-changes-faster-and-more-rel.md
+
# React now responds to text input changes faster and more reliably
+
Ships: A new onInput event that fires as users type or paste — replacing the older onKeyUp approach.
+
## What changed
-
Webhook calls to the payment processor now retry 3× with backoff instead of failing silently on timeout.
+
React's event system gains an input event that fires whenever a text field's content changes — typing, paste, voice, autocomplete.
-
## Why it matters to you
-
You've been seeing "missing payment" support tickets that were actually just dropped webhooks — this should cut those out.
+
## Why it matters
+
Live search, counters, and previews update immediately — and they keep working when users paste instead of typing letter-by-letter.
-
## Quiz
-
Q: Why retries instead of a longer timeout? ▸ answer
+
## Quick check
+
Q: Why onInput instead of onKeyUp? ▸ answer
@@ -388,7 +389,7 @@

Keep track of your own project

WHY NO API KEY

-

pr-explainer shells out to the Claude Code CLI already on your machine — if you already use it, this is free to try immediately. No separate API key, no signup, nothing new to pay for.

+

pr-explainer shells out to the Claude Code CLI already on your machine — if you already use it, this is free to try immediately. No separate Anthropic Console API key, no signup for this tool. You do need Claude Code installed and logged in, plus the GitHub CLI (gh).

@@ -408,7 +409,7 @@

INSTALL