Agent Skills
› SharpAI/DeepCamera
› channel-matrix
channel-matrix
GitHub将Clawdbot智能体接入Matrix/Element消息平台,支持在聊天室中进行完整对话、搜索片段、获取警报及控制摄像头等交互功能。
Trigger Scenarios
需要集成Matrix或Element消息渠道
希望通过Matrix聊天室与Agent进行交互
Install
npx skills add SharpAI/DeepCamera --skill channel-matrix -g -y
SKILL.md
Frontmatter
{
"name": "channel-matrix",
"version": "1.0.0",
"parameters": [
{
"name": "homeserver",
"type": "url",
"group": "Connection",
"label": "Homeserver URL",
"default": "https:\/\/matrix.org",
"required": true
},
{
"name": "access_token",
"type": "password",
"group": "Connection",
"label": "Bot Access Token",
"required": true
},
{
"name": "room_id",
"type": "string",
"group": "Connection",
"label": "Room ID",
"required": true,
"placeholder": "!abc123:matrix.org"
}
],
"description": "Matrix\/Element messaging channel for Clawdbot agent",
"capabilities": {
"messaging_channel": {
"script": "scripts\/channel.py",
"description": "Matrix messaging channel",
"supported_actions": [
"send",
"send_file",
"react",
"edit",
"delete",
"reply",
"thread-reply"
]
}
}
}
Matrix Channel
Connect SharpAI Aegis's Clawdbot agent to Matrix/Element. Have full conversations — search clips, get alerts, control cameras — all from your Matrix room.
Setup
python3 -m venv .venv && source .venv/bin/activate
pip install -r requirements.txt
Version History
- 2264fcb Current 2026-08-20 16:02


