Overview
- Skill Key
- anightmare2/feishu-voice-skill
- Author
- anightmare2
- Source Repo
- openclaw/skills
- Version
- -
- Source Path
- skills/anightmare2/feishu-voice-skill
- Latest Commit SHA
- 6885137637478f78da1f9913920da9c93d84cc17
让 AI 助手能够给飞书用户发送真正的语音条(点击即播,不是文件附件)。支持 NoizAI TTS 生成语音,自动转换为 OPUS 格式,通过飞书 API 发送语音消息。
Stars
0
Installs
0
Status
ACTIVE
Visibility
PUBLIC
直接复制以下提示词,发送给你的 AI 助手即可完成安装。
请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 feishu-voice-skill 技能。 若已安装,则直接安装 feishu-voice-skill 技能。
# Feishu Voice Skill - 飞书语音条技能 让任何 AI 助手都能给飞书用户发送真正的语音条! ## 🎯 功能特点 - ✅ **真正的语音条**:点击即播,不是 MP3 文件附件 - ✅ **NoizAI TTS**:高质量语音合成,支持情感控制 - ✅ **自动转换**:自动将音频转换为 OPUS 格式 - ✅ **一键发送**:封装好的脚本,一行命令发送语音 ## 📋 使用场景 - 🌞 语音问候(早安/晚安) - 📰 语音播报(新闻/天气/股票) - 📖 语音故事(睡前故事) - 💬 语音聊天(更亲切的交流) - 🎤 语音通知(提醒/公告) ## 🔧 前置要求 ### 1. Feishu 应用配置 1. 访问 https://open.feishu.cn/app 2. 创建企业自建应用 3. 添加以下权限: - `im:message` - 发送消息 - `im:message:send_as_bot` - 以机器人身份发送 - `im:resource` - 资源访问 4. 获取 App ID 和 App Secret ### 2. NoizAI API Key 1. 访问 https://developers.noiz.ai/api-keys 2. 创建 API Key 3. 配置到技能中 ### 3. 系统依赖 ```bash # 安装 FFmpeg(用于音频转换) # OpenCloudOS/CentOS yum install -y ffmpeg # Ubuntu/Debian apt-get install -y ffmpeg # macOS brew install ffmpeg ``` ## 🚀 快速开始 ### 步骤 1:配置凭证 ```bash # 设置 Feishu 凭证 export FEISHU_APP_ID="cli_xxxxxxxxxxxxx" export FEISHU_APP_SECRET="xxxxxxxxxxxxxxxxx" export FEISHU_CHAT_ID="oc_xxxxxxxxxxxxx" # 设置 NoizAI API Key(base64 编码) export NOIZ_API_KEY="your_base64_encoded_api_key" ``` ### 步骤 2:发送语音消息 ```bash # 简单模式:输入文字,自动发送语音 bash scripts/send_voice.sh -t "主人晚上好~ 司幼来陪您聊天啦~" # 指定输出文件 bash scripts/send_voice.sh -t "你好" -o /tmp/voice.opus # 从文件读取文字 bash scripts/send_voice.sh -f message.txt # 自定义语音参数 bash scripts/send_voice.sh -t "你好" --speed 1.2 --emotion happy ``` ## 📖 命令参数 ```bash bash scripts/send_voice.sh [选项] 选项: -t, --text <text> 要转换的文字(必需,除非使用 -f) -f, --file <file> 文字文件路径 -o, --output <file> 输出音频文件路径 --chat-id <id> 飞书聊天 ID(覆盖环境变量) --app-id <id> 飞书 App ID(覆盖环境变量) --app-secret <secret> 飞书 App Secret(覆盖环境变量) -...
# 🎤 Feishu Voice Skill - 飞书语音条技能 让任何 AI 助手都能给飞书用户发送真正的语音条(点击即播,不是文件附件)! ## ✨ 功能特点 - ✅ **真正的语音条**:点击即播,不是 MP3 文件附件 - ✅ **NoizAI TTS**:高质量语音合成,支持情感控制 - ✅ **自动转换**:自动将音频转换为 OPUS 格式 - ✅ **一键发送**:封装好的脚本,一行命令发送语音 ## 🚀 快速开始 ### 1. 安装依赖 ```bash # 安装 FFmpeg # OpenCloudOS/CentOS yum install -y ffmpeg # Ubuntu/Debian apt-get install -y ffmpeg # macOS brew install ffmpeg ``` ### 2. 配置环境变量 ```bash export FEISHU_APP_ID="cli_xxx" export FEISHU_APP_SECRET="xxx" export FEISHU_CHAT_ID="oc_xxx" export NOIZ_API_KEY="your_noiz_api_key" ``` ### 3. 发送语音 ```bash bash scripts/send_voice.sh -t "主人晚上好~ 司幼来陪您聊天啦~" ``` ## 📖 使用文档 详细使用说明请查看 [SKILL.md](SKILL.md) ## 💰 商业授权 - **个人使用**:免费 - **商业使用**:请联系作者获取授权 ## 📦 安装 ### 从 ClawHub 安装 ```bash npx skills add feishu-voice-skill ``` ### 从 GitHub 安装 ```bash git clone https://github.com/openclaw/feishu-voice-skill.git cd feishu-voice-skill bash scripts/send_voice.sh -t "测试语音" ``` ## 🎯 使用场景 - 🌞 语音问候(早安/晚安) - 📰 语音播报(新闻/天气/股票) - 📖 语音故事(睡前故事) - 💬 语音聊天(更亲切的交流) - 🎤 语音通知(提醒/公告) ## 🛠️ 技术栈 - **TTS**: NoizAI Cloud API - **音频格式**: OPUS (24kHz, 32kbps) - **平台**: Feishu (飞书) Open API - **语言**: Bash + Python ## 📄 License MIT License --- **Made with ❤️ by 司幼 (SiYou)**
heyixuan2
Bambu Lab 3D printer control and automation. Activate when user mentions: printer status, 3D printing, slice, analyze model, generate 3D, AMS filament, print monitor, Bambu Lab, or any 3D printing task. Full pipeline: search → generate → analyze → colorize → preview → open BS → user slice → print → monitor. Supports all 9 Bambu Lab printers (A1 Mini, A1, P1S, P2S, X1C, X1E, H2C, H2S, H2D).
capt-marbles
Generative Engine Optimization (GEO) for AI search visibility. Optimize content to appear in ChatGPT, Perplexity, Claude, and Google AI Overviews. Use when optimizing websites, pages, or content for LLM discoverability and citation.
carlulsoe
Local speech-to-text with NVIDIA Parakeet TDT 0.6B v3 (ONNX on CPU). 30x faster than Whisper, 25 languages, auto-detection, OpenAI-compatible API. Use when transcribing audio files, converting speech to text, or processing voice recordings locally without cloud APIs.
carlzhao007
飞书消息自动处理与进度反馈技能。安装后后台运行,监听飞书任务消息并自动创建独立进程处理。 在处理前后发送实时进度反馈(任务确认、进度百分比、完成通知)。 支持任务类型识别、智能解析、错误重试、并发控制、状态持久化。 使用场景:飞书自动化工作流、任务进度追踪、批量任务处理、需要实时反馈的场景。
cartoonitunes
BottyFans agent skill for autonomous creator monetization. Lets AI agents register, build a profile, publish posts (public, subscriber-only, or pay-to-unlock), upload media, accept USDC subscriptions and tips on Base, send and receive DMs, track earnings, and appear on the creator leaderboard. Use this skill when an agent needs to monetize content, interact with fans, manage a creator profile, handle payments in USDC, or operate as an autonomous creator on the BottyFans platform.
camopel
Local arXiv paper manager with semantic search. Crawls arXiv categories, downloads PDFs, chunks content, and indexes with FAISS + Ollama embeddings. No cloud API keys required — everything runs locally.