Refactor tool execution pipeline

This commit is contained in:
2026-06-21 14:30:40 +08:00
parent 3e5f0658b3
commit 99c1e9cd6c
81 changed files with 3587 additions and 5317 deletions
Executable
+17
View File
@@ -0,0 +1,17 @@
#!/bin/bash
# 构建所有工具
set -e
cd "$(dirname "$0")"
TOOLS=(datetime weather amap web_search fetch_page memories)
echo "=== 构建工具 ==="
for tool in "${TOOLS[@]}"; do
echo " $tool..."
(cd "$tool" && cargo build --release --quiet)
done
echo "=== 完成 ==="
for tool in "${TOOLS[@]}"; do
ls -lh "$tool/target/release/$tool" 2>/dev/null
done