Install
openclaw skills install bird-infoQuery bird information from dongniao.net using web_fetch. Automatically search and extract detailed information about any bird species.
openclaw skills install bird-infoQuery bird information from Dongniao - China's comprehensive bird taxonomy website.
Updated: Now uses web_fetch for lightweight, reliable data extraction without browser automation.
Automatically finds and extracts detailed information about any bird species from the Dongniao taxonomy database.
Extracts from detail pages:
Simply ask in natural language:
请帮我查一下麻雀的详细信息
绿孔雀的分布区域是什么?
丹顶鹤的保护状况如何?
查询 Aquila chrysaetos 的信息
# Query by Chinese name
python3 scripts/bird_info_skill.py 麻雀
# Query by English name
python3 scripts/bird_info_skill.py Sparrow
# Query by scientific name
python3 scripts/bird_info_skill.py "Passer domesticus"
==================================================
🐦 非洲鸵鸟 - 鸟类详细信息
Common Ostrich (Struthio camelus)
==================================================
📌 基本信息
------------------------------
中文名:非洲鸵鸟
英文名:Common Ostrich
学名:Struthio camelus
科属:鸵鸟科
📖 形态特征
------------------------------
外形特征:雄性非洲鸵鸟高达 2.75 米,重达 156 千克;雌鸟较小,高约 1.9 米...
鸣叫特征:雄性非洲鸵鸟发出深沉的"boom"声,用于宣告领地和展示...
🌿 生活习性
------------------------------
非洲鸵鸟栖息于多种开阔地带,包括沙漠到稀树草原。它们可能定居或游荡...
🌍 分布区域
------------------------------
非洲鸵鸟广泛分布于非洲的西部、中部、东部和西南部,包括干旱、半干旱地区...
⚠️ 保护状况
------------------------------
IUCN:LC (无危)
==================================================
📊 数据来源:懂鸟 (https://dongniao.net)
┌─────────────────┐
│ User Query │
│ (bird name) │
└────────┬────────┘
│
▼
┌─────────────────┐
│ BirdInfoSkill │
│ (Python) │
└────────┬────────┘
│
▼
┌─────────────────┐
│ web_fetch │
│ (taxonomy) │
└────────┬────────┘
│
▼
┌─────────────────┐
│ Search & Match │
│ (fuzzy logic) │
└────────┬────────┘
│
▼
┌─────────────────┐
│ web_fetch │
│ (details) │
└────────┬────────┘
│
▼
┌─────────────────┐
│ Parse & Format │
│ (regex) │
└────────┬────────┘
│
▼
┌─────────────────┐
│ Formatted Output│
└─────────────────┘
bird_info_skill.py: Main implementation
BirdInfoSkill classweb_fetch() integrationTaxonomy Page (/taxonomy.html):
[中文名](/nd/id/中文名/英文名/英文名)
[英文名](/nd/id/中文名/英文名/英文名)
[学名](/nd/id/中文名/英文名/英文名)
Detail Page (/nd/id/...):
Bird Not Found
❌ 未找到鸟类 'xxx'
建议:
1. 检查鸟名拼写
2. 尝试使用中文名或英文名
3. 该鸟可能不在懂鸟数据库中
Network Error
❌ 无法获取分类页面
Parse Error
❌ 无法获取 xxx 的详细信息
Combine with Image Generation
请帮我查一下丹顶鹤的信息,然后生成一张它的图片
Combine with Translation
请查一下绿孔雀的详细信息,然后把关键点翻译成英文
| Feature | v1 (Browser) | v2 (web_fetch) |
|---|---|---|
| Method | Browser automation | HTTP fetch |
| Speed | Slow (~10s) | Fast (~2s) |
| Reliability | Low (browser deps) | High (no deps) |
| Resource Usage | High | Low |
| Setup Complexity | High | Low |
| Works in Sandbox | No | Yes |
Be Specific
Try Alternative Names
Verify Critical Info
Respect Wildlife
请帮我查一下麻雀的详细信息
Result: House Sparrow info with distribution, habitat, and conservation status.
请查一下褐马鸡的详细信息
Result: Endangered Chinese endemic species info from Shanxi province.
请查一下 Aquila chrysaetos 的信息
Result: Golden Eagle information using scientific name lookup.
查询 Red-crowned Crane
Result: 丹顶鹤 information with Chinese and English details.
Possible Causes:
Solutions:
Possible Causes:
Solutions:
Note: This skill provides information from the Dongniao database. For scientific research or conservation work, always cross-reference with primary sources and expert literature.