Add LICENSE, README, and Docs tab to Mission Control

This commit is contained in:
root
2026-02-22 07:33:18 +00:00
parent 3e7b457d5f
commit 0817444dc5
68 changed files with 6677 additions and 1673 deletions
+15
View File
@@ -109,6 +109,21 @@ export function MorningBriefProvider({ children }: { children: ReactNode }) {
"Crypto Treasury Meeting (2:00 PM ET)",
],
},
// Load OpenClaw use cases from memory/cron
openclowUseCases: (() => {
try {
const oc = localStorage.getItem("sitemente:openclaw-usecases");
if (oc) return JSON.parse(oc);
} catch (e) {}
return {
topUseCases: ["PR Review Automation", "Browser Shopping", "Wine Cellar CSV"],
skillIdeas: [
{ name: "Auto-Shop", selected: false },
{ name: "Wine Cellar", selected: false },
{ name: "Health Dashboard", selected: false }
],
};
})(),
};
setBriefs((prev) => {