chore: initialize qiming workspace repository

This commit is contained in:
Codex
2026-05-29 14:22:48 +08:00
commit bfd67a0f2c
10750 changed files with 1885711 additions and 0 deletions

View File

@@ -0,0 +1,59 @@
#!/bin/bash
# 清理本地下载的 sidecar二进制缓存
#
# 用法:
# ./scripts/clean-downloaded-sidecars.sh
# ./scripts/clean-downloaded-sidecars.sh --dry-run
set -euo pipefail
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
ROOT_DIR="$(cd "$SCRIPT_DIR/.." && pwd)"
CACHE_DIR="$ROOT_DIR/.cache/sidecars"
DRY_RUN=0
while [[ $# -gt 0 ]]; do
case "$1" in
--dry-run)
DRY_RUN=1
shift 1
;;
-h|--help)
sed -n '1,12p' "$0"
exit 0
;;
*)
echo "未知参数: $1" >&2
exit 2
;;
esac
done
targets=()
if [[ -d "$CACHE_DIR" ]]; then
targets+=(
"$CACHE_DIR"/mcp-proxy-*
"$CACHE_DIR"/node-runtime-*
"$CACHE_DIR"/sidecar-download-manifest.txt
)
fi
echo "清理目录: $CACHE_DIR"
removed=0
for f in "${targets[@]}"; do
if [[ -e "$f" ]]; then
if [[ $DRY_RUN -eq 1 ]]; then
echo "DRY rm -f $f"
else
rm -f "$f"
echo "REMOVED $f"
fi
removed=$((removed + 1))
fi
done
if [[ $removed -eq 0 ]]; then
echo "没有可清理的下载产物"
else
echo "完成,处理文件数: $removed"
fi