Overview
- Skill Key
- fanqing203/voice-listener
- Author
- fanqing203
- Source Repo
- openclaw/skills
- Version
- -
- Source Path
- skills/fanqing203/voice-listener
- Latest Commit SHA
- 72a9e8814a22919eeda3d605763c8fd60cf8c167
Stars
0
Installs
0
Status
ACTIVE
Visibility
PUBLIC
直接复制以下提示词,发送给你的 AI 助手即可完成安装。
请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 Voice Listener 技能。 若已安装,则直接安装 Voice Listener 技能。
# Voice Listener Skill
百度语音识别 + 智能唤醒技能
## 功能
- 🎤 百度语音识别(高准确度)
- ✨ 智能唤醒模式:"小龙虾"激活,"停止"暂停
- 🔄 持续监听:激活后所有语音自动输入
- 📋 无需每次都说唤醒词
## 快速开始
### 方式1:通过OpenClaw技能系统调用(推荐)
在对话中直接说或输入:
```
启动语音监听
```
OpenClaw会自动调用此技能并启动语音识别程序。
### 方式2:启动脚本
双击运行:
```
voice_input_baidu_smart.bat
```
### 方式3:命令行
在技能目录下运行:
```bash
python start_voice_listener.py
```
## 使用方法
### 激活模式
1. 双击 `voice_input_baidu_smart.bat` 启动程序
2. 程序进入待机模式
3. 说:**"小龙虾"**
4. 程序进入激活模式
5. 所有语音都会自动识别并输入
### 持续输入
激活后,你说的话会自动输入到光标位置:
```
说: "你好" → 自动输入
说: "帮我打开淘宝" → 自动输入
说: "今天天气怎么样?" → 自动输入
```
### 暂停输入
说:**"停止"**
程序回到待机模式,不会再输入你的语音。
## 配置文件
### 百度 API 配置
编辑 `baidu_config.json`:
```json
{
"APP_ID": "你的APP_ID",
"API_KEY": "你的API_KEY",
"SECRET_KEY": "你的SECRET_KEY"
}
```
### 修改唤醒词
编辑 `voice_input_baidu_smart.py`:
```python
# 唤醒词
WAKE_WORD = "小龙虾" # 改成你喜欢的词
# 停止词
STOP_WORD = "停止" # 改成你喜欢的词
```
## 工作流程
```
[待机模式]
↓
说: "小龙虾" → [激活模式]
↓
持续语音输入...
↓
说: "停止" → [待机模式]
```
## 文件说明
### 核心文件
- `voice_input_baidu_smart.py` - 智能唤醒模式(推荐)
- `voice_input_baidu_smart.bat` - 启动脚本
- `baidu_config.json` - 百度API配置
### 其他版本
- `voice_input_baidu.py` - 简单持续监听(无唤醒词)
- `voice_input_baidu_wakeup.py` - 单次唤醒版本
- `BAIDU_README.md` - 百度API使用指南
- `SMART_WAKEUP_README.md` - 智能唤醒详细指南
### 配置文件
- `baidu_config.json` - 百度API密钥配置
## 技术参数
### 音频配置
- 采样率:16000 Hz(百度要求)
- 声道:1(单声道)
- 格式:WAV
- 静音阈值:0.02(可调)
- 静音时长:1.5 秒(说话结束后停止录音)
- 最短语音:0.5 秒(防止误触发)
### API 配置
- 识别引擎:百度语音识别 API
- Token API:https:/...
# 🎤 语音监听助手
> 百度语音识别 + 智能唤醒模式 - 持续语音监听助手
[](https://clawhub.com)
[]()
[]()
---
## ✨ 特性
- 🎤 **百度语音识别** - 高准确度的中文语音识别
- ✨ **智能唤醒模式** - 说"小龙虾"激活,"停止"暂停
- 🔄 **持续监听** - 激活后所有语音自动输入
- 📋 **无需重复唤醒** - 激活后持续工作,不用每次都说唤醒词
- 🚀 **简单易用** - 开箱即用,配置简单
- 🆓 **免费使用** - 百度 API 每天 50,000 次免费额度
---
## 📦 安装
### 通过 ClawHub 安装(推荐)
在 OpenClaw 中运行:
```
openclaw skill install voice-listener
```
---
### 手动安装
1. 下载技能文件
2. 解压到 `C:\Users\你的用户名\.agents\skills\voice-listener\`
3. 配置百度 API 密钥(见下方配置说明)
4. 运行 `voice_input_baidu_smart.bat`
---
## ⚙️ 配置
### 百度 API 密钥
1. 访问 [百度 AI 开放平台](https://ai.baidu.com/)
2. 注册/登录账号
3. 进入控制台:https://console.bce.baidu.com/ai/
4. 创建应用,选择"语音识别"
5. 获取:
- **APP ID**
- **API Key**
- **Secret Key**
6. 编辑 `baidu_config.json`:
```json
{
"APP_ID": "你的APP_ID",
"API_KEY": "你的API_KEY",
"SECRET_KEY": "你的SECRET_KEY"
}
```
---
## 🚀 使用方法
### 快速开始
1. 启动程序:双击 `voice_input_baidu_smart.bat`
2. 等待初始化完成
3. 说:**"小龙虾"** 激活
4. 开始说话,文字自动输入
5. 说:**"停止"** 暂停
---
### 工作流程
```
[待机模式]
↓
说: "小龙虾" → [激活模式]
↓
持续语音输入...
↓
说: "停止" → [待机模式]
```
---
### 示例
**激活:**
```
你: "小龙虾"
系统: ✨ 进入激活模式!
```
**输入:**
```
你: "你好"
系统: ✅ 已输入: 你好
你: "帮我打开淘宝"
系统: ✅ 已输入: 帮我打开淘宝
```
**停止:**
```
你: "停止"
系统: 🛑 停止激活模式!
```
---
## 📖 功能说明
### 待机模式(默认)
- **状态**:程序启动后的默认状态
- **行为**:只识别包含"小龙虾"的语音
- **其他语音**:忽略,不会输入
### 激活模式
- **状态**:检测到"小龙虾"后进入
-...
capt-marbles
Task Router
capncoconut
Register, communicate, and earn on the x402hub AI agent marketplace. Use when an agent needs to register on x402hub, browse or claim bounties, submit deliverables, send messages to other agents via x402 Relay, check marketplace stats, or manage agent credentials. Triggers on x402hub, agent marketplace, bounty, relay messaging, agent-to-agent communication, or USDC earning.
capevace
Real-time event bus for AI agents. Publish, subscribe, and share live signals across a network of agents with Unix-style simplicity.
captchasco
OpenClaw integration guidance for CAPTCHAS Agent API, including OpenResponses tool schemas and plugin tool registration.
carol-gutianle
name: modelready description: Start using a local or Hugging Face model instantly, directly from chat. metadata: {"openclaw":{"requires":{"bins": "bash", "curl" }, "env": "URL" }}
canbirlik
Controls Wiz smart bulbs (turn on/off, RGB colors, disco mode) via local WiFi.