docs: sync README and landing page with v3.5.4 / 10 Premium languages#70
Merged
docs: sync README and landing page with v3.5.4 / 10 Premium languages#70
Conversation
The v3.5.4 release bumped manifest.json and package.json but the docs were not regenerated. README and the landing page still advertised v3.5.0 and 6 Premium languages even though src/lib/constants.js has 10 in PREMIUM_LANGUAGES (added zh-TW, pt-BR, ru, vi). Changes: - Run scripts/generate-docs.js to update VERSION / LANG_COUNT markers in README.md and docs/index.html (v3.5.0 -> v3.5.4, 33 -> 32 languages). - Manually update the README Premium table (6 -> 10 entries) and shrink the Standard list accordingly (the script does not touch these). - Update the README Tech Stack row "570+ x 6 languages" -> "x 10". - Apply the same Premium table / Standard list / "6 -> 10" changes to the 6 i18n README variants under docs/i18n/. Verified: - npm run lint clean - npm run docs is idempotent after these edits - npm test 309/309 passing (run earlier in the session) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
heznpc
added a commit
that referenced
this pull request
Apr 10, 2026
The Auto-update docs workflow has been failing on every push to main since v3.4.0 (10+ consecutive runs as of v3.5.4) with: remote: Permission to heznpc/skillBridge.git denied to github-actions[bot]. fatal: ... The requested URL returned error: 403 Root cause: docs.yml had no permissions block, so GITHUB_TOKEN defaulted to read-only. The script ran fine, the local commit succeeded, only the final git push was rejected. This was an inadvertent omission — the sibling release.yml workflow already has the same permissions block. Result: every release since v3.4.0 has had stale README and landing page until someone notices and fixes it manually (most recently #70). Changes: - Add job-level "permissions: contents: write" matching release.yml. Job-level (not workflow-level) keeps the principle of least privilege. - Add workflow_dispatch trigger so the fix can be validated immediately via "gh workflow run docs.yml" instead of waiting for the next real release to flush out any further issues. - Bump node-version 20 -> 22 to match the recent ci.yml upgrade (5862443 chore: upgrade CI to Node 22). Out of scope (separate PR): - Deprecation warning about actions/checkout@v4 + actions/setup-node@v4 using internal Node 20 (removed 2026-09-16). That's a repo-wide actions version sweep across multiple workflows. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This was referenced Apr 10, 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
The v3.5.4 release bumped
manifest.jsonandpackage.json(#69) but the docs were not regenerated. README and the landing page still advertised v3.5.0 and 6 Premium languages, even thoughsrc/lib/constants.jsalready has 10 entries inPREMIUM_LANGUAGES(addedzh-TW,pt-BR,ru,vi).This PR brings the docs back in sync with the code.
Changes
npm run docsto update VERSION / LANG_COUNT markers inREADME.mdanddocs/index.htmlv3.5.0→v3.5.433 languages→32 languages(10 Premium + 22 Standard, excluding English)scripts/generate-docs.jsdoesn't touch these tables.570+ × 6 languages→× 10.6 → 10changes to the 6 i18n README variants underdocs/i18n/.Verification
npm run lint— cleannpm run docs— idempotent after these edits (no further changes)npm test— 309 / 309 passing (run earlier in the session)npm run build:firefox— succeedsTest plan
docs/index.html) shows v3.5.4 in hero badge🤖 Generated with Claude Code