fix: restore mcp flexibility and improve cli tooling

This commit is contained in:
2025-10-11 06:11:22 +02:00
parent 40c44470e8
commit 5ac0d152cb
19 changed files with 998 additions and 162 deletions

13
scripts/check-windows.sh Normal file
View File

@@ -0,0 +1,13 @@
#!/usr/bin/env bash
set -euo pipefail
if ! rustup target list --installed | grep -q "x86_64-pc-windows-gnu"; then
echo "Installing Windows GNU target..."
rustup target add x86_64-pc-windows-gnu
fi
echo "Running cargo check for Windows (x86_64-pc-windows-gnu)..."
cargo check --target x86_64-pc-windows-gnu
echo "Windows compatibility check completed successfully."