feat: add subagent profiles, memory namespaces, and webui management

This commit is contained in:
lpf
2026-03-05 21:05:29 +08:00
parent 1eacfaba41
commit 29d6480058
22 changed files with 2051 additions and 49 deletions

View File

@@ -15,6 +15,7 @@ import TaskAudit from './pages/TaskAudit';
import EKG from './pages/EKG';
import Tasks from './pages/Tasks';
import LogCodes from './pages/LogCodes';
import SubagentProfiles from './pages/SubagentProfiles';
export default function App() {
return (
@@ -35,6 +36,7 @@ export default function App() {
<Route path="task-audit" element={<TaskAudit />} />
<Route path="ekg" element={<EKG />} />
<Route path="tasks" element={<Tasks />} />
<Route path="subagent-profiles" element={<SubagentProfiles />} />
</Route>
</Routes>
</BrowserRouter>