Agent Skills
› EverClaw/EverClaw
› mission-control
mission-control
GitHub为OpenClaw代理提供可视化仪表盘,展示人生目标、活动动态、记忆关键信息及项目状态。通过每日定时任务自动刷新数据,无需外部依赖和服务器,纯前端HTML实现。
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


