You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 2, 2026. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+94Lines changed: 94 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -240,6 +240,58 @@ The coordinator scores peers by cost, load, and privacy constraints, then routes
240
240
241
241
All peers sync via SSH/Tailscale. Config, repos, credentials, and the plan DB stay aligned across machines with one command: `mesh-sync-all.sh`. Live migration moves a running plan to another peer mid-execution.
242
242
243
+
### Dashboard Delegation
244
+
245
+
Delegate plans directly from the Control Room — click the 🚀 icon on any active mission:
246
+
247
+
1.**Select target node** — see OS, CPU load, active tasks, online status
248
+
2.**Auto preflight** — 6 streaming checks run and self-heal:
249
+
- SSH reachability, heartbeat (auto-restarts if stale), config sync (auto-syncs if diverged), Claude CLI, disk space
250
+
3.**One-click delegate** — full sync (Phase 0) + migration (Phase 1-5) streamed live to a modal
251
+
4.**tmux session** — plan runs in `plan-{ID}` on target; terminal icons auto-attach
252
+
253
+
### Node Power Management
254
+
255
+
| Button | When | What it does |
256
+
|--------|------|-------------|
257
+
| ⚡ Wake | Node offline | Sends Wake-on-LAN magic packet (needs `mac_address` in peers.conf) |
@@ -343,6 +395,48 @@ Open your terminal with Claude Code or Copilot CLI and type:
343
395
344
396
MyConvergio extracts requirements, asks clarifying questions, generates a structured plan with parallel tasks, executes each task in isolation with TDD, validates through Thor's 9 quality gates, and auto-merges to main. You approve the plan — the system does the rest.
345
397
398
+
### Dashboards
399
+
400
+
MyConvergio includes two dashboards for monitoring plans, agents, and mesh nodes:
401
+
402
+
| Dashboard | What | How to run |
403
+
|-----------|------|------------|
404
+
|**Control Room** (web) | Full browser UI with plan drill-down, mesh topology, integrated terminals, cost analytics |`python3 ~/.claude/scripts/dashboard_web/server.py` then open `http://localhost:8420`|
405
+
|**pianits** (terminal) | Lightweight TUI for quick checks inside tmux/SSH sessions — auto-refresh, drill-down, quit with `q`|`~/.claude/scripts/pianits`|
406
+
407
+
#### Recommended aliases
408
+
409
+
Add these to your shell profile for quick access:
410
+
411
+
<details>
412
+
<summary><strong>macOS / Linux</strong> (~/.zshrc or ~/.bashrc)</summary>
413
+
414
+
```bash
415
+
# Convergio dashboards
416
+
alias piani='open http://localhost:8420'# macOS: opens browser
417
+
# alias piani='xdg-open http://localhost:8420' # Linux: opens browser
0 commit comments