feat(openclaw): extend workspace files with HEARTBEAT/BOOTSTRAP/BOOT

Add 3 new markdown files to the workspace whitelist and frontend grid:
- HEARTBEAT.md: activity runlist
- BOOTSTRAP.md: first-run ritual
- BOOT.md: gateway restart checklist

Update i18n for all 3 locales (zh, en, ja).
This commit is contained in:
Jason
2026-02-07 23:52:25 +08:00
parent a61892e46a
commit 9035784aa4
5 changed files with 180 additions and 12 deletions
@@ -7,6 +7,9 @@ import {
IdCard,
Wrench,
Brain,
Activity,
Rocket,
Power,
CheckCircle2,
Circle,
} from "lucide-react";
@@ -31,6 +34,17 @@ const WORKSPACE_FILES: WorkspaceFile[] = [
},
{ filename: "TOOLS.md", icon: Wrench, descKey: "workspace.files.tools" },
{ filename: "MEMORY.md", icon: Brain, descKey: "workspace.files.memory" },
{
filename: "HEARTBEAT.md",
icon: Activity,
descKey: "workspace.files.heartbeat",
},
{
filename: "BOOTSTRAP.md",
icon: Rocket,
descKey: "workspace.files.bootstrap",
},
{ filename: "BOOT.md", icon: Power, descKey: "workspace.files.boot" },
];
const WorkspaceFilesPanel: React.FC = () => {