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
+14
View File
@@ -0,0 +1,14 @@
#!/usr/bin/env bash
# 反向 SSH 隧道:让 105 通过 127.0.0.1:19999 访问本机 SSHMindSpace 共享挂载依赖)
set -euo pipefail
HOST="${MEMIND_TUNNEL_HOST:-ssh105}"
LOCAL_PORT="${MEMIND_TUNNEL_LOCAL_PORT:-22}"
REMOTE_PORT="${MEMIND_TUNNEL_REMOTE_PORT:-19999}"
exec ssh -N \
-o ServerAliveInterval=30 \
-o ServerAliveCountMax=3 \
-o ExitOnForwardFailure=yes \
-R "127.0.0.1:${REMOTE_PORT}:127.0.0.1:${LOCAL_PORT}" \
"${HOST}"