一键导入
一键导入
Find doctors with Healthgrades - search providers, read reviews, and check credentials
Presentation creation, editing, and analysis. When Claude needs to work with presentations (.pptx files) for: (1) Creating new presentations, (2) Modifying or editing content, (3) Working with layouts, (4) Adding comments or speaker notes, or any other presentation tasks.
基于RFM模型和回归算法的客户生命周期价值(LTV)预测分析工具,支持电商和零售业务的客户价值预测。使用时需要客户交易数据、订单历史或消费记录,自动进行RFM特征工程、回归建模和价值预测。
IDE setup, dev containers, and local development tools
智能推荐系统分析工具,提供多种推荐算法实现、评估框架和可视化分析。使用时需要用户行为数据、商品信息或评分数据,支持协同过滤、矩阵分解等推荐算法,生成个性化推荐结果和评估报告。
Presentation creation, editing, and analysis. When Claude needs to work with presentations (.pptx files) for: (1) Creating new presentations, (2) Modifying or editing content, (3) Working with layouts, (4) Adding comments or speaker notes, or any other presentation tasks
| name | 會議記錄助理 Skill |
| description | 自動將會議影片轉換為文字記錄並上傳。 |
此 Skill 協助你將會議影片(MP4, MOV 等)自動轉寫為結構化的會議記錄,並上傳至網站資料庫。
請確保 Mac 已安裝 ffmpeg (這是處理影音的必要工具)。
若您的電腦找不到 brew 指令,請先安裝 Homebrew:
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
安裝完 Homebrew 後,再安裝 ffmpeg:
brew install ffmpeg
建議建立虛擬環境來安裝套件:
# 進入 skill 資料夾
cd skills/meeting_assistant
# 建立虛擬環境
python3 -m venv venv
# 啟動虛擬環境
source venv/bin/activate
# 安裝所需套件
pip install -r requirements.txt
請複製範例檔並填入金鑰:
cp config.json.example config.json
使用文字編輯器打開 config.json:
GOOGLE_API_KEY: 填入你的 Gemini API Key。API_ENDPOINT: 網站 API 位置 (預設為 http://localhost:3000/api/meeting-records,若已部署至 Vercel 請填入正式網址,例如 https://您的網址.vercel.app/api/meeting-records)請在終端機 (Terminal) 執行:
# 1. 確保已啟動虛擬環境 (若未啟動)
source skills/meeting_assistant/venv/bin/activate
# 2. 執行轉換 (將路徑換成您的影片檔)
python3 skills/meeting_assistant/process.py /path/to/your/video.mp4
執行成功後,終端機顯示 Success,您即可至網站的「會議記錄」頁面查看結果。