Agent Skills
› EverClaw/EverClaw
› mission-control
mission-control
GitHub提供OpenClaw代理的可视化仪表盘,展示目标、活动日志、记忆事实及项目状态。通过纯HTML+JSON实现,支持每日自动刷新,无需外部依赖或服务器。
Trigger Scenarios
需要查看代理的工作状态汇总
查看近期活动与关键事实
监控个人目标进展
Install
npx skills add EverClaw/EverClaw --skill mission-control -g -y
SKILL.md
Frontmatter
{
"name": "mission-control",
"version": "1.0.0",
"description": "Visual dashboard for your OpenClaw agent. Shows life goals, activity feed, key facts from memory, and project status. Auto-refreshes via daily cron job. No external dependencies — pure HTML + JSON data file.\n"
}
Mission Control Dashboard
A visual overview of your agent's world — goals, activity, projects, and key facts.
Setup
1. Copy files to workspace
cp -r skills/everclaw/mission-control/ ~/.openclaw/workspace/mission-control/
2. Edit configuration
In generate-data.mjs, update the CONFIG object:
const CONFIG = {
ownerName: "Your Name",
timezone: "America/Chicago",
// Goals are auto-discovered from memory/goals/*.md
};
3. Generate initial data
cd ~/.openclaw/workspace && node mission-control/generate-data.mjs
4. View dashboard
Open mission-control/index.html in any browser. Data is embedded directly — no server needed.
5. Set up daily refresh cron
Name: Dashboard Refresh
Schedule: 0 3 * * * (your timezone)
Model: your-light-model
Session: isolated
Timeout: 120s
Message: >
Run the Mission Control dashboard data generator to refresh the dashboard.
Execute: cd ~/.openclaw/workspace && node mission-control/generate-data.mjs
Report the output. If it fails, report the error.
How It Works
generate-data.mjsscans your workspace: goals, memory files, MEMORY.md- Produces
dashboard-data.jsonwith structured data - Embeds the data directly into
index.html(works fromfile://protocol) - Dashboard renders goals, activity timeline, key facts, and stats
- No external API calls, no server, no dependencies
Customization
- Edit
index.htmlCSS for colors/layout - Goal files in
memory/goals/are auto-discovered — just add new.mdfiles - Activity feed reads from
memory/daily/andmemory/YYYY-MM-DD*.md
Version History
- f580bc4 Current 2026-07-25 11:17


