BirdNET-Go
Query your BirdNET-Go bird sound identification system.
Setup
Create ~/.clawdbot/credentials/birdnet/config.json:
CODEBLOCK0
No API key needed for local access.
Commands
List recent detections
bash scripts/birdnet.sh recent [limit]
Shows the most recent bird detections with confidence scores.
Search detections by species
bash scripts/birdnet.sh search "Common Raven"
Search for detections of a specific bird species.
Get detection details
bash scripts/birdnet.sh detection <id>
Get full details about a specific detection including weather data.
Get species info
bash scripts/birdnet.sh species "Corvus corax"
Get information about a species including rarity score and taxonomy.
Today's summary
bash scripts/birdnet.sh today
Summary of today's bird detections.
Output Format
Recent detections show:
- - Common name (Scientific name)
- Confidence score (0.0-1.0)
- Date and time
- Verification status
API Endpoints Used
- -
GET /api/v2/detections - List detections - INLINECODE2 - Get detection details
- INLINECODE3 - Get species information
BirdNET-Go
查询您的BirdNET-Go鸟类声音识别系统。
设置
创建 ~/.clawdbot/credentials/birdnet/config.json 文件:
json
{
url: http://192.168.1.50:783
}
本地访问无需API密钥。
命令
列出近期检测结果
bash
bash scripts/birdnet.sh recent [limit]
显示最近的鸟类检测结果及其置信度评分。
按物种搜索检测结果
bash
bash scripts/birdnet.sh search Common Raven
搜索特定鸟类的检测结果。
获取检测详情
bash
bash scripts/birdnet.sh detection
获取特定检测的完整详情,包括天气数据。
获取物种信息
bash
bash scripts/birdnet.sh species Corvus corax
获取物种信息,包括稀有度评分和分类学信息。
今日摘要
bash
bash scripts/birdnet.sh today
今日鸟类检测结果摘要。
输出格式
近期检测结果显示:
- - 常用名(学名)
- 置信度评分(0.0-1.0)
- 日期和时间
- 验证状态
使用的API端点
- - GET /api/v2/detections - 列出检测结果
- GET /api/v2/detections/:id - 获取检测详情
- GET /api/v2/species - 获取物种信息