docs: regenerate llms-full.txt to match current docs/site/ content#21277
Merged
Conversation
Pure regeneration via `docs/site/site/scripts/generate-llms.py`. Catches up accumulated content drift from prior docs PRs that landed before PR #21028 added the `--check` step to ci-gate. Drift content: - new flags: --erigondb.domain.steps-in-frozen-file, --caplin.nat, --caplin.columns-keep-slots - corrected defaults: --log.dir.verbosity (added missing default), --rpc.subscription.filters.maxlogs/maxheaders/maxtxs (0 → 10000) - smart-quote → straight-quote normalization - new "Caplin (consensus layer) NAT" doc section pulled in After this lands, the chicken-and-egg blocking #21028 in the merge queue clears: the drift check on its merge_group run will see an in-sync main and pass. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Contributor
There was a problem hiding this comment.
Pull request overview
This PR mechanically regenerates llms-full.txt (root + docs/site/static/) so the committed LLMs export matches the current docs/site/ documentation, eliminating drift that now fails CI when generate-llms.py --check is enforced.
Changes:
- Regenerated
llms-full.txtoutputs to align with current docs content (new flags/sections and corrected defaults). - Updated documented defaults and added new documented CLI flags/sections (e.g., Caplin NAT guidance).
- Normalized a couple of smart quotes in txpool wording.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| llms-full.txt | Regenerated full docs export, including new/updated CLI flag documentation and new Caplin NAT section. |
| docs/site/static/llms-full.txt | Same regenerated export placed under the docs-site static assets for publishing/CI checks. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Addresses Copilot review comment on #21277: the new Caplin NAT table in nat.md used British "Behaviour" while the same source file (and the rest of the document) uses American "behavior" (e.g. line 46: "NAT modes explained (practical behavior)"). Fix the source MD and regenerate the two llms-full.txt outputs. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
JkLondon
approved these changes
May 19, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Pure mechanical regeneration of
llms-full.txt(both root anddocs/site/static/copies) viapython3 docs/site/scripts/generate-llms.py. Catches up accumulated drift from prior docs PRs that landed before #21028 added the--checkstep toci-gate.Drift content
--erigondb.domain.steps-in-frozen-file,--caplin.nat,--caplin.columns-keep-slots--log.dir.verbosity(added missing default),--rpc.subscription.filters.maxlogs/maxheaders/maxtxs(0→10000)docs/site/docs/Why now
#21028 is stuck in the merge queue because its
docs-sitejob now runsgenerate-llms.py --checkagainst everymerge_groupevent. That check correctly catches the pre-existing drift on main and fails the queue's CI Gate. Landing this PR clears the drift so #21028's next requeue passes.Test plan
python3 docs/site/scripts/generate-llms.py --check→ "OK: 4 llms files match regenerated content"🤖 Generated with Claude Code