mirror of
https://github.com/samvallad33/vestige.git
synced 2026-04-25 00:36:22 +02:00
The biggest release in Vestige history. Complete visual and cognitive overhaul. Dashboard: - SvelteKit 2 + Three.js 3D neural visualization at localhost:3927/dashboard - 7 interactive pages: Graph, Memories, Timeline, Feed, Explore, Intentions, Stats - WebSocket event bus with 16 event types, real-time 3D animations - Bloom post-processing, GPU instanced rendering, force-directed layout - Dream visualization mode, FSRS retention curves, command palette (Cmd+K) - Keyboard shortcuts, responsive mobile layout, PWA installable - Single binary deployment via include_dir! (22MB) Engine: - HyDE query expansion (intent classification + 3-5 semantic variants + centroid) - fastembed 5.11 with optional Nomic v2 MoE + Qwen3 reranker + Metal GPU - Emotional memory module (#29) - Criterion benchmark suite Backend: - Axum WebSocket at /ws with heartbeat + event broadcast - 7 new REST endpoints for cognitive operations - Event emission from MCP tools via shared broadcast channel - CORS for SvelteKit dev mode Distribution: - GitHub issue templates (bug report, feature request) - CHANGELOG with comprehensive v2.0 release notes - README updated with dashboard docs, architecture diagram, comparison table 734 tests passing, zero warnings, 22MB release binary. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
46 lines
No EOL
1.2 KiB
JavaScript
46 lines
No EOL
1.2 KiB
JavaScript
export { matchers } from './matchers.js';
|
|
|
|
export const nodes = [
|
|
() => import('./nodes/0'),
|
|
() => import('./nodes/1'),
|
|
() => import('./nodes/2'),
|
|
() => import('./nodes/3'),
|
|
() => import('./nodes/4'),
|
|
() => import('./nodes/5'),
|
|
() => import('./nodes/6'),
|
|
() => import('./nodes/7'),
|
|
() => import('./nodes/8'),
|
|
() => import('./nodes/9'),
|
|
() => import('./nodes/10'),
|
|
() => import('./nodes/11')
|
|
];
|
|
|
|
export const server_loads = [];
|
|
|
|
export const dictionary = {
|
|
"/": [3],
|
|
"/(app)/explore": [4,[2]],
|
|
"/(app)/feed": [5,[2]],
|
|
"/(app)/graph": [6,[2]],
|
|
"/(app)/intentions": [7,[2]],
|
|
"/(app)/memories": [8,[2]],
|
|
"/(app)/settings": [9,[2]],
|
|
"/(app)/stats": [10,[2]],
|
|
"/(app)/timeline": [11,[2]]
|
|
};
|
|
|
|
export const hooks = {
|
|
handleError: (({ error }) => { console.error(error) }),
|
|
|
|
reroute: (() => {}),
|
|
transport: {}
|
|
};
|
|
|
|
export const decoders = Object.fromEntries(Object.entries(hooks.transport).map(([k, v]) => [k, v.decode]));
|
|
export const encoders = Object.fromEntries(Object.entries(hooks.transport).map(([k, v]) => [k, v.encode]));
|
|
|
|
export const hash = false;
|
|
|
|
export const decode = (type, value) => decoders[type](value);
|
|
|
|
export { default as root } from '../root.js'; |