chore: commit remaining workspace updates

include AGENTS guidance updates, plan doc replacements, and utility script changes left in working tree
This commit is contained in:
qzl
2026-02-26 17:59:30 +08:00
parent f3d08a7fcf
commit 76853452f6
9 changed files with 996 additions and 2423 deletions
+17
View File
@@ -0,0 +1,17 @@
#!/bin/bash
set -euo pipefail
SESSION_NAME="${SESSION_NAME:-social-dev}"
echo "=== App Down ==="
if ! tmux has-session -t "$SESSION_NAME" 2>/dev/null; then
echo "No tmux session '$SESSION_NAME' found."
exit 0
fi
echo "Stopping tmux session '$SESSION_NAME'..."
tmux kill-session -t "$SESSION_NAME"
echo "Session stopped and cleaned up."