Files
homeai/homeai-agent/workflows/notification-router.json
Aodhan Collins 6a0bae2a0b feat(phase-04): Wyoming Satellite integration + OpenClaw HA components
## Voice Pipeline (P3)
- Replace openWakeWord daemon with Wyoming Satellite approach
- Add Wyoming Satellite service on port 10700 for HA voice pipeline
- Update setup.sh with cross-platform sed compatibility (macOS/Linux)
- Add version field to Kokoro TTS voice info
- Update launchd service loader to use Wyoming Satellite

## Home Assistant Integration (P4)
- Add custom conversation agent component (openclaw_conversation)
  - Fix: Use IntentResponse instead of plain strings (HA API requirement)
  - Support both HTTP API and CLI fallback modes
  - Config flow for easy HA UI setup
- Add OpenClaw bridge scripts (Python + Bash)
- Add ha-ctl utility for HA entity control
  - Fix: Use context manager for token file reading
- Add HA configuration examples and documentation

## Infrastructure
- Add mem0 backup automation (launchd + script)
- Add n8n workflow templates (morning briefing, notification router)
- Add VS Code workspace configuration
- Reorganize model files into categorized folders:
  - lmstudio-community/
  - mlx-community/
  - bartowski/
  - mradermacher/

## Documentation
- Update PROJECT_PLAN.md with Wyoming Satellite architecture
- Update TODO.md with completed Wyoming integration tasks
- Add OPENCLAW_INTEGRATION.md for HA setup guide

## Testing
- Verified Wyoming services running (STT:10300, TTS:10301, Satellite:10700)
- Verified OpenClaw CLI accessibility
- Confirmed cross-platform compatibility fixes
2026-03-08 02:06:37 +00:00

108 lines
2.1 KiB
JSON

{
"nodes": [
{
"parameters": {
"httpMethod": "POST",
"path": "ha-notification",
"options": {}
},
"id": "a1b2c3d4-e5f6-4a5b-8c9d-0e1f2a3b4c5d",
"name": "HA Webhook",
"type": "n8n-nodes-base.webhook",
"typeVersion": 1,
"position": [
250,
300
]
},
{
"parameters": {
"conditions": {
"string": [
{
"value1": "={{ $json.body.urgency }}",
"value2": "high"
}
]
}
},
"id": "b2c3d4e5-f6a7-5b6c-9d0e-1f2a3b4c5d6e",
"name": "Classify Urgency",
"type": "n8n-nodes-base.if",
"typeVersion": 1,
"position": [
450,
300
]
},
{
"parameters": {
"method": "POST",
"url": "http://localhost:8080/speak",
"sendBody": true,
"bodyParameters": {
"parameters": [
{
"name": "text",
"value": "={{ $json.body.message }}"
}
]
},
"options": {}
},
"id": "c3d4e5f6-a7b8-6c7d-0e1f-2a3b4c5d6e7f",
"name": "TTS Immediately",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 4.1,
"position": [
700,
200
]
},
{
"parameters": {
"jsCode": "return { status: 'queued', message: $json.body.message };"
},
"id": "d4e5f6a7-b8c9-7d8e-1f2a-3b4c5d6e7f8a",
"name": "Queue Notification",
"type": "n8n-nodes-base.code",
"typeVersion": 2,
"position": [
700,
400
]
}
],
"connections": {
"HA Webhook": {
"main": [
[
{
"node": "Classify Urgency",
"type": "main",
"index": 0
}
]
]
},
"Classify Urgency": {
"main": [
[
{
"node": "TTS Immediately",
"type": "main",
"index": 0
}
],
[
{
"node": "Queue Notification",
"type": "main",
"index": 1
}
]
]
}
}
}