Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计提醒

mission-control任务控制

Agent Skill

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

总安装

284,069

周安装

11,719

GitHub Stars

10

下载量

92,814
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install mission-control

简介

mission-control 用于查找、检索和筛选相关信息,适合在 OpenClaw 中根据关键词或任务场景快速定位候选结果。

  • 适用于看板式任务管理,支持 CLI 或仪表板 UI 操作,常用于任务创建、分配与跟踪场景。
  • 通过 clawhub 安装,使用 openclaw skills install mission-control 命令部署,需结合 README 确认具体用法。
  • 安装前应核实权限范围、维护状态,注意是否涉及联网、命令执行或文件读写等敏感操作。
  • 建议核对来源仓库与原始文档,确保功能描述与实际能力一致后再投入生产使用。

SKILL.md

name
mission-control
description
Kanban-style task management dashboard for AI assistants. Manage tasks via CLI or dashboard UI. Use when user mentions tasks, kanban, task board, mission control, or wants to track work items with status columns (backlog, in progress, review, done).
homepage
https://github.com/rdsthomas/mission-control
metadata
{"clawdbot": {"emoji": "🎛️"}}

Mission Control — Task Management for AI Assistants

A Kanban-style task board that you (the AI assistant) manage. Your human creates and prioritizes tasks via the web dashboard; you execute them automatically when they're moved to "In Progress".

🚀 Quick Start

Just say: *"Set up Mission Control for my workspace"*

The agent will:

  1. Check prerequisites (Tailscale, gh CLI)
  2. Copy dashboard files to your workspace
  3. Create the config file (~/.clawdbot/mission-control.json)
  4. Install the webhook transform
  5. Set up GitHub webhook
  6. Push to GitHub and enable Pages

That's it. The agent handles everything.


Prerequisites

Before setup, you need:

RequirementCheckInstall
Tailscaletailscale statusbrew install tailscale or tailscale.com/download
Tailscale Funneltailscale funnel statustailscale funnel 18789 (one-time)
GitHub CLIgh auth statusbrew install gh && gh auth login

If any are missing, tell the agent — it will guide you through installation.


How It Works

  1. Dashboard — Web UI hosted on GitHub Pages where humans manage tasks
  2. Webhook — GitHub sends push events to Clawdbot when tasks change
  3. Transform — Compares old vs new tasks.json, detects status changes
  4. Auto-Processing — When a task moves to "In Progress", the agent starts working

The Flow

Human moves task → GitHub push → Webhook → Transform → Agent receives work order
      ↓                                                         ↓
   Dashboard                                              Executes task
      ↓                                                         ↓
Agent updates status ← Commits changes ← Marks subtasks done ←─┘

Task Structure

Tasks live in <workspace>/data/tasks.json:

{
  "id": "task_001",
  "title": "Implement feature X",
  "description": "Detailed context for the agent",
  "status": "backlog",
  "subtasks": [
    { "id": "sub_001", "title": "Research approach", "done": false },
    { "id": "sub_002", "title": "Write code", "done": false }
  ],
  "priority": "high",
  "dod": "Definition of Done - what success looks like",
  "comments": []
}

Status Values

StatusMeaning
permanentRecurring tasks (daily checks, etc.)
backlogWaiting to be worked on
in_progressAgent is working on this
reviewDone, awaiting human approval
doneCompleted and approved

CLI Commands

Use <skill>/scripts/mc-update.sh for task updates:

# Status changes
mc-update.sh status <task_id> review
mc-update.sh status <task_id> done

# Comments
mc-update.sh comment <task_id> "Progress update..."

# Subtasks
mc-update.sh subtask <task_id> sub_1 done

# Complete (moves to review + adds summary)
mc-update.sh complete <task_id> "Summary of what was done"

# Push to GitHub
mc-update.sh push "Commit message"

Agent Workflow

When you receive a task (moved to "In Progress"):

  1. Read — Check title, description, subtasks, dod
  2. Mark startedmc-update.sh start <task_id>
  3. Execute — Work through subtasks, mark each done
  4. Document — Add progress comments
  5. Completemc-update.sh complete <task_id> "Summary"

Handling Rework

If a completed task is moved back to "In Progress" with a new comment:

  1. Read the feedback comment
  2. Address the issues
  3. Add a comment explaining your changes
  4. Move back to Review

EPICs

EPICs are parent tasks with multiple child tickets. When you receive an EPIC:

  1. Child tickets are listed in the subtasks (format: MC-XXX-001: Title)
  2. Work through them sequentially (1 → 2 → 3...)
  3. After each child: comment result, set to "review", mark EPIC subtask done
  4. After last child: set EPIC to "review"

Heartbeat Integration

Add to your HEARTBEAT.md:

## Task Check

1. Check `data/tasks.json` for tasks in "in_progress"
2. Flag tasks with `processingStartedAt` but no recent activity
3. Check "review" tasks for new feedback comments

Configuration

Config lives in ~/.clawdbot/mission-control.json. See assets/examples/CONFIG-REFERENCE.md for all options.

Minimal config (set by agent during setup):

{
  "gateway": { "hookToken": "your-token" },
  "workspace": { "path": "/path/to/workspace" },
  "slack": { "botToken": "xoxb-...", "channel": "C0123456789" }
}

Troubleshooting

See docs/TROUBLESHOOTING.md for common issues:

  • Dashboard shows sample data → Connect GitHub token
  • Webhook not triggering → Check Tailscale Funnel
  • Changes not appearing → GitHub Pages cache (wait 1-2 min)

Security

Mission Control is a task management system for AI agents — its core purpose is to pass human-authored task descriptions to an agent for execution. This is by design, not a vulnerability.

Trust Model

  • Single-user / trusted-user setup: Task authors are the same people who control the agent. The trust boundary is identical to typing a message directly to your assistant.
  • Multi-user setups: If multiple users can create tasks on the dashboard, treat task content as untrusted input. Use Clawdbot's agent sandbox and permission model to limit what the agent can do.

Mitigations

  • Input sanitization: mc-update.sh validates all inputs against injection patterns before passing them to Python or git.
  • No credential storage: The dashboard stores no tokens or secrets — all auth is handled by Clawdbot's config.
  • Webhook HMAC verification: The transform module validates webhook signatures using timingSafeEqual to prevent tampering.
  • Security scan on sync: The sync-to-opensource.sh script scans for leaked credentials before publishing.

Recommendations

  • Keep your dashboard repository private if you don't want others to see your task data.
  • Review task descriptions before moving them to "In Progress" if the task was created by someone else.
  • Use Clawdbot's groupPolicy and allowFrom settings to restrict who can interact with the agent.

Files

FilePurpose
<workspace>/index.htmlDashboard UI
<workspace>/data/tasks.jsonTask data
<skill>/scripts/mc-update.shCLI tool
~/.clawdbot/mission-control.jsonConfig
~/.clawdbot/hooks-transforms/github-mission-control.mjsWebhook transform

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

OpenClaw

91.92%
按下载量换算85,315

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

未展示

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills