Update agents, dashboard, kb +2 more (+6 ~11)

This commit is contained in:
Echo
2026-01-31 22:05:53 +00:00
parent 6555ea28ee
commit d2d9016da5
17 changed files with 900 additions and 187 deletions

View File

@@ -3,6 +3,7 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/svg+xml" href="favicon.svg">
<title>Echo · KB</title>
<link rel="stylesheet" href="common.css">
<script src="https://unpkg.com/lucide@latest/dist/umd/lucide.min.js"></script>
@@ -1203,7 +1204,7 @@
try {
let content = notesCache[file];
if (!content) {
const response = await fetch(file);
const response = await fetch(file + '?t=' + Date.now());
content = await response.text();
notesCache[file] = content;
}
@@ -1222,7 +1223,7 @@
async function preloadNotes() {
for (const note of notesIndex) {
try {
const response = await fetch(note.file);
const response = await fetch(note.file + '?t=' + Date.now());
notesCache[note.file] = await response.text();
} catch (e) {
notesCache[note.file] = '';