Agent Skills
› SharpAI/DeepCamera
› camera-provider-eufy
camera-provider-eufy
GitHub将Eufy摄像头集成至SharpAI Aegis,支持本地RTSP实时流与事件剪辑下载,用于安防分析。
Trigger Scenarios
需要接入Eufy摄像头进行视频流监控
需要获取摄像头触发的事件片段
Install
npx skills add SharpAI/DeepCamera --skill camera-provider-eufy -g -y
SKILL.md
Frontmatter
{
"name": "camera-provider-eufy",
"version": "1.0.0",
"parameters": [
{
"name": "station_ip",
"type": "string",
"group": "Connection",
"label": "HomeBase IP",
"required": true
},
{
"name": "username",
"type": "string",
"group": "Account",
"label": "Eufy Account Email",
"required": true
},
{
"name": "password",
"type": "password",
"group": "Account",
"label": "Eufy Account Password",
"required": true
}
],
"description": "Eufy camera integration — local RTSP streaming and event clips",
"capabilities": {
"clip_feed": {
"script": "scripts\/feed.py",
"description": "Event-triggered clip capture from Eufy cameras"
},
"live_stream": {
"script": "scripts\/stream.py",
"description": "RTSP URL for go2rtc live streaming"
},
"discover_cameras": {
"script": "scripts\/discover.py",
"description": "List Eufy cameras on network"
}
}
}
Eufy Camera Provider
Integrates Eufy cameras (local P2P or cloud) with SharpAI Aegis. Supports RTSP streaming for live view and event-triggered clip download for analysis.
Setup
python3 -m venv .venv && source .venv/bin/activate
pip install -r requirements.txt
Version History
- 2264fcb Current 2026-08-20 16:02


