# Scripts Utility scripts for Lumacs development and maintenance. ## Available Scripts ### Build Scripts - `build.sh` - Build the Lumacs project - `clean.sh` - Clean build artifacts and temporary files - `test.sh` - Run tests and basic functionality checks ## Usage Make sure scripts are executable (they should be by default): ```bash chmod +x scripts/*.sh ``` ### Building ```bash ./scripts/build.sh ``` ### Testing ```bash ./scripts/test.sh ``` ### Cleaning ```bash ./scripts/clean.sh ``` ## Adding New Scripts When adding new utility scripts: 1. Place them in this directory 2. Make them executable with `chmod +x` 3. Follow the naming convention: `action.sh` 4. Add documentation here