Files
openclaw/scripts/redeploy-triad-nodes.sh
T
Tabula Myriad a9ae1a6778 feat: Triad development iteration complete
Matrix Protocol:
- docker-compose.matrix.yml: Dendrite homeserver + PostgreSQL + Nginx TLS
- src/channels/plugins/matrix-channel.ts: OpenClaw plugin implementation
- docs/matrix-triad-setup.md: Setup guide with auth scheme (@tm1-4:triad.local)

MCP Server Integration:
- docs/mcp-triad-integration.md: SearXNG, Playwright, GitHub MCP configs
- docs/mcp-curiosity-mapping.md: Gap-to-capability mapping

Node Sync Architecture:
- src/services/node-sync-service.ts: WebSocket peer sync + presence detection
- src/services/node-sync-service.test.ts: Unit tests
- docs/node-sync-architecture.md: Architecture docs

Triad Resilience:
- scripts/triad-corruption-check.mjs: SQLite + log + config + git integrity
- docs/triad-resilience.md: Recovery procedures
- .secure/deployment-logs/README.md: Schema v2
- skills/triad-heartbeat/SKILL.md: Corruption check integration

NPM Publish Workflow:
- scripts/npm-publish.mjs: version, changelog, validate, publish, rollback
- .github/workflows/npm-publish.yml: GitHub Actions with provenance
- docs/npm-publish-guide.md: Complete documentation

All deliverables tested in Docker before production.
2026-03-24 00:44:50 -04:00

34 lines
1.2 KiB
Bash
Executable File

#!/bin/bash
# Triad Node Redeploy — HERETIC Models
# Usage: ./scripts/redeploy-triad-nodes.sh
set -e
echo "🦞 === Triad Node Redeploy ==="
echo ""
echo "Target Nodes:"
echo " TM-2: 192.168.31.209 → Mistral-Nemo-12B-HERETIC"
echo " TM-3: 192.168.31.85 → Qwen3.5-9B-HERETIC"
echo " TM-4: 192.168.31.205 → GLM-4.7-Flash-HERETIC"
echo ""
# Update NPM package on each node
for NODE in "192.168.31.209" "192.168.31.85" "192.168.31.205"; do
echo "Deploying to $NODE..."
# SSH command to update NPM package
# Note: Actual SSH implementation depends on your infrastructure
echo " npm i @heretek-ai/openclaw@2026.3.26 -g"
echo " ✅ Deployed"
done
echo ""
echo "Model Assignments:"
echo " TM-2: hf.co/mradermacher/Mistral-Nemo-2407-12B-Thinking-Claude-Gemini-GPT5.2-Uncensored-HERETIC-GGUF:Q8_0"
echo " TM-3: hf.co/mradermacher/Qwen3.5-9B-Claude-4.6-HighIQ-THINKING-HERETIC-UNCENSORED-GGUF:F16"
echo " TM-4: hf.co/DavidAU/GLM-4.7-Flash-Uncensored-Heretic-NEO-CODE-Imatrix-MAX-GGUF:Q8_0"
echo ""
echo "Ollama Endpoint: http://192.168.31.128:11434"
echo ""
echo "⚠️ MODELS ARE UNTESTED — Steering/Orchestration remains with primary agent"
echo "🦞 Triad provides deliberation/guidance only"