fix(ci): restore typecheck/format scripts and re-format drift#9
Merged
technicalpickles merged 2 commits intomainfrom May 8, 2026
Merged
fix(ci): restore typecheck/format scripts and re-format drift#9technicalpickles merged 2 commits intomainfrom
technicalpickles merged 2 commits intomainfrom
Conversation
The Nov 25 devcontainer extraction (60c24bc) over-deleted from package.json — it stripped the entire scripts block, not just the devcontainer:* entries, and dropped typescript from devDependencies. CI has been red ever since because npm run typecheck and npm run format:check 404'd. Restore typecheck/format/format:check/lint/test scripts plus the typescript devDependency, then run prettier --write to absorb the ~6 months of formatting drift that accumulated while CI was off. CLAUDE.md, tsconfig.json, and home/.finicky.ts already expected this toolchain to exist. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Mid-edit rewrites of the bean body via the beans CLI bypassed prettier and reintroduced unformatted markdown after the bulk format pass. 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.
Summary
typecheck,format,format:check,lint,testscripts topackage.jsonplus thetypescriptdevDependency. They were over-deleted by 60c24bc ("refactor: extract devcontainer to pickled-devcontainer template") on Nov 25 — the commit meant to remove thedevcontainer:*scripts but stripped the whole scripts block.prettier --writeto absorb ~6 months of accumulated formatting drift across 34 files (the actual fix is package.json + package-lock.json; the rest is mechanical prettier output).CI has been red on every push since Nov 25 because
.github/workflows/ci.ymlcallsnpm run typecheckandnpm run format:check, andCLAUDE.mdstill documents these as the test suite.tsconfig.jsonandhome/.finicky.tsalso still expect this toolchain.Test plan
npm run typecheckpasses locallynpm run format:checkpasses locally🤖 Generated with Claude Code