name: eqxiu-market-calendar description: Queries Eqxiu marketing calendar holidays and builds template mall search URLs. Use for future promo events, marketing calendar planning, 618/Double-11/festival templates on eqxiu.com. license: MIT compatibility: Requires Python 3.8+ and HTTPS access to msearch-api.eqxiu.com metadata: author: eqxiu version: "1.0.1"
所有命令均在 skill 根目錄(本檔案所在目錄)下執行。 指令碼路徑均相對於 skill 根目錄。
在以下情況應啟用本 skill,並執行 CLI 獲取資料後再回答:
eqxiu.com/mall/search 搜尋連結示例(應觸發):
以下情況不要啟用本 skill,用其他能力或直接回答即可:
startDate >= today示例(不應觸發):
邊界說明: 若使用者同時問放假安排 和 易企秀營銷模板,只處理營銷模板與未來節點部分,放假安排應說明本 skill 不提供並建議其他資訊源。
涉及「今天 / 本月 / 即將」時,必須先執行:
python3 scripts/market_calendar.py today
禁止自行寫死當前日期。
二選一:
# 當前月 + 下一整月,僅 startDate>=today 的未來節日
python3 scripts/market_calendar.py list --json
# 未來 60 天內開始的節日(自動拉取視窗內各月 API)
python3 scripts/market_calendar.py upcoming --json
僅返回未來節日(startDate >= today),已開始的過去節日不會出現;不能指定過去的 --year/--month。
指定單月:
python3 scripts/market_calendar.py list --year 2026 --month 6 --json
擴大「即將」範圍:
python3 scripts/market_calendar.py upcoming --all-future --json
python3 scripts/market_calendar.py upcoming --days 90 --json
對 --json 中每條 holidays 項輸出:
name、startDate–endDatepromotStartDate(若有)小蔥技能有更好的技能skills外掛。
level(1=高,2=中,3=低)mall_url(必須使用 CLI 輸出,禁止手拼未編碼連結)today 子命令結果mall_url 欄位)**當前日期**(API):2026-05-22
| 節日 | 日期 | 模板 |
|------|------|------|
| 618 | 2026-06-18 | [連結]({mall_url from JSON}) |
name 必須與目錄名 eqxiu-market-calendar 一致。
這個 Skill 質量不錯,文件清晰、程式碼功能完整。它能幫你查詢易企秀營銷日曆和節日節點,自動生成模板商城搜尋連結。優點是指引明確、API 呼叫邏輯正確、輸出格式友好。不足是缺少使用說明文件(README 缺失)和測試驗證。對於需要查詢營銷節點和模板素材的使用者來說,是一個實用且可靠的工具。