Agent Skills
› SharpAI/DeepCamera
› camera-provider-tapo
camera-provider-tapo
GitHub集成TP-Link Tapo摄像头,支持RTSP流媒体和ONVIF协议。提供环境搭建指南,用于在Python环境中安装依赖并配置摄像头接入服务。
Trigger Scenarios
需要集成TP-Link Tapo系列摄像头
配置RTSP或ONVIF视频流接入
Install
npx skills add SharpAI/DeepCamera --skill camera-provider-tapo -g -y
SKILL.md
Frontmatter
{
"name": "camera-provider-tapo",
"version": "1.0.0",
"parameters": [
{
"name": "host",
"type": "string",
"group": "Connection",
"label": "Camera IP",
"required": true
},
{
"name": "username",
"type": "string",
"group": "Connection",
"label": "Tapo Cloud Username",
"required": true
},
{
"name": "password",
"type": "password",
"group": "Connection",
"label": "Tapo Cloud Password",
"required": true
}
],
"description": "TP-Link Tapo camera integration — RTSP streaming and ONVIF",
"capabilities": {
"clip_feed": {
"script": "scripts\/feed.py",
"description": "Motion-triggered clip capture"
},
"live_stream": {
"script": "scripts\/stream.py",
"description": "RTSP URL for go2rtc live streaming"
},
"discover_cameras": {
"script": "scripts\/discover.py",
"description": "Discover Tapo cameras on network"
}
}
}
Tapo Camera Provider
Integrates TP-Link Tapo cameras (C200, C310, C320WS, C520WS, etc.) via RTSP and ONVIF.
Setup
python3 -m venv .venv && source .venv/bin/activate
pip install -r requirements.txt
Version History
- 2264fcb Current 2026-08-20 16:02


