meal-order
Terminal-based meal reminder and McDonald's ordering flow. Use when user says "帮我点餐", "午餐推荐", "吃什么", "我要点麦当劳", or when meal-time cron fires.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Terminal-based meal reminder and McDonald's ordering flow. Use when user says "帮我点餐", "午餐推荐", "吃什么", "我要点麦当劳", or when meal-time cron fires.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Generates beautiful, consistent Preline Theme CSS files. Agent interprets user request, runs build script, delivers complete CSS.
Extract clinical trial data from pharmaceutical conference websites or PDF documents. Use when user provides a URL or PDF file containing innovative drug clinical trial data and needs structured extraction of: drug name, manufacturer, indication, clinical phase, trial name, conference, efficacy and safety data (presented as tables), and markdown output to "药品名称@适应症.md" file.
Use this skill when a clinician, practice manager, or healthcare developer needs to draft, structure, or retrieve clinical documentation — including SOAP notes, referral letters, prior authorization forms, discharge summaries, and care plan narratives. Connects to FHIR R4-compliant APIs (Epic, Cerner, Azure Health Data Services, HAPI FHIR) to pull structured patient data and generate documentation drafts. Also supports manual input when no EHR connection is available. DO NOT use for direct diagnosis, prescribing decisions, or any task requiring a licensed clinical judgment — this skill assists with documentation only.
Search clinical trial databases similar to ClinicalTrials.gov. Use this skill whenever the user asks about clinical trials, drug trials, indications, targets, drug names, trial phases, NCT IDs, enrollment, or recruitment. Automatically parses natural language questions into structured query parameters and calls the backend API to return matching trial records. Trigger words include: clinical trial, NCT, drug development, indication, target, phase, enrollment, recruitment, sponsor, cohort, arm, endpoint, efficacy, safety data.
Analyze ECG signals via heartvoice (心之声) API — single-lead and 12-lead. Automatically selects endpoint based on user intent and responds in the user's language. Use when user mentions ECG, 心电图, 心电分析, 单导联, 十二导联, 1-lead, 12-lead, heart rhythm, arrhythmia, QRS, QT interval, signal quality, or asks to analyze an ECG JSON file.
醫療文檔處理技能 - 病歷摘要、報告分析、醫學文獻整理。適用於醫生、醫療專業人員。觸發詞:病歷、醫療報告、醫學文獻、clinical notes、medical document、病歷摘要、出院小結、門診記錄。
| name | meal-order |
| description | Terminal-based meal reminder and McDonald's ordering flow. Use when user says "帮我点餐", "午餐推荐", "吃什么", "我要点麦当劳", or when meal-time cron fires. |
调用 Worker API 获取 3 个方案:
curl -s -X POST http://127.0.0.1:8000/api/recommend \
-H 'Content-Type: application/json' \
-d '{"message":"帮我搭配<餐次>","mode":"quick"}'
餐次根据当前时间自动判断:
用 Markdown 表格展示 3 个方案,格式:
## 🍽️ 智囊团推荐方案
### 方案 1: 💪 {title} ({mode})
| 菜品 | 价格 | 热量 |
|------|------|------|
| ... | ¥... | ...kcal |
💰 总价: ¥XX | 🔥 总热量: XXkcal
✅ 优点: ...
❌ 缺点: ...
📝 推荐理由: ...
### 方案 2: 💰 {title}
(same format)
### 方案 3: 🎉 {title}
(same format)
---
> 请选择: **1** (自律) / **2** (省钱) / **3** (犒劳) / **换一个** / **跳过**
如果用户选择了一个方案,查询附近门店:
使用 mcp__mcd-mcp__query-nearby-stores 工具:
展示门店列表让用户选择。
使用 mcp__mcd-mcp__query-meals 获取门店真实菜单:
用模糊匹配将推荐方案的菜品名与真实菜单匹配,获取 productCode。 如果匹配不到,让用户确认或替换。
使用 mcp__mcd-mcp__calculate-price 验证实际价格:
展示实际价格,确认是否下单。
使用 mcp__mcd-mcp__create-order 下单:
展示订单结果:
当用户说"开启饭点提醒"或首次使用时,创建 3 个定时任务:
3 8 * * *7 12 * * *3 18 * * *每个 cron prompt: "饭点到了!执行 meal-order skill:调用 http://127.0.0.1:8000/api/recommend 获取推荐方案,展示给用户并询问是否点餐。"
当用户说"关闭提醒"时,删除所有 meal 相关的 cron job。