Refresh Terminus commands and releases reference data - #1
Draft
EdwardAngert wants to merge 2 commits into
Draft
Conversation
Pure formatting change, no data change (verified byte-for-byte JSON equality before/after): 4-space indent with escaped slashes (an old PHP json_encode convention) to 2-space with unescaped slashes, matching what scripts/update-terminus-data.ts now writes. Isolated from the actual data refresh in the next commit so that diff reads as content only. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Generated by scripts/update-terminus-data.ts against the live Terminus repo. Fixes the drift found in review: - commands.json: 4.2.0 -> 4.3.2, 157 -> 161 commands. Adds four commands that were missing from the reference entirely: site:build-path, site:build-path:set, vcs:github-host:add, and _complete (a hidden Symfony Console shell-completion command). - terminusReleases.json: 28 -> 150 releases. Previously stopped at 4.1.1 (Nov 2025); now current through 4.3.2 (Jun 2026), so the <Releases /> changelog page's one-year window actually has 2026 releases in it to show. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This was referenced Jul 23, 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
Stacked on pantheon-systems#10177 (the automation mechanism). Applies it once to fix the current staleness in
src/source/data/commands.jsonandterminusReleases.json, generated byscripts/update-terminus-data.tsagainst the live Terminus repo.Two commits, split so the diff is reviewable:
terminusReleases.jsongoes from 4-space/escaped-slash (an old PHPjson_encodeconvention) to 2-space/unescaped, matching the script's output style. Verified byte-for-byte JSON-equal before/after; zero data change.commands.json:4.2.0→4.3.2, 157 → 161 commands. Adds four commands missing from the reference entirely:site:build-path,site:build-path:set,vcs:github-host:add, and_complete(a hidden Symfony Console shell-completion command).terminusReleases.json: 28 → 150 releases. Previously stopped at4.1.1(Nov 2025); now current through4.3.2(Jun 2026), so the<Releases />changelog page's one-year window actually has 2026 releases in it to show.This PR targets the fork (not pantheon-systems/documentation directly) because it's stacked on a branch that only exists here; it should be re-targeted or reopened against upstream once PR #1 merges there.
Test plan
commands.jsonto confirm exactly which commands were added (none removed)site:build-path,vcs:github-host:add, etc.) against@commandannotations in a clone ofpantheon-systems/terminusterminusReleases.json's newest entry matchesgh api repos/pantheon-systems/terminus/releases/latestBuilt with docs-agent-plugin
🤖 Generated with Claude Code