Slice 1 polish: archive dormant code, merge work-os into primitives, add futures

- Archive dormant apps (daemon, desktop, native, tui) and superseded
  packages/server into repos/ for reference
- Archive 21 dead web components (chat page shell, work-os cluster, strays)
  into repos/web/; keep reused message-rendering primitives in components/chat
- Merge @code/work-os into @code/primitives; work.ts absorbed via ./work
  subpath and barrel export; update all four importers
- Add docs/futures.md tracking audio/video (blocked at Flue + provider),
  web layout cleanup, and message rendering quality
- Repoint dev:zopu script to @code/agents (the live Flue server)
- Note repos/ reference-code convention in AGENTS.md
This commit is contained in:
-Puter
2026-07-27 16:34:17 +05:30
parent 302fd159df
commit cc47007fa9
101 changed files with 38 additions and 93 deletions

52
repos/native/package.json Normal file
View File

@@ -0,0 +1,52 @@
{
"name": "native",
"version": "1.0.0",
"private": true,
"main": "expo-router/entry",
"scripts": {
"start": "bun --env-file=../../.env expo start",
"dev": "bun --env-file=../../.env expo start --clear",
"android": "bun --env-file=../../.env expo run:android",
"ios": "bun --env-file=../../.env expo run:ios",
"prebuild": "bun --env-file=../../.env expo prebuild",
"web": "bun --env-file=../../.env expo start --web"
},
"dependencies": {
"@code/auth": "workspace:*",
"@code/backend": "workspace:*",
"@expo/metro-runtime": "~57.0.2",
"@expo/vector-icons": "^15.1.1",
"@gorhom/bottom-sheet": "^5.2.14",
"convex": "catalog:",
"expo": "~57.0.1",
"expo-font": "~57.0.0",
"expo-haptics": "~57.0.0",
"expo-linking": "~57.0.1",
"expo-network": "~57.0.0",
"expo-router": "~57.0.2",
"expo-status-bar": "~57.0.0",
"expo-web-browser": "~57.0.0",
"heroui-native": "catalog:",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-native": "0.86.0",
"react-native-gesture-handler": "~2.32.0",
"react-native-keyboard-controller": "1.21.9",
"react-native-reanimated": "4.5.0",
"react-native-safe-area-context": "~5.7.0",
"react-native-screens": "4.25.2",
"react-native-svg": "15.15.4",
"react-native-web": "~0.21.0",
"react-native-worklets": "0.10.0",
"tailwind-merge": "catalog:",
"tailwind-variants": "^3.2.2",
"tailwindcss": "catalog:",
"uniwind": "^1.10.0"
},
"devDependencies": {
"@code/config": "workspace:*",
"@types/node": "^26.0.1",
"@types/react": "~19.2.17",
"typescript": "~6.0.3"
}
}