Files
MBTI_wang/scripts/feishu_mbti_milestone_notify.py
卡若 aca2e263bb feat: 管理端聚合页、小程序/抖音埋点与统计、飞书线索 webhook、API 迁移与路由
- admin:OrdersHub/UsersHub、Commerce/Ops/Enterprise Hub、MpAnalytics、Feishu/小程序配置面板、鉴权存储
- api:Analytics、DataMigration、FeishuLeadWebhook、mp 事件迁移 SQL
- 微信/抖音小程序:analytics 上报与相关页面调整
- 开发文档与 scripts 补充

Made-with: Cursor
2026-03-27 17:22:04 +08:00

39 lines
994 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/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())