#!/bin/bash set -e echo "=== Harness Initialization ===" echo "=== npm install ===" npm install echo "=== npm run lint ===" npm run lint echo "=== npm test ===" npm test echo "=== npm run build ===" npm run build echo "=== Verification Complete ===" echo "" echo "Next steps:" echo "1. Read feature_list.json to see current feature state" echo "2. Pick ONE unfinished feature to work on" echo "3. Implement only that feature" echo "4. Re-run verification before claiming done"