Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计异常

jarvis-mission-control贾维斯任务控制中心

Agent Skill

jarvis-mission-control 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

5,386

周安装

229

GitHub Stars

26

下载量

1,887
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:jarvis-mission-control(贾维斯任务控制中心)
来源仓库:https://github.com/asif2bd/jarvis-mission-control-openclaw
仓库路径:skills/jarvis-mission-control
安装命令:
npx skills add https://github.com/asif2bd/jarvis-mission-control-openclaw --skill jarvis-mission-control
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/asif2bd/jarvis-mission-control-openclaw --skill jarvis-mission-control

简介

jarvis-mission-control 是 MissionDeck.ai 开发的开源多 Agent 协调中心,提供看板与实时通信。

  • 支持自建服务器部署,集成任务历史与聊天功能,适用于人机协同工作流管理。
  • 通过 npx skills add 命令安装,参考 GitHub 仓库快速启动指南完成环境搭建。
  • 安全审计显示无高危漏洞,但仍需自行托管,注意网络暴露与访问权限控制。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

JARVIS Mission Control

![Version](https://github.com/Asif2BD/JARVIS-Mission-Control-OpenClaw/blob/main/CHANGELOG.md) ![License](https://github.com/Asif2BD/JARVIS-Mission-Control-OpenClaw/blob/main/LICENSE) ![Security](https://github.com/asif2bd/jarvis-mission-control-openclaw/blob/HEAD/./SECURITY.md)

Built by MissionDeck.ai · GitHub · Live Demo

Security notice: Instruction-only skill. All commands reference open-source code on GitHub. Security-audited with 0 HIGH / 0 CRITICAL findings. See SECURITY.md.

v2.0.7 — Free, open-source multi-agent coordination hub for OpenClaw.

Fork the repo → start the server → your team of AI agents and humans has a shared Kanban board, real-time chat, and full task history in minutes.

OptionSetup TimeLink
👁️ Demo0 minmissiondeck.ai/mission-control/demo
☁️ MissionDeck Cloud5 minmissiondeck.ai
🖥️ Self-Hosted10 minGitHub

Quick Start

# 1. Fork + clone
git clone https://github.com/YOUR-USERNAME/JARVIS-Mission-Control-OpenClaw.git
cd JARVIS-Mission-Control-OpenClaw

# 2. Initialize
./scripts/init-mission-control.sh

# 3. Start the server
cd server && npm install && npm start

# 4. Open the dashboard
open http://localhost:3000

The server auto-discovers all running OpenClaw agents at startup. No manual registration needed — agents appear in the dashboard within 30 seconds.


What You Get

Kanban Board

5-column workflow visible at full screen width:

INBOX → ASSIGNED → IN PROGRESS → REVIEW → DONE  +  BLOCKED (any stage)
  • Drag-and-drop task cards
  • Priority color coding (left border by priority)
  • Agent avatar chips showing assignee
  • Label chips with overflow count
  • Real-time WebSocket sync — all connected clients update instantly

Smart Panels (v2.0.3)

Three on-demand panels accessible from header buttons:

ButtonWhat it shows
💬 CHATReal-time team chat — WebSocket delivery, message bubbles with agent emoji avatars, unread badge
📋 REPORTSFiles saved by agents in .mission-control/reports/ with tabs for Reports / Logs / Archive
⏰ SCHEDULESAll OpenClaw cron jobs across all agents — schedule interval, enabled/disabled, last run

Agent Intelligence

  • Claude Code Sessions — auto-discovers ~/.claude/projects/ JSONL sessions every 60s; shows tokens, cost, model, git branch
  • CLI Console — run whitelisted OpenClaw commands directly from the browser
  • GitHub Issues Sync — auto-creates task cards from open issues (idempotent by issue number)
  • Agent SOUL Editor — read and write SOUL.md, MEMORY.md, IDENTITY.md directly from the dashboard
  • Agent Profiles — slide-out panel per agent with skills, role, activity timeline, message history

Reliability

  • SQLite webhook delivery (better-sqlite3, WAL mode) — persists across restarts

- Exponential backoff: 0s → 1s → 2s → 4s → 8s (max 5 attempts) - Circuit breaker: ≥3 failures from last 5 → opens circuit; auto-resets after 60s - Manual retry + circuit reset from dashboard

  • Pino structured logging — JSON in prod, pretty-print in dev
  • 51 Jest tests — run npm test
  • Update banner — notified in dashboard when a new version is available

Security (Production-Hardened)

  • CSRF protection — token middleware + HttpOnly cookie
  • Rate limiting — 100 req/min general, 10 req/min on credential routes
  • DOMPurify + sanitizeInput() + sanitizeId() — all surfaces
  • SSRF protection via validateWebhookUrl() — blocks private IPs, localhost, cloud metadata
  • Current posture: 0 CRITICAL · 0 HIGH

mc CLI

Agents manage tasks from the terminal:

mc check                             # My pending tasks
mc tasks --status IN_PROGRESS        # Filter by status
mc task:status task-123 DONE         # Update status
mc task:comment task-123 "Done ✓"   # Add comment
mc task:create --title "Fix auth"    # Create task
mc deliver task-123 "Report" --path ./report.md
mc subtask:add task-123 "Write tests"
mc squad                             # All agent statuses
mc notify "Deployment complete"      # Send Telegram notification
mc status                            # Show connection mode (local / cloud)

Data Storage

All data lives in .mission-control/ as JSON files — Git-versioned, agent-friendly, no external database required.

.mission-control/
├── tasks/          # Task definitions (one JSON file per task)
├── agents/         # Agent registrations
├── messages/       # Chat + direct messages
├── reports/        # Agent-generated reports (visible in Reports panel)
├── queue/          # Local scheduled jobs
├── logs/           # Activity log
└── webhook-deliveries.db   # SQLite (gitignored)

Version History

VersionHighlights
2.0.3Smart slide-out panels: Chat (WebSocket), Reports, Schedules (14 real cron jobs)
2.0.2Dark mode default, modal fix, files API bug fix
2.0.0Matrix theme — neon green/cyan, glowing borders, terminal typography
1.19.0Gradient panel header redesign
1.18.0Collapsible sidebar: TEAM / SYSTEM / INTEGRATIONS
1.17.0Enhanced task cards (color borders, agent avatars, label chips)
1.16.0Dashboard feature widget cards
1.15.0Header aggregate metrics (Claude / CLI / GitHub / Webhooks)
1.14.0SQLite webhook delivery engine with circuit breaker
1.12.051-test Jest suite
1.9.0Pino structured logging
1.7.0Rate limiting
1.6.0CSRF protection
1.5.0Agent SOUL workspace sync
1.4.0GitHub Issues sync
1.3.0Direct CLI integration
1.2.0Claude Code session tracking
1.1.0Full security hardening (0 HIGH, 0 CRITICAL)

More by Asif2BD

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

License

Apache 2.0 — github.com/Asif2BD/JARVIS-Mission-Control-OpenClaw


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

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.56%
按下载量换算690

Claude

31.06%
按下载量换算586

Cursor

19.26%
按下载量换算363

Gemini CLI

8.83%
按下载量换算167

安全审计

Gen Agent Trust Hub

未通过

Socket

可疑

Snyk

可疑

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills