refactor(ECR-001): 接入 ESS 并完成结构对齐 Phase A–E
绑定 ESS 双轨治理,拆分超大 H5 页与 Go 引擎,抽出 membership 服务, 并将 star/fortune 重命名为 outlook(JSON 双写兼容);同时修复 /psy API 代理与首页 + 菜单层级。 Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
Executable
+11
@@ -0,0 +1,11 @@
|
||||
#!/usr/bin/env python3
|
||||
import os
|
||||
import sys
|
||||
from pathlib import Path
|
||||
|
||||
ess = Path(os.environ.get("ESS_ROOT", "/Users/jack/Project/skills/engineering-spec-system"))
|
||||
script = ess / "scripts" / "ess-gate-check.py"
|
||||
if not script.is_file():
|
||||
sys.stderr.write(f"Missing {script}\n")
|
||||
sys.exit(1)
|
||||
os.execv(sys.executable, [sys.executable, str(script), *sys.argv[1:]])
|
||||
Reference in New Issue
Block a user