- Scaffold Vite + React + TypeScript frontend - Add Tauri v2 backend with Rust - Implement list_vault command: recursively scans .md files, parses YAML frontmatter (Is A, aliases, Belongs to, Related to, Status, Owner, Cadence), extracts title from H1 or filename - 10 passing Rust tests for frontmatter parsing and vault scanning - Configure Vitest and Playwright (test infrastructure) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
14 lines
364 B
HTML
14 lines
364 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>laputa-scaffold</title>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|