feat(memory-v2): close Phase A with auto-review, product events, and H5 recall UI.

Add candidate auto-review pipeline, shadow audit tooling, admin metrics page,
and user-visible memory recall hints in chat with phase-a readiness checks.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
john
2026-08-01 17:14:06 +08:00
parent 666db0b939
commit 6f3e53a56a
50 changed files with 3730 additions and 38 deletions
+2
View File
@@ -17,6 +17,7 @@ import { SystemPolicyPage } from './pages/admin/SystemPolicyPage';
import { OrchestratorPage } from './pages/admin/OrchestratorPage';
import { LlmProvidersPage } from './pages/admin/LlmProvidersPage';
import { GoalRunPage } from './pages/admin/GoalRunPage';
import { MemoryV2Page } from './pages/admin/MemoryV2Page';
export function App() {
return (
@@ -54,6 +55,7 @@ export function App() {
<Route path="orchestrator" element={<OrchestratorPage />} />
<Route path="llm" element={<LlmProvidersPage />} />
<Route path="goal-runs" element={<GoalRunPage />} />
<Route path="memory-v2" element={<MemoryV2Page />} />
<Route path="*" element={<Navigate to="/admin" replace />} />
</Route>