feat(wisekeep): migrate from archive to local-first + Hono architecture

- Move from apps-archived/ to apps/
- Delete NestJS backend, mobile app, legacy Python, shared-types
- Create Hono/Bun server with Groq Whisper transcription via yt-dlp
- Create local-first store (transcripts, playlists) with guest seed
- Rewrite web app: Transcribe page, Library with search/expand,
  Playlists CRUD, auth via shared-auth-ui, AuthGate with guest mode
- Remove broken landing page subpages (Prettier-incompatible Astro)
- Add wisekeep to root CLAUDE.md and dev scripts
- Fix duplicate wisekeep entries in shared-branding
- 0 type errors on both server and web

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Till JS 2026-03-29 20:03:55 +02:00
parent f06c98709a
commit d7b4042164
151 changed files with 1490 additions and 11980 deletions

View file

@ -112,6 +112,11 @@
"dev:uload:landing": "pnpm --filter @uload/landing dev",
"dev:uload:local": "concurrently -n sync,server,web -c magenta,yellow,cyan \"pnpm dev:sync\" \"pnpm dev:uload:server\" \"pnpm dev:uload:web\"",
"dev:uload:full": "./scripts/setup-databases.sh uload && ./scripts/setup-databases.sh auth && concurrently -n auth,sync,server,web -c blue,magenta,yellow,cyan \"pnpm dev:auth\" \"pnpm dev:sync\" \"pnpm dev:uload:server\" \"pnpm dev:uload:web\"",
"dev:wisekeep:web": "pnpm --filter @wisekeep/web dev",
"dev:wisekeep:server": "cd apps/wisekeep/apps/server && bun run --watch src/index.ts",
"dev:wisekeep:landing": "pnpm --filter @wisekeep/landing dev",
"dev:wisekeep:local": "concurrently -n sync,server,web -c magenta,yellow,cyan \"pnpm dev:sync\" \"pnpm dev:wisekeep:server\" \"pnpm dev:wisekeep:web\"",
"dev:wisekeep:full": "./scripts/setup-databases.sh auth && concurrently -n auth,sync,server,web -c blue,magenta,yellow,cyan \"pnpm dev:auth\" \"pnpm dev:sync\" \"pnpm dev:wisekeep:server\" \"pnpm dev:wisekeep:web\"",
"dev:news:web": "pnpm --filter @news/web dev",
"dev:news:server": "cd apps/news/apps/server && bun run --watch src/index.ts",
"dev:news:landing": "pnpm --filter @news/landing dev",