mirror of
https://github.com/Egonex-AI/Understand-Anything.git
synced 2026-06-22 10:58:03 +08:00
343e94c9a7
- Remove ChatPanel and @anthropic-ai/sdk dependency (redundant with /understand-chat) - Replace Monaco editor with styled summary code viewer - New graph-first layout: 75% graph + 360px right sidebar - Dark luxury aesthetic: deep blacks, gold/amber accents, DM Serif Display typography - Add ProjectOverview component for sidebar default state - Learn persona now shows tour panel directly in sidebar - Add schema validation on graph load with error banner - Defensive null checks in store for tour methods - Agent pipeline: write intermediate results to disk instead of context - Agent models: sonnet for simple tasks, opus for complex (no haiku) - Prompt-engineer all 5 agent prompts and SKILL.md - Auto-trigger /understand-dashboard after /understand completes - Add dashboard screenshot to README - Bump version to 1.0.1 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
19 lines
640 B
HTML
19 lines
640 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Understand Anything</title>
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
<link
|
|
href="https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Inter:wght@300;400;500;600&family=JetBrains+Mono:wght@400;500&display=swap"
|
|
rel="stylesheet"
|
|
/>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|