Agent Skills
› SharpAI/DeepCamera
› channel-signal
channel-signal
GitHub将Clawdbot智能体连接至Signal私密消息通道,基于signal-cli实现机器人通信。
Trigger Scenarios
需要集成Signal作为消息渠道
配置Agent的Signal通信能力
Install
npx skills add SharpAI/DeepCamera --skill channel-signal -g -y
SKILL.md
Frontmatter
{
"name": "channel-signal",
"version": "1.0.0",
"parameters": [
{
"name": "signal_cli_path",
"type": "string",
"group": "Connection",
"label": "signal-cli Path",
"default": "signal-cli"
},
{
"name": "phone_number",
"type": "string",
"group": "Connection",
"label": "Bot Phone Number",
"required": true,
"placeholder": "+1234567890"
}
],
"description": "Signal messaging channel for Clawdbot agent",
"capabilities": {
"messaging_channel": {
"script": "scripts\/channel.py",
"description": "Signal messaging channel",
"supported_actions": [
"send",
"send_file",
"react",
"reply"
]
}
}
}
Signal Channel
Connect SharpAI Aegis's Clawdbot agent to Signal — the most private messaging channel. Uses signal-cli for bot communication.
Setup
# Install signal-cli first: https://github.com/AsamK/signal-cli
python3 -m venv .venv && source .venv/bin/activate
pip install -r requirements.txt
Version History
- 2264fcb Current 2026-08-20 16:02


