agentsclimarketplace

Bridge dashboard

Skill bks-lab/open-bridge/skills/bridge-dashboard

Your AI coding agent starts every session knowing your repos, your clients, and how you work — a plain git repo of markdown + YAML it reads at session start, independent of model or frontend. Context compounds instead of restarting. MIT.

Install
npx -y skills add bks-lab/open-bridge --skill bridge-dashboard

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 8 stars8 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Generates the Bridge Control Center — a single-file HTML dashboard that bundles Fleet (infra/remotes/), Work Board, Calendar (next 24h), Channels, Git activity, optional Bridge-Deck /metrics, and upstream drift into one view. Stands alone; the pixel-art Bridge-Deck renderer it can complement is not yet public (coming soon). Trigger: "/bridge-dashboard", "bridge dashboard", "control center", "ops dashboard", "open dashboard", "show me everything at a glance".

SKILL.md

3.8 KB, as published. Nobody here has run it

Bridge Dashboard

What it does

A Python generator — scripts/bridge-dashboard.py, a shared repo-root utility shipped with the Bridge repo itself (not inside this skill's own directory), stdlib + PyYAML only — aggregates the entire Bridge state in parallel and renders a self-contained HTML:

TileSourceParallel probe
Fleetinfra/remotes/*.yaml + ICMP ping (Tailscale > LAN)yes, 8 workers
Work Boardwork/board.md (doing/backlog/done)yes
Calendar 24hworkflow/calendars/entries.yaml + RRULE expanderyes
Channelsinfra/channels/*.yamlyes
Bridge-Deck (optional)HTTP http://homeserver:8791/metrics — tile shows "offline" when absentyes, 1.5s timeout
Git Activityall repos from ecosystem.yaml via git log --since=24hyes, 6 workers
UpstreamHEAD..developmentyes
Eventslast 10 lines from work/log.mdyes

Design: dark theme, cyan/amber, responsive 12-column grid. Sticky header with live counters. Auto-refresh every 30s via meta tag.

Usage

# Generate once → work/dashboard.html
python3 scripts/bridge-dashboard.py

# Generate and open in the browser
python3 scripts/bridge-dashboard.py --open

# Continuous mode: server on :8790, regenerate every 30s
python3 scripts/bridge-dashboard.py --serve

Serve mode is suited for launchd/cron on homeserver. A plist template lives in skills/bridge-dashboard/references/com.example.bridge-dashboard.plist.

Relationship to Bridge-Deck (optional — not yet public, coming soon)

Bridge-Deck :8791Bridge Dashboard :8790
PurposeAmbient pixel-art office viewOps-grade situational awareness
TechNode/React/Pixi + WS livePython → HTML, 30s refresh
Runs wherehomeserver (launchd, always on)on-demand or launchd (optional)
ScopeAgents/Channels/CalendarFleet + Board + integrations-ready + Git

Both read the Bridge's YAML data read-only. No duplicate source.

Decision Tree

User wants to...
├── Quick morning check                  → python3 scripts/bridge-dashboard.py --open
├── Permanently on a 2nd monitor         → --serve + keep a browser tab open
├── Fleet status right now               → generate dashboard, top left
├── Integrate an integration tile (e.g. cloud-function health) → add a tile in scripts/bridge-dashboard.py (Phase 2 — planned)
└── Customize the dashboard              → edit scripts/bridge-dashboard.py

Data Sources & Invariants

  • Read-only: The script writes exclusively to work/dashboard.html. No changes to YAML/log/board.
  • Fail-soft: If a source is missing (e.g. bridge-deck offline), the tile shows "offline". Other tiles still run.
  • Timeouts: Ping 800ms, HTTP 1.5s, Git 3s per repo — the whole dashboard builds in <4s.
  • No secrets: The HTML contains only paths and metrics, no tokens.

Roadmap (non-blocking)

  1. Integration tile: cloud-function health + log-error count via provider CLI.
  2. Mail tile: unread mail from Microsoft Graph (via an org-overlay mail skill, if your bridge has one).
  3. Telegram/Signal unread count.
  4. Weekly sparkline: commits/day, log events/day.
  5. Dark/light toggle.
  6. PWA manifest for full-screen kiosk on iPad.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.