chore: rename test/ scratch dir to sandbox/#32
Merged
Conversation
Disambiguates against tests/ (the unit/integration test suite). The
gitignored scratch directory used by the test-specflow skill and the
qa-tester agent for bootstrapped Vite/empty/brownfield project shapes
is now sandbox/. The renamed dir is still gitignored, still ephemeral,
still wiped between runs — only the path token changed.
Touched:
- .gitignore (test/ → sandbox/)
- .claude/skills/test-specflow/SKILL.md (paths + prose tweaks)
- .claude/skills/test-specflow/scripts/{bootstrap-empty,bootstrap-vite,inspect,run-init,clean,compare-harnesses}.sh
(TEST_DIR → SANDBOX_DIR, all path strings)
- .claude/agents/qa-tester.md (workflow steps + report schema)
No product code touched; all 333 unit/integration tests still green.
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
Disambiguates against
tests/(the actual unit/integration test suite). The gitignored scratch directory used by thetest-specflowskill and theqa-testeragent — where Vite/empty/brownfield scenarios get bootstrapped and where QA reports land — is nowsandbox/.Same purpose, same gitignore, same ephemerality. Just a path token rename.
Why
tests/(with S) holds the real Deno test suite, layered to mirrorsrc/.test/(no S) was an ephemeral scratch directory for manual UX validation. The two had nothing in common but the name, and "is ittest/ortests/?" was a recurring source of confusion.sandbox/reads as throwaway-by-design and pairs cleanly withtests/.What changed
.gitignore—test/→sandbox/.claude/skills/test-specflow/SKILL.md— everytest/<name>/reference becomessandbox/<name>/; minor prose tweaks ("Test projects always live under" → "Sandbox scenarios always live under")..claude/skills/test-specflow/scripts/{bootstrap-empty,bootstrap-vite,inspect,run-init,clean,compare-harnesses}.sh—TEST_DIR→SANDBOX_DIR, every path string updated, comments brought in line..claude/agents/qa-tester.md— every workflow step + the report schema now points atsandbox/.No product code touched. The skill name (
test-specflow) stays — it's about testing Specflow, the sandbox is just the workspace it uses.Test plan
deno task test— 333 passed / 0 failed.git grep test/returns no remaining hits in skill/agent/scripts/gitignore (excludingtests/).🤖 Generated with Claude Code