Agent Skills
› SharpAI/DeepCamera
› camera-provider-reolink
camera-provider-reolink
GitHub提供Reolink摄像头的集成能力,支持通过HTTP API和RTSP流进行控制与视频获取。兼容PoE、WiFi及多种型号(如RLC系列、Argus、Duo等),适用于需要接入Reolink设备的自动化或监控场景。
Trigger Scenarios
需要连接Reolink摄像头获取视频流
通过API控制Reolink摄像头
集成Reolink设备到现有系统
Install
npx skills add SharpAI/DeepCamera --skill camera-provider-reolink -g -y
SKILL.md
Frontmatter
{
"name": "camera-provider-reolink",
"version": "1.0.0",
"parameters": [
{
"name": "host",
"type": "string",
"group": "Connection",
"label": "Camera IP",
"required": true
},
{
"name": "username",
"type": "string",
"group": "Connection",
"label": "Username",
"default": "admin"
},
{
"name": "password",
"type": "password",
"group": "Connection",
"label": "Password",
"required": true
},
{
"name": "channel",
"type": "number",
"group": "Connection",
"label": "Channel",
"default": 0
}
],
"description": "Reolink camera integration — RTSP and HTTP API",
"capabilities": {
"snapshot": {
"script": "scripts\/snapshot.py",
"description": "HTTP API snapshot"
},
"clip_feed": {
"script": "scripts\/feed.py",
"description": "Motion-triggered clip capture from Reolink cameras"
},
"live_stream": {
"script": "scripts\/stream.py",
"description": "RTSP URL for go2rtc live streaming"
},
"discover_cameras": {
"script": "scripts\/discover.py",
"description": "Discover Reolink cameras via ONVIF"
}
}
}
Reolink Camera Provider
Integrates Reolink cameras via their HTTP API and RTSP streams. Supports PoE and WiFi models.
Supported Models
- Reolink RLC-810A, RLC-820A, RLC-1210A
- Reolink Argus series (battery)
- Reolink Duo / TrackMix
- Any Reolink with RTSP enabled
Setup
python3 -m venv .venv && source .venv/bin/activate
pip install -r requirements.txt
Version History
- 2264fcb Current 2026-08-20 16:02


