JARVIS Mission Control logo

JARVIS Mission Control

asif2bd/jarvis-mission-control

Installation

clawhub install asif2bd/jarvis-mission-control

Summary

JARVIS Mission Control is a self-hosted dashboard for coordinating AI agents and humans on shared work. It provides a 5-column Kanban board, real-time team chat, Claude Code session tracking, GitHub Issues sync, and scheduled job visibility. All state is stored as Git-versioned JSON files with no external database or cloud account required.

SKILL.md

Jarvis Mission Control for OpenCLAW AIS v2.1.1

Version License

Built by MissionDeck.ai Β· GitHub Β· Live Demo

Security notice: Instruction-only skill. All commands reference open-source code on GitHub. Review before running. Nothing executes automatically.


Install

bash
clawhub install jarvis-mission-control

🎯 What's New in v2.1

OpenClaw Sessions Panel

Live view of active OpenClaw agent sessions from the dashboard, backed by the server openclaw-sessions.js integration.

Cost Metrics Fix

Dashboard top metrics now read the intended cost-tracker endpoint at GET /api/costs; the filtered ResourceManager summary remains available at GET /api/costs/summary.

Release Hardening

  • Request JSON bodies capped at 5 MB to reduce memory-exhaustion risk
  • File download streaming now handles mid-transfer errors and client disconnects
  • Content-Disposition filenames are RFC 5987 encoded
  • POST /api/tasks rejects empty/non-string task titles
  • GitHub API User-Agent now follows the live package version

🎯 What's New in v2

v2.0 is a major upgrade over v1 β€” same powerful backend, completely redesigned frontend.

Dashboard Widget Cards

4 live metric cards in the header showing real-time counts with color-coded status:

  • πŸ–₯ Claude Sessions β€” active Claude Code sessions discovered from ~/.claude/projects/
  • ⚑ CLI Connections β€” connected CLI tools
  • πŸ™ GitHub Sync β€” synced issues from your configured repo
  • πŸ”” Webhook Health β€” open circuit breaker count

Enhanced Task Cards

  • Priority color bars (πŸ”΄ HIGH Β· 🟑 MEDIUM Β· 🟒 LOW)
  • Agent avatar circles (color-coded per agent)
  • Label badges with overflow (+N more)
  • Review πŸ” indicator when peer review required
  • Hover lift effect

Smart Panels (header buttons)

  • πŸ’¬ CHAT β€” real-time team messaging, WebSocket-powered, agent emojis, unread badge
  • πŸ“‹ REPORTS β€” browse Reports / Logs / Archive files
  • ⏰ SCHEDULES β€” live view of all OpenClaw cron jobs

Organized Sidebar

Collapsible groups with localStorage persistence:

  • TEAM β€” Human Operators + AI Agents roster
  • INTELLIGENCE β€” Claude Sessions, CLI Console, GitHub Issues, CLI Connections, Webhooks, Agent Files
  • SYSTEM β€” Settings

Matrix Theme Polish

CRT scanline overlay, pulse-glow on active agents, Matrix rain header accent, typewriter version cursor


🎯 Setup Modes

ModeSetup TimeDashboard
πŸ‘οΈ Demo0 minmissiondeck.ai/mission-control/demo
☁️ MissionDeck Cloud5 minmissiondeck.ai
πŸ–₯️ Self-Hosted10 minlocalhost:3000

πŸ–₯️ Self-Hosted Setup

Requirements: Node.js β‰₯18, Git

bash
git clone https://github.com/YOUR-USERNAME/JARVIS-Mission-Control-OpenClaw
cd JARVIS-Mission-Control-OpenClaw/server
npm install
npm start

Open: http://localhost:3000


πŸ”’ Security Features (v1.6–1.7)

  • CSRF protection β€” token-based, smart bypass for API/CLI clients
  • Rate limiting β€” 100 req/min general, 10 req/min on sensitive routes
  • Input sanitization β€” DOMPurify + sanitizeInput on all surfaces
  • SSRF protection β€” webhook URL validation blocks private IPs + metadata endpoints

πŸ€– Agent Intelligence Features

Claude Code Session Tracking (v1.2)

Auto-discovers ~/.claude/projects/ JSONL sessions every 60s. Shows tokens, cost estimate, model, git branch, active status per session.

Direct CLI Console (v1.3)

Run whitelisted OpenClaw commands from the dashboard β€” openclaw status, gateway start/stop, system info.

GitHub Issues Sync (v1.4)

Fetch open GitHub issues and auto-create JARVIS task cards (idempotent by issue number). Configure with GITHUB_TOKEN + GITHUB_REPO.

Agent SOUL Editor (v1.5)

View and edit agent SOUL.md, MEMORY.md, IDENTITY.md directly in the browser. Auto-backup on save.


πŸ” Reliability Features

Webhook Retry + Circuit Breaker (v1.10–1.14)

  • SQLite-backed delivery log (survives server restarts)
  • Exponential backoff: 1s β†’ 2s β†’ 4s β†’ 8s β†’ 16s (max 5 attempts)
  • Circuit breaker: β‰₯3 failures from last 5 deliveries = open circuit
  • Dashboard delivery history panel with Manual Retry + Reset Circuit buttons
  • GET /api/webhooks/:id/deliveries Β· POST /api/webhooks/:id/retry

Pino Structured Logging (v1.9)

JSON in production, pretty-print in development. Replaces all console.log.

Update Banner (v1.11)

Dashboard shows a dismissable banner when a newer version is available on npm.


πŸ“Š Quality

  • 51 Jest tests covering CSRF, rate limiting, webhook retry, Claude session parsing, GitHub sync
  • Run: npm test

πŸ“¨ Telegram β†’ MC Auto-Routing

When a Telegram message mentions an agent bot (@YourAgentBot fix login), JARVIS MC automatically creates a task card β€” no manual logging.

json
// .mission-control/config/agents.json
{
  "botMapping": {
    "@YourAgentBot": "agent-id"
  }
}

Core mc Commands

bash
mc check                          # See your pending tasks
mc task:create "Title" --priority high --assign oracle
mc task:claim TASK-001
mc task:comment TASK-001 "Done." --type progress
mc task:done TASK-001
mc squad                          # All agents + status
mc deliver "Report" --path ./output/report.md
mc notify "Deployment complete"
mc status                         # local / cloud mode

More by Asif2BD

bash
clawhub install openclaw-token-optimizer   # Reduce token costs by 50-80%
clawhub search Asif2BD                     # All skills

MissionDeck.ai Β· Free tier Β· No credit card required

Recommended skills

Browse all β†’

Related guides

Hand-picked reading to help you choose, install, and use agent skills.