mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-11 02:33:51 +08:00
feat: Implement core memory management with knowledge graph and evolution tracking
- Added core-memory.js and core-memory-graph.js for managing core memory views and visualizations. - Introduced functions for viewing knowledge graphs and evolution history of memories. - Implemented modal dialogs for creating, editing, and viewing memory details. - Developed core-memory.ts for backend operations including list, import, export, and summary generation. - Integrated Zod for parameter validation in core memory operations. - Enhanced UI with dynamic rendering of memory cards and detailed views.
This commit is contained in:
@@ -424,6 +424,10 @@
|
||||
<i data-lucide="database" class="nav-icon"></i>
|
||||
<span class="nav-text flex-1" data-i18n="nav.contextMemory">Context</span>
|
||||
</li>
|
||||
<li class="nav-item flex items-center gap-2 mx-2 px-3 py-2.5 text-sm text-muted-foreground hover:bg-hover hover:text-foreground rounded cursor-pointer transition-colors" data-view="core-memory" data-tooltip="Core Memory">
|
||||
<i data-lucide="brain" class="nav-icon"></i>
|
||||
<span class="nav-text flex-1" data-i18n="nav.coreMemory">Core Memory</span>
|
||||
</li>
|
||||
<li class="nav-item flex items-center gap-2 mx-2 px-3 py-2.5 text-sm text-muted-foreground hover:bg-hover hover:text-foreground rounded cursor-pointer transition-colors" data-view="prompt-history" data-tooltip="Prompt History">
|
||||
<i data-lucide="message-square" class="nav-icon"></i>
|
||||
<span class="nav-text flex-1" data-i18n="nav.promptHistory">Prompts</span>
|
||||
@@ -537,11 +541,6 @@
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Storage Manager Card (only visible in CLI Manager view) -->
|
||||
<section id="storageCard" class="mb-6" style="display: none;">
|
||||
<!-- Rendered by storage-manager.js -->
|
||||
</section>
|
||||
|
||||
<!-- Main Content Container -->
|
||||
<section class="main-content" id="mainContent">
|
||||
<!-- Dynamic content: sessions grid or session detail page -->
|
||||
|
||||
Reference in New Issue
Block a user