#!/usr/bin/env bash set -euo pipefail TARGET="${1:-x86_64-pc-windows-gnu}" cargo test --target "$TARGET" cargo build --release --target "$TARGET" if rg -n -i 'not implemented|not wired|BLE scan not wired|Serial not implemented|BLE not implemented|TODO|FIXME|placeholder|dummy|stub' \ -g 'src/**' \ -g 'Cargo.toml' \ -g 'README.md' \ -g 'docs/**' \ -g '.agents/specs/yrobot-motor-control-panel/**' \ .; then echo "Found unfinished marker text" >&2 exit 1 fi echo "Verification passed for target: $TARGET"