chore: audit and clean up scripts directory (#85) #91
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
Comprehensive audit and cleanup of the scripts directory to keep only scripts that are useful for ongoing development and maintenance.
Changes Made
1. Reorganized Scripts into Logical Directories
dev/
- Development utilities (pre-push hooks, demo validation)quality/
- Code quality tools (whitespace, CodeQL, font checks)build/
- Build utilities (version info, OG image generation, StackBlitz)release/
- Release management scriptsutils/
- Shared utilities (run-tsx, ensure-project-root)2. Archived Unused Scripts (git-ignored)
Created
scripts-archive/
directory with two subdirectories:bot-automation/
- GitHub project sync scripts, bot workflows, automation toolsone-time/
- Bootstrap scripts, one-time fixes, setup scripts, migrations3. Updated All References
package.json
4. Removed Duplicates
5. Documentation
scripts/README.md
with:Testing
npm run check:whitespace
,npm run check:codeql
)Archived Scripts
The following types of scripts were moved to
scripts-archive/
(preserved but not in version control):These are available locally if needed but won't clutter the main scripts directory.
Closes #85
🤖 Generated with Claude Code