Files
mqtt-clawdbot-bridge/package.json
Clawd df98d3ef95 Initial commit: MQTT to Clawdbot bridge
- Subscribe to MQTT topics, forward to Clawdbot webhook
- Configurable via environment variables
- Supports wake (system event) and agent (isolated) modes
- Includes systemd service template
- Home Assistant examples in README
2026-01-28 10:09:25 +00:00

18 lines
426 B
JSON

{
"name": "mqtt-clawdbot-bridge",
"version": "1.0.0",
"description": "Bridge MQTT messages to Clawdbot triggers via webhook",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node index.js",
"dev": "node --watch index.js"
},
"keywords": ["mqtt", "clawdbot", "automation", "home-assistant", "webhook"],
"author": "Clawd",
"license": "MIT",
"dependencies": {
"mqtt": "^5.0.0"
}
}