Stop pnpm check from running scripts that no longer exist - #68
Merged
Conversation
`pnpm check` has failed since d69e572 removed the Supabase runtime. The framework's `check` ended in `pnpm test:framework`, which pointed at `scripts/smoke-framework.ts` — deleted by that commit — so the gate that validates a scorer or harness change died at its last step, after every test in the repository had already passed. The failure looks like a broken checkout rather than a stale script, which is the worst way for a gate to fail: it teaches people to stop running it. CI never caught it because CI runs `typecheck`, `pnpm -r test` and `pnpm -r build` directly rather than through `check`, so the entry could rot untouched. Three more scripts pointed at files that are not there: `demo:mcp` and `demo:executor` (both deleted by the same commit) and a root `eval:force`, which proxies to a framework script that has never existed in this repository — it came in with the import and was never wired up. `pnpm check` now runs clean: 222 tests across four packages. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01MQzUoMAwEBJWpEGVvVzSjK
This was referenced Aug 28, 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.
pnpm checkhas failed since d69e572 removed the Supabase runtime.The framework's
checkended inpnpm test:framework, which pointed atscripts/smoke-framework.ts— deleted by that commit. So the gate that validates a scorer or harness change died at its last step, after every test in the repository had already passed. That is the worst way for a gate to fail: it looks like a broken checkout rather than a stale script, and it teaches people to stop running it.CI never caught it, because CI runs
typecheck,pnpm -r testandpnpm -r builddirectly rather than throughcheck.Three more scripts pointed at files that are not there:
test:frameworkscripts/smoke-framework.tsdemo:mcpscripts/mcp-demo.tsdemo:executorscripts/executor-demo.tseval:force(root)eval:forcepnpm checknow runs clean: 222 tests across four packages.Split out of #67 so the gate is fixed independently of the scenario change it was found by.
🤖 Generated with Claude Code
https://claude.ai/code/session_01MQzUoMAwEBJWpEGVvVzSjK