Add MindSpace page live edit, chat skills, and H5 deploy tooling.

Introduce page edit sessions with draft preview and patch API, chat skill picker, user memory profile, h5ApiBase resolution, voice WAV transport, and scripts for 105/g2 deployment and Plaza local dev.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
John
2026-06-15 22:09:38 -07:00
parent 3cd322ccfe
commit 6ee6fd64dd
94 changed files with 7015 additions and 2136 deletions
+40
View File
@@ -0,0 +1,40 @@
#!/usr/bin/env bash
# 安装 LaunchAgentMac 开机/登录后自动建立 MindSpace 反向隧道
set -euo pipefail
ROOT="$(cd "$(dirname "$0")/.." && pwd)"
PLIST="$HOME/Library/LaunchAgents/cn.tkmind.memind-tunnel.plist"
TUNNEL="$ROOT/scripts/memind-mac-tunnel.sh"
chmod +x "$TUNNEL"
cat >"$PLIST" <<EOF
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>cn.tkmind.memind-tunnel</string>
<key>ProgramArguments</key>
<array>
<string>${TUNNEL}</string>
</array>
<key>RunAtLoad</key>
<true/>
<key>KeepAlive</key>
<true/>
<key>StandardOutPath</key>
<string>${HOME}/Library/Logs/memind-mac-tunnel.log</string>
<key>StandardErrorPath</key>
<string>${HOME}/Library/Logs/memind-mac-tunnel.log</string>
</dict>
</plist>
EOF
launchctl bootout "gui/$(id -u)/cn.tkmind.memind-tunnel" 2>/dev/null || true
launchctl bootstrap "gui/$(id -u)" "$PLIST"
launchctl enable "gui/$(id -u)/cn.tkmind.memind-tunnel"
launchctl kickstart -k "gui/$(id -u)/cn.tkmind.memind-tunnel"
echo "已安装 MindSpace 反向隧道 LaunchAgent"
echo "日志: ~/Library/Logs/memind-mac-tunnel.log"