chore: repo organization — CI/CD, i18n (UI boundary), public docs, author metadata#1
Merged
Merged
Conversation
… metadata CI/CD: - Add .github/workflows/test.yml (lint + test + build on push to main / PRs). - Add .github/workflows/release.yml: tag-triggered (v*), guards tag vs package.json version, marks -rc/-beta/-alpha as prereleases, attaches the zip + module.json with notes from the matching CHANGELOG section. - Stop tracking built dist/ (CI and `npm run package` rebuild it). i18n (UI boundary; engine + panel-data strings deferred to KHT-112): - Add lang/en.json (125 keys under the GrimArithmetic.* namespace). - module.json: add "languages"; build-release.mjs: ship lang/ in the zip. - Localize settings name/hint/choices, the 3 window titles, and all static text in the 3 Handlebars templates. Zero test churn (324/324 pass). Docs: - Publish docs/ (gitignore only docs/plans/); consolidate root plans/ into docs/plans/. - Fix RELEASE.md drift (the zip never shipped docs/) and document the new CI release flow plus the manual Foundry-server gate. Metadata: - module.json author url https://kyletravis.com; README author line (@kyletravis). Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Clears the GitHub Actions deprecation warning that Node.js 20 actions (actions/checkout@v4, actions/setup-node@v4) will be forced to Node 24 on June 2, 2026. The v5 majors run on Node 24. Unrelated to the build's node-version: 22, which is the Node our npm steps run on. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
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.
Repo-organization pass from the approved plan. No module behavior changes; packaging/hygiene + UI-boundary i18n.
CI/CD
test.yml: lint + test + build on push tomain/ PRs (this PR is its first run).release.yml: tag-triggered (v*), guards tag vspackage.jsonversion, marks-rc/-beta/-alphaas prereleases, attaches the zip +module.jsonwith notes from the matching CHANGELOG section.dist/(CI andnpm run packagerebuild it).i18n (UI boundary; engine + panel-data strings deferred to KHT-112)
lang/en.json(125 keys,GrimArithmetic.*);module.json"languages"; build script shipslang/.Docs
docs/(gitignore onlydocs/plans/); consolidate rootplans/intodocs/plans/.RELEASE.mddrift (the zip never shippeddocs/) and document the CI flow + manual Foundry gate.Metadata
module.jsonauthor url; README author line.Verification done locally
npm run checkgreen (lint + 324 tests + build);npm run packageshipslang/en.jsonin the zip.Still needs a Foundry-server check before release
Templates aren't validated by
npm run build(Foundry compiles.hbsat runtime). The rc4 manual test is the gate: confirm no rawGrimArithmetic.*keys, especially in the{{localize "KEY" a=b}}format-hash lines.🤖 Generated with Claude Code