birdnet

Review·Scanned 2/18/2026

This skill queries a local BirdNET-Go instance and provides commands to list, search, and view detections. It reads ~/.clawdbot/credentials/birdnet/config.json and runs bash scripts/birdnet.sh, which makes HTTP requests to http://192.168.1.50:783.

from clawhub.ai·v1.0.0·7.1 KB·0 installs
Scanned from 1.0.0 at a6c521b · Transparency log ↗
$ vett add clawhub.ai/rappo/birdnetReview findings below

BirdNET-Go

Query your BirdNET-Go bird sound identification system.

Setup

Create ~/.clawdbot/credentials/birdnet/config.json:

{
  "url": "http://192.168.1.50:783"
}

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
  • GET /api/v2/detections/:id - Get detection details
  • GET /api/v2/species - Get species information