mission-control/SKILL.md
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.
npx skillsauth add profbernardoj/glmclaw.com mission-controlInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
A visual overview of your agent's world — goals, activity, projects, and key facts.
cp -r skills/everclaw/mission-control/ ~/.openclaw/workspace/mission-control/
In generate-data.mjs, update the CONFIG object:
const CONFIG = {
ownerName: "Your Name",
timezone: "America/Chicago",
// Goals are auto-discovered from memory/goals/*.md
};
cd ~/.openclaw/workspace && node mission-control/generate-data.mjs
Open mission-control/index.html in any browser. Data is embedded directly — no server needed.
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.
generate-data.mjs scans your workspace: goals, memory files, MEMORY.mddashboard-data.json with structured dataindex.html (works from file:// protocol)index.html CSS for colors/layoutmemory/goals/ are auto-discovered — just add new .md filesmemory/daily/ and memory/YYYY-MM-DD*.mdtools
Cyclic shift execution engine. Plans tasks 3x daily (6 AM, 2 PM, 10 PM), decomposes them into granular steps, then executes via 15-minute cron cycles. Each cycle reads state files, picks the next step, executes it, writes results back. Errors are logged and skipped — never fatal. Planning uses Claude 4.6; execution uses GLM-5.
tools
Security middleware for all XMTP communications in EverClaw. Enforces guarded client usage with validation, integrity checks, and fail-closed security policies. Integrates approval flows for sensitive operations. Use when integrating XMTP messaging, configuring communication security, or auditing guarded client enforcement.
data-ai
Daily standup engine. Plans tasks 3x daily (6 AM, 2 PM, 10 PM) and delivers them for approval. Execution happens in the main session via direct conversation. Night shifts auto-approve carryover from earlier in the day.
tools
A helpful utility skill for agents