sandcastle: fix implement-prompt feedback loop (npm -> just check) #26
No reviewers
Labels
No labels
in-review
ready-for-agent
ready-for-human
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
weiwen/evie!26
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "sandcastle/issue-13"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
What changed and why
The sandcastle implement-prompt instructed agents to run
npm run typecheckandnpm run testbefore committing. This project usesjustas its task runner, so those npm commands don't exist — agents running the feedback loop would fail.This PR replaces those two npm commands with a single
just checkinvocation, which is the correct command for this repo.Key decisions
.sandcastle/implement-prompt.mdjust checkis already the established convention in this repo (see recent CI changes)Reviewer checklist
just checkruns typecheck + tests as expected on this repoCloses #13