feat: 管理端聚合页、小程序/抖音埋点与统计、飞书线索 webhook、API 迁移与路由

- admin:OrdersHub/UsersHub、Commerce/Ops/Enterprise Hub、MpAnalytics、Feishu/小程序配置面板、鉴权存储
- api:Analytics、DataMigration、FeishuLeadWebhook、mp 事件迁移 SQL
- 微信/抖音小程序:analytics 上报与相关页面调整
- 开发文档与 scripts 补充

Made-with: Cursor
This commit is contained in:
卡若
2026-03-27 17:18:25 +08:00
parent 9601b6955b
commit aca2e263bb
188 changed files with 41937 additions and 27625 deletions

View File

@@ -0,0 +1,38 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
MBTI王转发到卡若AI 真源脚本F01e。Skill 正文勿放本仓库见卡若AI 同 Skill。
"""
from __future__ import annotations
import os
import sys
_KARUO_SCRIPT = (
"/Users/karuo/Documents/个人/卡若AI/04_卡火/火炬_全栈消息/"
"开发五角色与飞书里程碑/feishu_milestone_notify.py"
)
_DEFAULT_REPO = "/Users/karuo/Documents/开发/3、自营项目/mbti王"
def main() -> int:
if not os.path.isfile(_KARUO_SCRIPT):
print("未找到卡若AI 脚本:", _KARUO_SCRIPT, file=sys.stderr)
return 2
prefix = [
sys.executable,
_KARUO_SCRIPT,
"--webhook-env",
"FEISHU_WEBHOOK_MBTI",
"--product",
"MBTI王",
"--keyword-line",
"MBTI王 项目更新",
"--repo",
_DEFAULT_REPO,
]
os.execv(sys.executable, prefix + sys.argv[1:])
if __name__ == "__main__":
raise SystemExit(main())