vibefast-cli 0.2.4 โ 0.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/2/.claude/agents/architect.md +74 -0
- package/2/.claude/agents/convex-reviewer.md +267 -0
- package/2/.claude/agents/debug-detective.md +62 -0
- package/2/.claude/agents/learner.md +64 -0
- package/2/.claude/agents/perf-optimizer.md +71 -0
- package/2/.claude/agents/security-researcher.md +42 -0
- package/2/.claude/agents/tech-researcher.md +46 -0
- package/2/.claude/agents/ux-designer.md +45 -0
- package/2/.claude/commands/create-app-design.md +279 -0
- package/2/.claude/commands/create-prd-interactive.md +113 -0
- package/2/.claude/commands/create-prd.md +111 -0
- package/2/.claude/commands/create-tech-stack.md +345 -0
- package/2/.claude/commands/update-app-design.md +298 -0
- package/2/.claude/commands/update-project-structure.md +14 -0
- package/2/.claude/commands/update-tech-stack.md +325 -0
- package/2/.claude/docs/CONVEX_FEATURES_PLAN.md +249 -0
- package/2/.claude/docs/app-design-document.md +0 -0
- package/2/.claude/docs/project-status.md +25 -0
- package/2/.claude/docs/project-structure.md +7 -0
- package/2/.claude/docs/tech-stack.md +157 -0
- package/2/.claude/scripts/tree.sh +70 -0
- package/2/.claude/settings.json +30 -0
- package/2/.cursor/commands/code-review-high.md +190 -0
- package/2/.cursorignore +3 -0
- package/2/.github/ISSUE_TEMPLATE.md +13 -0
- package/2/.github/PULL_REQUEST_TEMPLATE.md +23 -0
- package/2/.github/actions/eas-build/action.yml +85 -0
- package/2/.github/actions/setup-jdk-generate-apk/action.yml +48 -0
- package/2/.github/actions/setup-node-pnpm-install/action.yml +29 -0
- package/2/.github/scripts/expo-doctor.sh +26 -0
- package/2/.github/workflows/compress-images.yml +48 -0
- package/2/.github/workflows/e2e-android-eas-build.yml +111 -0
- package/2/.github/workflows/e2e-android-maestro.yml +52 -0
- package/2/.github/workflows/e2e-android.yml +119 -0
- package/2/.github/workflows/eas-build-prod.yml +43 -0
- package/2/.github/workflows/eas-build-qa.yml +47 -0
- package/2/.github/workflows/expo-doctor.yml +61 -0
- package/2/.github/workflows/lint-ts.yml +49 -0
- package/2/.github/workflows/new-app-version.yml +65 -0
- package/2/.github/workflows/new-github-release.yml +34 -0
- package/2/.github/workflows/stale.yml +24 -0
- package/2/.github/workflows/test.yml +50 -0
- package/2/.github/workflows/type-check.yml +54 -0
- package/2/.husky/commit-msg +1 -0
- package/2/.husky/common.sh +8 -0
- package/2/.husky/post-merge +18 -0
- package/2/.husky/pre-commit +24 -0
- package/2/.prettierignore +14 -0
- package/2/.prettierrc.json +10 -0
- package/2/.vibefast/README.md +59 -0
- package/2/.vibefast/config.json +4 -0
- package/2/.vibefast/journal.json +234 -0
- package/2/.vibefast/starter.json +5 -0
- package/2/AGENTS.md +48 -0
- package/2/LICENSE +21 -0
- package/2/README.md +127 -0
- package/2/apps/native/__mocks__/bottom-sheet.js +6 -0
- package/2/apps/native/__mocks__/expo-router.js +16 -0
- package/2/apps/native/__mocks__/react-native-gesture-handler.ts +17 -0
- package/2/apps/native/app-env.d.ts +2 -0
- package/2/apps/native/app.config.ts +167 -0
- package/2/apps/native/assets/adaptive-icon.png +0 -0
- package/2/apps/native/assets/favicon.png +0 -0
- package/2/apps/native/assets/features/image-analyzer/front.jpg +0 -0
- package/2/apps/native/assets/features/image-analyzer/side.jpg +0 -0
- package/2/apps/native/assets/features/image-analyzer/threeQuarter.jpg +0 -0
- package/2/apps/native/assets/fonts/Inter.ttf +0 -0
- package/2/apps/native/assets/fonts/SF-Pro-Display-Bold.otf +0 -0
- package/2/apps/native/assets/fonts/SF-Pro-Display-Medium.otf +0 -0
- package/2/apps/native/assets/fonts/SF-Pro-Display-Regular.otf +0 -0
- package/2/apps/native/assets/fonts/SF-Pro-Display-Semibold.otf +0 -0
- package/2/apps/native/assets/fonts/SpaceMono-Regular.ttf +0 -0
- package/2/apps/native/assets/icon.png +0 -0
- package/2/apps/native/assets/images/cover-image.png +0 -0
- package/2/apps/native/assets/lottie-animations/onboarding-1.json +6504 -0
- package/2/apps/native/assets/lottie-animations/onboarding-2.json +1993 -0
- package/2/apps/native/assets/lottie-animations/onboarding-3.json +50159 -0
- package/2/apps/native/assets/lottie-animations/onboarding-4.json +735 -0
- package/2/apps/native/assets/lottie-animations/onboarding-6.json +2167 -0
- package/2/apps/native/assets/splash-icon.png +0 -0
- package/2/apps/native/babel.config.js +39 -0
- package/2/apps/native/eas.json +75 -0
- package/2/apps/native/env.js +196 -0
- package/2/apps/native/global.css +51 -0
- package/2/apps/native/index.ts +5 -0
- package/2/apps/native/jest-setup.ts +7 -0
- package/2/apps/native/jest.config.js +72 -0
- package/2/apps/native/metro.config.js +85 -0
- package/2/apps/native/nativewind-env.d.ts +1 -0
- package/2/apps/native/package.json +232 -0
- package/2/apps/native/scripts/DRY_RUN_REPORT.md +0 -0
- package/2/apps/native/scripts/QUICK_START.md +76 -0
- package/2/apps/native/scripts/README.md +187 -0
- package/2/apps/native/scripts/convex-setup.js +48 -0
- package/2/apps/native/scripts/download-vosk-model.mjs +121 -0
- package/2/apps/native/scripts/genrate-apk-and-install +39 -0
- package/2/apps/native/scripts/i18next-syntax-validation.js +23 -0
- package/2/apps/native/scripts/starter-setup.mjs +246 -0
- package/2/apps/native/src/api-client/auth.ts +68 -0
- package/2/apps/native/src/api-client/chatbot.ts +83 -0
- package/2/apps/native/src/api-client/client.ts +4 -0
- package/2/apps/native/src/api-client/image-analyzer.ts +62 -0
- package/2/apps/native/src/api-client/image-generator.ts +34 -0
- package/2/apps/native/src/api-client/index.ts +27 -0
- package/2/apps/native/src/api-client/payments.ts +44 -0
- package/2/apps/native/src/api-client/reporting.ts +29 -0
- package/2/apps/native/src/api-client/shared.ts +43 -0
- package/2/apps/native/src/app/(root)/(protected)/(tabs)/_layout.tsx +166 -0
- package/2/apps/native/src/app/(root)/(protected)/(tabs)/index.tsx +174 -0
- package/2/apps/native/src/app/(root)/(protected)/(tabs)/profile.tsx +320 -0
- package/2/apps/native/src/app/(root)/(protected)/(tabs)/settings.tsx +344 -0
- package/2/apps/native/src/app/(root)/(protected)/(tabs)/style/_layout.tsx +198 -0
- package/2/apps/native/src/app/(root)/(protected)/(tabs)/style/accordion.tsx +60 -0
- package/2/apps/native/src/app/(root)/(protected)/(tabs)/style/advanced.tsx +24 -0
- package/2/apps/native/src/app/(root)/(protected)/(tabs)/style/avatar.tsx +154 -0
- package/2/apps/native/src/app/(root)/(protected)/(tabs)/style/badge-chips-toggle.tsx +81 -0
- package/2/apps/native/src/app/(root)/(protected)/(tabs)/style/buttons.tsx +24 -0
- package/2/apps/native/src/app/(root)/(protected)/(tabs)/style/charts.tsx +3 -0
- package/2/apps/native/src/app/(root)/(protected)/(tabs)/style/date-picker.tsx +120 -0
- package/2/apps/native/src/app/(root)/(protected)/(tabs)/style/file-picker.tsx +133 -0
- package/2/apps/native/src/app/(root)/(protected)/(tabs)/style/gallery-video.tsx +119 -0
- package/2/apps/native/src/app/(root)/(protected)/(tabs)/style/index.tsx +69 -0
- package/2/apps/native/src/app/(root)/(protected)/(tabs)/style/inputs-stepper.tsx +78 -0
- package/2/apps/native/src/app/(root)/(protected)/(tabs)/style/picker-dropdown.tsx +56 -0
- package/2/apps/native/src/app/(root)/(protected)/(tabs)/style/popover-bottomsheet.tsx +229 -0
- package/2/apps/native/src/app/(root)/(protected)/(tabs)/style/progress.tsx +38 -0
- package/2/apps/native/src/app/(root)/(protected)/(tabs)/style/searchbar.tsx +70 -0
- package/2/apps/native/src/app/(root)/(protected)/(tabs)/style/sliders.tsx +93 -0
- package/2/apps/native/src/app/(root)/(protected)/(tabs)/style/spinner.tsx +80 -0
- package/2/apps/native/src/app/(root)/(protected)/(tabs)/style/switch.tsx +47 -0
- package/2/apps/native/src/app/(root)/(protected)/(tabs)/style/table.tsx +352 -0
- package/2/apps/native/src/app/(root)/(protected)/(tabs)/style/tabs-timeline.tsx +122 -0
- package/2/apps/native/src/app/(root)/(protected)/_layout.tsx +143 -0
- package/2/apps/native/src/app/(root)/(protected)/analysis/[type]/_layout.tsx +5 -0
- package/2/apps/native/src/app/(root)/(protected)/analysis/[type]/analysis-options.tsx +50 -0
- package/2/apps/native/src/app/(root)/(protected)/analysis/[type]/camera.tsx +2 -0
- package/2/apps/native/src/app/(root)/(protected)/analysis/[type]/index.tsx +50 -0
- package/2/apps/native/src/app/(root)/(protected)/analysis/[type]/loading.tsx +50 -0
- package/2/apps/native/src/app/(root)/(protected)/analysis/[type]/results.tsx +2 -0
- package/2/apps/native/src/app/(root)/(protected)/analysis/[type]/trait-details.tsx +3 -0
- package/2/apps/native/src/app/(root)/(protected)/audio-recorder/index.tsx +5 -0
- package/2/apps/native/src/app/(root)/(protected)/charts/index.tsx +6 -0
- package/2/apps/native/src/app/(root)/(protected)/chatbot/index.tsx +2 -0
- package/2/apps/native/src/app/(root)/(protected)/image-generator/gallery.tsx +3 -0
- package/2/apps/native/src/app/(root)/(protected)/image-generator/index.tsx +3 -0
- package/2/apps/native/src/app/(root)/(protected)/paywall/index.tsx +74 -0
- package/2/apps/native/src/app/(root)/(protected)/paywall/local.tsx +25 -0
- package/2/apps/native/src/app/(root)/(protected)/paywall/remote.tsx +23 -0
- package/2/apps/native/src/app/(root)/(protected)/quick-actions-demo/index.tsx +32 -0
- package/2/apps/native/src/app/(root)/(protected)/quiz/index.tsx +47 -0
- package/2/apps/native/src/app/(root)/(protected)/test-wake-word.tsx +214 -0
- package/2/apps/native/src/app/(root)/(protected)/tracker-app/index.tsx +1 -0
- package/2/apps/native/src/app/(root)/(protected)/voice-bot/index.tsx +27 -0
- package/2/apps/native/src/app/(root)/(public)/(auth)/_layout.tsx +44 -0
- package/2/apps/native/src/app/(root)/(public)/(auth)/forgot-password.tsx +185 -0
- package/2/apps/native/src/app/(root)/(public)/(auth)/login.tsx +219 -0
- package/2/apps/native/src/app/(root)/(public)/(auth)/otp-verification.tsx +369 -0
- package/2/apps/native/src/app/(root)/(public)/(auth)/reset-password.tsx +247 -0
- package/2/apps/native/src/app/(root)/(public)/(auth)/signup.tsx +207 -0
- package/2/apps/native/src/app/(root)/(public)/_layout.tsx +60 -0
- package/2/apps/native/src/app/(root)/(public)/onboarding/demo-one.tsx +5 -0
- package/2/apps/native/src/app/(root)/(public)/onboarding/demo-two.tsx +52 -0
- package/2/apps/native/src/app/(root)/(public)/onboarding/index.tsx +82 -0
- package/2/apps/native/src/app/(root)/_layout.tsx +30 -0
- package/2/apps/native/src/app/+html.tsx +46 -0
- package/2/apps/native/src/app/[...messing].tsx +24 -0
- package/2/apps/native/src/app/_layout.tsx +56 -0
- package/2/apps/native/src/app/tsconfig.json +3 -0
- package/2/apps/native/src/components/advanced-ui/buttons/demo.tsx +19 -0
- package/2/apps/native/src/components/advanced-ui/buttons/glowing-button.tsx +366 -0
- package/2/apps/native/src/components/advanced-ui/chip/animated-chip.tsx +118 -0
- package/2/apps/native/src/components/advanced-ui/chip/chip.tsx +49 -0
- package/2/apps/native/src/components/advanced-ui/chip/demo.tsx +191 -0
- package/2/apps/native/src/components/advanced-ui/chip/types.ts +21 -0
- package/2/apps/native/src/components/advanced-ui/progress-bars/animated-progress-bar.tsx +182 -0
- package/2/apps/native/src/components/advanced-ui/progress-bars/dropdown-picker-page.tsx +124 -0
- package/2/apps/native/src/components/advanced-ui/progress-bars/progress-circle-page.tsx +111 -0
- package/2/apps/native/src/components/advanced-ui/progress-bars/progress-circle.tsx +223 -0
- package/2/apps/native/src/components/advanced-ui/sliders/swipe-slider-page.tsx +203 -0
- package/2/apps/native/src/components/advanced-ui/sliders/swipe-slider.tsx +266 -0
- package/2/apps/native/src/components/advanced-ui/stepper/children/button/stepper-button.tsx +96 -0
- package/2/apps/native/src/components/advanced-ui/stepper/children/button/types.ts +16 -0
- package/2/apps/native/src/components/advanced-ui/stepper/children/content/stepper-content.tsx +19 -0
- package/2/apps/native/src/components/advanced-ui/stepper/children/content/types.ts +6 -0
- package/2/apps/native/src/components/advanced-ui/stepper/children/value/stepper-value.tsx +43 -0
- package/2/apps/native/src/components/advanced-ui/stepper/children/value/types.ts +25 -0
- package/2/apps/native/src/components/advanced-ui/stepper/context/stepper-context.ts +19 -0
- package/2/apps/native/src/components/advanced-ui/stepper/context/types.ts +9 -0
- package/2/apps/native/src/components/advanced-ui/stepper/demo.tsx +346 -0
- package/2/apps/native/src/components/advanced-ui/stepper/index.ts +4 -0
- package/2/apps/native/src/components/advanced-ui/stepper/stepper.tsx +96 -0
- package/2/apps/native/src/components/advanced-ui/stepper/types.ts +13 -0
- package/2/apps/native/src/components/advanced-ui/switch/animated-switch.tsx +312 -0
- package/2/apps/native/src/components/advanced-ui/switch/demo.tsx +851 -0
- package/2/apps/native/src/components/advanced-ui/switch/types.ts +32 -0
- package/2/apps/native/src/components/advanced-ui/timeline/demo.tsx +444 -0
- package/2/apps/native/src/components/advanced-ui/timeline/timeline-view.tsx +355 -0
- package/2/apps/native/src/components/advanced-ui/timeline/types.ts +31 -0
- package/2/apps/native/src/components/analytics/navigation-tracker.tsx +10 -0
- package/2/apps/native/src/components/demo/advanced-ui-components.tsx +46 -0
- package/2/apps/native/src/components/demo/buttons-demo.tsx +56 -0
- package/2/apps/native/src/components/demo/colors-demo.tsx +52 -0
- package/2/apps/native/src/components/demo/dropdown-picker-demo.tsx +274 -0
- package/2/apps/native/src/components/demo/inputs-demo.tsx +99 -0
- package/2/apps/native/src/components/demo/notification-demo.tsx +434 -0
- package/2/apps/native/src/components/demo/title-demo.tsx +16 -0
- package/2/apps/native/src/components/demo/toast-demo.tsx +81 -0
- package/2/apps/native/src/components/demo/typography-demo.tsx +28 -0
- package/2/apps/native/src/components/performance/render-performance-monitor.tsx +36 -0
- package/2/apps/native/src/components/ui/accordion.tsx +138 -0
- package/2/apps/native/src/components/ui/avatar.tsx +66 -0
- package/2/apps/native/src/components/ui/badge.tsx +68 -0
- package/2/apps/native/src/components/ui/bottom-sheet.tsx +61 -0
- package/2/apps/native/src/components/ui/colors.js +290 -0
- package/2/apps/native/src/components/ui/core/button.tsx +317 -0
- package/2/apps/native/src/components/ui/core/card.tsx +40 -0
- package/2/apps/native/src/components/ui/core/checkbox.tsx +264 -0
- package/2/apps/native/src/components/ui/core/feature-button.tsx +162 -0
- package/2/apps/native/src/components/ui/core/focus-aware-status-bar.tsx +21 -0
- package/2/apps/native/src/components/ui/core/image.tsx +30 -0
- package/2/apps/native/src/components/ui/core/inputs/floating-text-input.tsx +369 -0
- package/2/apps/native/src/components/ui/core/inputs/input-otp.tsx +304 -0
- package/2/apps/native/src/components/ui/core/inputs/input.tsx +373 -0
- package/2/apps/native/src/components/ui/core/list.tsx +60 -0
- package/2/apps/native/src/components/ui/core/navigation/animated-header.tsx +87 -0
- package/2/apps/native/src/components/ui/core/navigation/screen-footer.tsx +67 -0
- package/2/apps/native/src/components/ui/core/overlays/dropdown.tsx +290 -0
- package/2/apps/native/src/components/ui/core/overlays/full-screen-loading.tsx +15 -0
- package/2/apps/native/src/components/ui/core/overlays/modal-keyboard-aware-scroll-view.tsx +46 -0
- package/2/apps/native/src/components/ui/core/overlays/modal.tsx +247 -0
- package/2/apps/native/src/components/ui/core/pagination-dots.tsx +231 -0
- package/2/apps/native/src/components/ui/core/pressable.tsx +48 -0
- package/2/apps/native/src/components/ui/core/progress-bar.tsx +47 -0
- package/2/apps/native/src/components/ui/core/progress.tsx +149 -0
- package/2/apps/native/src/components/ui/core/select.tsx +261 -0
- package/2/apps/native/src/components/ui/core/spinner.tsx +387 -0
- package/2/apps/native/src/components/ui/core/text.tsx +45 -0
- package/2/apps/native/src/components/ui/core/toast.tsx +190 -0
- package/2/apps/native/src/components/ui/custom-switch.tsx +90 -0
- package/2/apps/native/src/components/ui/date-time-picker.tsx +268 -0
- package/2/apps/native/src/components/ui/debug.ts +2 -0
- package/2/apps/native/src/components/ui/extras/debug-credit-tester.tsx +107 -0
- package/2/apps/native/src/components/ui/extras/debug-mmkv-state.tsx +53 -0
- package/2/apps/native/src/components/ui/extras/handle-error.ts +191 -0
- package/2/apps/native/src/components/ui/extras/hello-wave.tsx +70 -0
- package/2/apps/native/src/components/ui/extras/icon.tsx +36 -0
- package/2/apps/native/src/components/ui/extras/network-connectivity-wrapper.tsx +36 -0
- package/2/apps/native/src/components/ui/extras/offline-indicator.tsx +55 -0
- package/2/apps/native/src/components/ui/extras/social-login-buttons.tsx +296 -0
- package/2/apps/native/src/components/ui/file-picker.tsx +177 -0
- package/2/apps/native/src/components/ui/gallery.tsx +79 -0
- package/2/apps/native/src/components/ui/icons/apple.tsx +19 -0
- package/2/apps/native/src/components/ui/icons/arrow-right.tsx +26 -0
- package/2/apps/native/src/components/ui/icons/camera.tsx +26 -0
- package/2/apps/native/src/components/ui/icons/caret-down.tsx +20 -0
- package/2/apps/native/src/components/ui/icons/chevron-up.tsx +21 -0
- package/2/apps/native/src/components/ui/icons/claude.tsx +15 -0
- package/2/apps/native/src/components/ui/icons/copy.tsx +27 -0
- package/2/apps/native/src/components/ui/icons/deepseek.tsx +15 -0
- package/2/apps/native/src/components/ui/icons/download.tsx +32 -0
- package/2/apps/native/src/components/ui/icons/feed.tsx +12 -0
- package/2/apps/native/src/components/ui/icons/gemini.tsx +15 -0
- package/2/apps/native/src/components/ui/icons/github.tsx +30 -0
- package/2/apps/native/src/components/ui/icons/google.tsx +24 -0
- package/2/apps/native/src/components/ui/icons/groq.tsx +15 -0
- package/2/apps/native/src/components/ui/icons/home.tsx +19 -0
- package/2/apps/native/src/components/ui/icons/index.tsx +26 -0
- package/2/apps/native/src/components/ui/icons/language.tsx +33 -0
- package/2/apps/native/src/components/ui/icons/llama.tsx +15 -0
- package/2/apps/native/src/components/ui/icons/microphone.tsx +20 -0
- package/2/apps/native/src/components/ui/icons/mistral.tsx +22 -0
- package/2/apps/native/src/components/ui/icons/nutrition.tsx +15 -0
- package/2/apps/native/src/components/ui/icons/openai.tsx +15 -0
- package/2/apps/native/src/components/ui/icons/perplexity.tsx +22 -0
- package/2/apps/native/src/components/ui/icons/qwen.tsx +15 -0
- package/2/apps/native/src/components/ui/icons/rate.tsx +24 -0
- package/2/apps/native/src/components/ui/icons/report.tsx +20 -0
- package/2/apps/native/src/components/ui/icons/send-horizontal.tsx +26 -0
- package/2/apps/native/src/components/ui/icons/settings.tsx +12 -0
- package/2/apps/native/src/components/ui/icons/share.tsx +16 -0
- package/2/apps/native/src/components/ui/icons/square.tsx +9 -0
- package/2/apps/native/src/components/ui/icons/style.tsx +22 -0
- package/2/apps/native/src/components/ui/icons/support.tsx +27 -0
- package/2/apps/native/src/components/ui/icons/trash2.tsx +42 -0
- package/2/apps/native/src/components/ui/icons/user.tsx +12 -0
- package/2/apps/native/src/components/ui/icons/website.tsx +28 -0
- package/2/apps/native/src/components/ui/icons/wifi-off.tsx +17 -0
- package/2/apps/native/src/components/ui/index.tsx +14 -0
- package/2/apps/native/src/components/ui/nav-item.tsx +42 -0
- package/2/apps/native/src/components/ui/patterns/index.ts +16 -0
- package/2/apps/native/src/components/ui/picker.tsx +244 -0
- package/2/apps/native/src/components/ui/popover.tsx +313 -0
- package/2/apps/native/src/components/ui/primitives/index.ts +38 -0
- package/2/apps/native/src/components/ui/radio-group.tsx +47 -0
- package/2/apps/native/src/components/ui/searchbar.tsx +118 -0
- package/2/apps/native/src/components/ui/sheet.tsx +93 -0
- package/2/apps/native/src/components/ui/switch.tsx +37 -0
- package/2/apps/native/src/components/ui/table.tsx +296 -0
- package/2/apps/native/src/components/ui/tabs.tsx +115 -0
- package/2/apps/native/src/components/ui/toggle.tsx +50 -0
- package/2/apps/native/src/components/ui/utils.tsx +34 -0
- package/2/apps/native/src/components/ui/video.tsx +39 -0
- package/2/apps/native/src/core/analytics/analytics-service.ts +94 -0
- package/2/apps/native/src/core/analytics/index.ts +2 -0
- package/2/apps/native/src/core/analytics/posthog-analytics-adapter.ts +192 -0
- package/2/apps/native/src/core/auth/auth-service.ts +33 -0
- package/2/apps/native/src/core/auth/index.ts +1 -0
- package/2/apps/native/src/core/cache/__tests__/cache-service.test.ts +599 -0
- package/2/apps/native/src/core/cache/cache-service.ts +89 -0
- package/2/apps/native/src/core/cache/index.ts +45 -0
- package/2/apps/native/src/core/config/config.service.ts +153 -0
- package/2/apps/native/src/core/config/index.ts +2 -0
- package/2/apps/native/src/core/config/telemetry.ts +38 -0
- package/2/apps/native/src/core/local-notifications/local-notification-manager.ts +409 -0
- package/2/apps/native/src/core/logging/custom-transports.ts +126 -0
- package/2/apps/native/src/core/logging/index.ts +1 -0
- package/2/apps/native/src/core/logging/logger.ts +182 -0
- package/2/apps/native/src/core/navigation/deep-link-handler.ts +295 -0
- package/2/apps/native/src/core/navigation/navigation-types.ts +53 -0
- package/2/apps/native/src/core/payments/index.ts +1 -0
- package/2/apps/native/src/core/payments/payment-service.ts +32 -0
- package/2/apps/native/src/core/quick-actions/index.ts +2 -0
- package/2/apps/native/src/core/quick-actions/quick-actions-adapter.ts +54 -0
- package/2/apps/native/src/core/quick-actions/types.ts +29 -0
- package/2/apps/native/src/core/storage/index.ts +1 -0
- package/2/apps/native/src/core/storage/mmkv.ts +62 -0
- package/2/apps/native/src/core/storage/notification-storage.ts +312 -0
- package/2/apps/native/src/core/types/common.ts +0 -0
- package/2/apps/native/src/core/utils/convex-http-api.ts +30 -0
- package/2/apps/native/src/features/audio-recorder/components/audio-player.tsx +301 -0
- package/2/apps/native/src/features/audio-recorder/components/audio-recorder.tsx +373 -0
- package/2/apps/native/src/features/audio-recorder/components/audio-waveform.tsx +270 -0
- package/2/apps/native/src/features/audio-recorder/components/index.ts +4 -0
- package/2/apps/native/src/features/audio-recorder/components/recording-list.tsx +89 -0
- package/2/apps/native/src/features/audio-recorder/demo/audio-player-demo.tsx +66 -0
- package/2/apps/native/src/features/audio-recorder/demo/audio-recorder-cloud.tsx +68 -0
- package/2/apps/native/src/features/audio-recorder/demo/audio-recorder-interview.tsx +102 -0
- package/2/apps/native/src/features/audio-recorder/demo/basic.tsx +27 -0
- package/2/apps/native/src/features/audio-recorder/demo/index.ts +5 -0
- package/2/apps/native/src/features/audio-recorder/demo/with-recording-list-demo.tsx +82 -0
- package/2/apps/native/src/features/authentication/components/auth-watcher.tsx +115 -0
- package/2/apps/native/src/features/authentication/components/login-form.tsx +85 -0
- package/2/apps/native/src/features/authentication/services/__tests__/convex-auth.adapter.test.ts +399 -0
- package/2/apps/native/src/features/authentication/services/convex-auth.adapter.ts +497 -0
- package/2/apps/native/src/features/authentication/services/index.ts +2 -0
- package/2/apps/native/src/features/charts/README.md +185 -0
- package/2/apps/native/src/features/charts/app/preview.tsx +226 -0
- package/2/apps/native/src/features/charts/components/area-chart.tsx +43 -0
- package/2/apps/native/src/features/charts/components/bar-chart.tsx +146 -0
- package/2/apps/native/src/features/charts/components/candlestick-chart.tsx +199 -0
- package/2/apps/native/src/features/charts/components/chart-card.tsx +68 -0
- package/2/apps/native/src/features/charts/components/column-chart.tsx +146 -0
- package/2/apps/native/src/features/charts/components/doughnut-chart.tsx +260 -0
- package/2/apps/native/src/features/charts/components/index.ts +13 -0
- package/2/apps/native/src/features/charts/components/line-chart.tsx +311 -0
- package/2/apps/native/src/features/charts/components/radar-chart.tsx +183 -0
- package/2/apps/native/src/features/charts/components/radial-bar-chart.tsx +191 -0
- package/2/apps/native/src/features/charts/components/stacked-area-chart.tsx +268 -0
- package/2/apps/native/src/features/charts/components/stacked-bar-chart.tsx +325 -0
- package/2/apps/native/src/features/charts/data/mock-data.ts +186 -0
- package/2/apps/native/src/features/charts/types/index.ts +69 -0
- package/2/apps/native/src/features/chatbot/app/index.tsx +303 -0
- package/2/apps/native/src/features/chatbot/components/chat-header-buttons.tsx +60 -0
- package/2/apps/native/src/features/chatbot/components/chat-input-bar.tsx +470 -0
- package/2/apps/native/src/features/chatbot/components/chat-markdown.tsx +576 -0
- package/2/apps/native/src/features/chatbot/components/chat-message-bubble.tsx +247 -0
- package/2/apps/native/src/features/chatbot/components/chat-settings-modal.tsx +162 -0
- package/2/apps/native/src/features/chatbot/components/image-preview-list.tsx +116 -0
- package/2/apps/native/src/features/chatbot/components/markdown/code-block.tsx +166 -0
- package/2/apps/native/src/features/chatbot/components/markdown/index.ts +11 -0
- package/2/apps/native/src/features/chatbot/components/markdown/table-renderer.tsx +130 -0
- package/2/apps/native/src/features/chatbot/components/message-error-boundary.tsx +79 -0
- package/2/apps/native/src/features/chatbot/components/message-list.tsx +174 -0
- package/2/apps/native/src/features/chatbot/components/model-selector.tsx +284 -0
- package/2/apps/native/src/features/chatbot/components/report-content-modal.tsx +189 -0
- package/2/apps/native/src/features/chatbot/components/suggested-messages.tsx +68 -0
- package/2/apps/native/src/features/chatbot/constants/models.ts +21 -0
- package/2/apps/native/src/features/chatbot/constants/report-reasons.ts +10 -0
- package/2/apps/native/src/features/chatbot/hooks/use-attachment-cache.ts +144 -0
- package/2/apps/native/src/features/chatbot/hooks/use-chat-config.ts +665 -0
- package/2/apps/native/src/features/chatbot/hooks/use-chat-handlers.ts +360 -0
- package/2/apps/native/src/features/chatbot/hooks/use-chatbot-settings.ts +90 -0
- package/2/apps/native/src/features/chatbot/hooks/use-conversation.ts +80 -0
- package/2/apps/native/src/features/chatbot/hooks/use-image-picker.ts +123 -0
- package/2/apps/native/src/features/chatbot/hooks/use-keyboard-coordinator.ts +162 -0
- package/2/apps/native/src/features/chatbot/hooks/use-smart-scroll-manager.ts +214 -0
- package/2/apps/native/src/features/chatbot/models/index.ts +87 -0
- package/2/apps/native/src/features/chatbot/models/models.ts +163 -0
- package/2/apps/native/src/features/chatbot/models/providers.ts +63 -0
- package/2/apps/native/src/features/chatbot/models/types.ts +41 -0
- package/2/apps/native/src/features/chatbot/services/file-uploader.ts +239 -0
- package/2/apps/native/src/features/chatbot/services/message-handler-service.ts +181 -0
- package/2/apps/native/src/features/chatbot/types/index.ts +61 -0
- package/2/apps/native/src/features/chatbot/utils/chat-telemetry.ts +92 -0
- package/2/apps/native/src/features/image-analyzer/app/analysis-options-screen.tsx +304 -0
- package/2/apps/native/src/features/image-analyzer/app/camera.tsx +221 -0
- package/2/apps/native/src/features/image-analyzer/app/image-capture-screen.tsx +333 -0
- package/2/apps/native/src/features/image-analyzer/app/loading-screen.tsx +217 -0
- package/2/apps/native/src/features/image-analyzer/app/loading.tsx +194 -0
- package/2/apps/native/src/features/image-analyzer/app/results.tsx +137 -0
- package/2/apps/native/src/features/image-analyzer/app/trait-details.tsx +172 -0
- package/2/apps/native/src/features/image-analyzer/app/use-analysis-data.ts +143 -0
- package/2/apps/native/src/features/image-analyzer/app/use-results-screen.ts +151 -0
- package/2/apps/native/src/features/image-analyzer/components/results/achievement-badge.tsx +77 -0
- package/2/apps/native/src/features/image-analyzer/components/results/achievement-card.tsx +75 -0
- package/2/apps/native/src/features/image-analyzer/components/results/achievement-unlocked-modal.tsx +162 -0
- package/2/apps/native/src/features/image-analyzer/components/results/achievements-section.tsx +44 -0
- package/2/apps/native/src/features/image-analyzer/components/results/advice-list.tsx +42 -0
- package/2/apps/native/src/features/image-analyzer/components/results/circular-progress.tsx +233 -0
- package/2/apps/native/src/features/image-analyzer/components/results/content-card.tsx +38 -0
- package/2/apps/native/src/features/image-analyzer/components/results/error-state.tsx +42 -0
- package/2/apps/native/src/features/image-analyzer/components/results/index.ts +9 -0
- package/2/apps/native/src/features/image-analyzer/components/results/loading-state.tsx +26 -0
- package/2/apps/native/src/features/image-analyzer/components/results/profile-image.tsx +60 -0
- package/2/apps/native/src/features/image-analyzer/components/results/results-header.tsx +62 -0
- package/2/apps/native/src/features/image-analyzer/components/results/score-display.tsx +54 -0
- package/2/apps/native/src/features/image-analyzer/components/results/share-options-modal.tsx +110 -0
- package/2/apps/native/src/features/image-analyzer/components/results/traits-grid.tsx +74 -0
- package/2/apps/native/src/features/image-analyzer/config/analysis-config.ts +80 -0
- package/2/apps/native/src/features/image-analyzer/config/master-analysis-config.ts +157 -0
- package/2/apps/native/src/features/image-analyzer/hooks/index.ts +1 -0
- package/2/apps/native/src/features/image-analyzer/hooks/use-analysis.ts +37 -0
- package/2/apps/native/src/features/image-analyzer/hooks/use-image-analysis.ts +202 -0
- package/2/apps/native/src/features/image-analyzer/services/analysis-service.ts +262 -0
- package/2/apps/native/src/features/image-analyzer/services/share-service.ts +176 -0
- package/2/apps/native/src/features/image-analyzer/services/trait-details-service.ts +289 -0
- package/2/apps/native/src/features/image-generator/app/_layout.tsx +26 -0
- package/2/apps/native/src/features/image-generator/app/gallery.tsx +217 -0
- package/2/apps/native/src/features/image-generator/app/index.tsx +237 -0
- package/2/apps/native/src/features/image-generator/components/gallery-image.tsx +25 -0
- package/2/apps/native/src/features/image-generator/components/image-detail-modal.tsx +215 -0
- package/2/apps/native/src/features/image-generator/components/image-model-selector.tsx +210 -0
- package/2/apps/native/src/features/image-generator/components/image-placeholder.tsx +26 -0
- package/2/apps/native/src/features/image-generator/hooks/use-image-gallery.ts +71 -0
- package/2/apps/native/src/features/image-generator/hooks/use-image-generator-settings.ts +152 -0
- package/2/apps/native/src/features/image-generator/hooks/use-image-generator.ts +93 -0
- package/2/apps/native/src/features/image-generator/models/models.ts +66 -0
- package/2/apps/native/src/features/image-generator/services/image-gallery-service.ts +98 -0
- package/2/apps/native/src/features/image-generator/services/image-save-service.ts +121 -0
- package/2/apps/native/src/features/onboarding/analytics/index.ts +9 -0
- package/2/apps/native/src/features/onboarding/components/onboarding-with-analytics.tsx +141 -0
- package/2/apps/native/src/features/onboarding/components/onboarding.tsx +173 -0
- package/2/apps/native/src/features/onboarding/config/onboarding-flow-config.ts +189 -0
- package/2/apps/native/src/features/onboarding/demo-one/app/index.tsx +43 -0
- package/2/apps/native/src/features/onboarding/demo-one/data.ts +32 -0
- package/2/apps/native/src/features/onboarding/hooks/use-onboarding-analytics.ts +323 -0
- package/2/apps/native/src/features/onboarding/services/onboarding-analytics.ts +432 -0
- package/2/apps/native/src/features/payments/README.md +200 -0
- package/2/apps/native/src/features/payments/app/local-paywall.tsx +194 -0
- package/2/apps/native/src/features/payments/app/remote-paywall.tsx +79 -0
- package/2/apps/native/src/features/payments/components/payment-initializer.tsx +95 -0
- package/2/apps/native/src/features/payments/components/paywall-error-state.tsx +60 -0
- package/2/apps/native/src/features/payments/components/paywall-local-mode.tsx +116 -0
- package/2/apps/native/src/features/payments/components/paywall-product-card.tsx +133 -0
- package/2/apps/native/src/features/payments/components/paywall-remote-mode.tsx +146 -0
- package/2/apps/native/src/features/payments/hooks/use-entitlement.ts +63 -0
- package/2/apps/native/src/features/payments/index.ts +8 -0
- package/2/apps/native/src/features/payments/services/revenuecat-adapter.ts +407 -0
- package/2/apps/native/src/features/quick-actions/components/quick-actions-demo.tsx +139 -0
- package/2/apps/native/src/features/quick-actions/config/default-actions.ts +83 -0
- package/2/apps/native/src/features/quick-actions/hooks/use-quick-actions.ts +45 -0
- package/2/apps/native/src/features/quick-actions/index.ts +4 -0
- package/2/apps/native/src/features/quick-actions/utils/quick-actions-manager.ts +105 -0
- package/2/apps/native/src/features/quiz/components/question.tsx +67 -0
- package/2/apps/native/src/features/quiz/config.ts +11 -0
- package/2/apps/native/src/features/quiz/index.tsx +133 -0
- package/2/apps/native/src/features/settings/ui/debug-info.tsx +75 -0
- package/2/apps/native/src/features/settings/ui/dev-tools.tsx +1 -0
- package/2/apps/native/src/features/settings/ui/item.tsx +45 -0
- package/2/apps/native/src/features/settings/ui/items-container.tsx +23 -0
- package/2/apps/native/src/features/settings/ui/language-item.tsx +52 -0
- package/2/apps/native/src/features/settings/ui/notification-item.tsx +59 -0
- package/2/apps/native/src/features/settings/ui/theme-item.tsx +45 -0
- package/2/apps/native/src/features/tracker-app/app/index.tsx +108 -0
- package/2/apps/native/src/features/tracker-app/components/animated-number.tsx +102 -0
- package/2/apps/native/src/features/tracker-app/components/calorie-card.tsx +66 -0
- package/2/apps/native/src/features/tracker-app/components/circular-progress.tsx +97 -0
- package/2/apps/native/src/features/tracker-app/components/floating-add-button.tsx +27 -0
- package/2/apps/native/src/features/tracker-app/components/macro-card.tsx +80 -0
- package/2/apps/native/src/features/tracker-app/components/promo-banner.tsx +98 -0
- package/2/apps/native/src/features/tracker-app/components/recently-logged.tsx +64 -0
- package/2/apps/native/src/features/tracker-app/components/week-calendar.tsx +68 -0
- package/2/apps/native/src/features/vibefast-features.ts +42 -0
- package/2/apps/native/src/features/voice-bot/README.md +185 -0
- package/2/apps/native/src/features/voice-bot/components/conversation-status.tsx +76 -0
- package/2/apps/native/src/features/voice-bot/components/index.ts +4 -0
- package/2/apps/native/src/features/voice-bot/components/message-input.tsx +98 -0
- package/2/apps/native/src/features/voice-bot/components/voice-bot-screen.tsx +173 -0
- package/2/apps/native/src/features/voice-bot/components/voice-controls.tsx +73 -0
- package/2/apps/native/src/features/voice-bot/index.ts +3 -0
- package/2/apps/native/src/features/voice-bot/services/index.ts +1 -0
- package/2/apps/native/src/features/voice-bot/services/use-voice-bot.ts +161 -0
- package/2/apps/native/src/features/voice-bot/types.ts +29 -0
- package/2/apps/native/src/features/wake-word/components/index.ts +1 -0
- package/2/apps/native/src/features/wake-word/components/wake-word-indicator.tsx +61 -0
- package/2/apps/native/src/features/wake-word/constants.ts +10 -0
- package/2/apps/native/src/features/wake-word/hooks/use-wake-word.ts +181 -0
- package/2/apps/native/src/features/wake-word/index.ts +22 -0
- package/2/apps/native/src/features/wake-word/services/audio-session.ts +40 -0
- package/2/apps/native/src/features/wake-word/services/event-bus.ts +31 -0
- package/2/apps/native/src/features/wake-word/services/keywords.ts +88 -0
- package/2/apps/native/src/features/wake-word/services/wake-word-manager.ts +249 -0
- package/2/apps/native/src/features/wake-word/types.ts +22 -0
- package/2/apps/native/src/lib/env.js +13 -0
- package/2/apps/native/src/lib/hooks/index.tsx +6 -0
- package/2/apps/native/src/lib/hooks/use-device-identifier.tsx +80 -0
- package/2/apps/native/src/lib/hooks/use-gradual-animation.ts +28 -0
- package/2/apps/native/src/lib/hooks/use-is-first-time.tsx +25 -0
- package/2/apps/native/src/lib/hooks/use-navigation-analytics.ts +44 -0
- package/2/apps/native/src/lib/hooks/use-navigation-options.tsx +87 -0
- package/2/apps/native/src/lib/hooks/use-push-notifications.ts +250 -0
- package/2/apps/native/src/lib/hooks/use-responsive-size.tsx +37 -0
- package/2/apps/native/src/lib/hooks/use-selected-theme.tsx +38 -0
- package/2/apps/native/src/lib/hooks/use-viewport-lazy-loading.tsx +124 -0
- package/2/apps/native/src/lib/i18n/index.tsx +30 -0
- package/2/apps/native/src/lib/i18n/react-i18next.d.ts +9 -0
- package/2/apps/native/src/lib/i18n/resources.ts +25 -0
- package/2/apps/native/src/lib/i18n/types.ts +23 -0
- package/2/apps/native/src/lib/i18n/utils.tsx +112 -0
- package/2/apps/native/src/lib/index.tsx +3 -0
- package/2/apps/native/src/lib/state/auth-client-slice.ts +34 -0
- package/2/apps/native/src/lib/state/index.ts +1 -0
- package/2/apps/native/src/lib/storage.tsx +7 -0
- package/2/apps/native/src/lib/test-utils.tsx +43 -0
- package/2/apps/native/src/lib/use-theme-config.tsx +108 -0
- package/2/apps/native/src/lib/utils.ts +29 -0
- package/2/apps/native/src/polyfills.ts +61 -0
- package/2/apps/native/src/providers/convex-provider.tsx +31 -0
- package/2/apps/native/src/providers/index.tsx +6 -0
- package/2/apps/native/src/providers/notification-provider.tsx +168 -0
- package/2/apps/native/src/providers/posthog-provider.tsx +47 -0
- package/2/apps/native/src/providers/root-providers.tsx +46 -0
- package/2/apps/native/src/providers/sentry-provider.tsx +62 -0
- package/2/apps/native/src/providers/splash-screen-provider.tsx +122 -0
- package/2/apps/native/src/providers/theme-provider.tsx +67 -0
- package/2/apps/native/src/translations/ar.json +394 -0
- package/2/apps/native/src/translations/de.json +394 -0
- package/2/apps/native/src/translations/en.json +394 -0
- package/2/apps/native/src/translations/es.json +394 -0
- package/2/apps/native/src/translations/fr.json +394 -0
- package/2/apps/native/src/types/flash-list.d.ts +3 -0
- package/2/apps/native/src/types/index.ts +3 -0
- package/2/apps/native/src/types/react-native-reanimated.d.ts +5 -0
- package/2/apps/native/tailwind.config.js +57 -0
- package/2/apps/native/targets/widget/AppIntent.swift +46 -0
- package/2/apps/native/targets/widget/Assets.xcassets/AppIcon.appiconset/App-Icon-20x20@1x.png +0 -0
- package/2/apps/native/targets/widget/Assets.xcassets/AppIcon.appiconset/App-Icon-20x20@2x.png +0 -0
- package/2/apps/native/targets/widget/Assets.xcassets/AppIcon.appiconset/App-Icon-20x20@3x.png +0 -0
- package/2/apps/native/targets/widget/Assets.xcassets/AppIcon.appiconset/App-Icon-29x29@1x.png +0 -0
- package/2/apps/native/targets/widget/Assets.xcassets/AppIcon.appiconset/App-Icon-29x29@2x.png +0 -0
- package/2/apps/native/targets/widget/Assets.xcassets/AppIcon.appiconset/App-Icon-29x29@3x.png +0 -0
- package/2/apps/native/targets/widget/Assets.xcassets/AppIcon.appiconset/App-Icon-40x40@1x.png +0 -0
- package/2/apps/native/targets/widget/Assets.xcassets/AppIcon.appiconset/App-Icon-40x40@2x.png +0 -0
- package/2/apps/native/targets/widget/Assets.xcassets/AppIcon.appiconset/App-Icon-40x40@3x.png +0 -0
- package/2/apps/native/targets/widget/Assets.xcassets/AppIcon.appiconset/App-Icon-60x60@2x.png +0 -0
- package/2/apps/native/targets/widget/Assets.xcassets/AppIcon.appiconset/App-Icon-60x60@3x.png +0 -0
- package/2/apps/native/targets/widget/Assets.xcassets/AppIcon.appiconset/App-Icon-76x76@1x.png +0 -0
- package/2/apps/native/targets/widget/Assets.xcassets/AppIcon.appiconset/App-Icon-76x76@2x.png +0 -0
- package/2/apps/native/targets/widget/Assets.xcassets/AppIcon.appiconset/App-Icon-83.5x83.5@2x.png +0 -0
- package/2/apps/native/targets/widget/Assets.xcassets/AppIcon.appiconset/Contents.json +122 -0
- package/2/apps/native/targets/widget/Assets.xcassets/AppIcon.appiconset/ItunesArtwork@2x.png +0 -0
- package/2/apps/native/targets/widget/CalorieTrackerWidget.swift +424 -0
- package/2/apps/native/targets/widget/HabitTrackerWidget.swift +305 -0
- package/2/apps/native/targets/widget/Info.plist +11 -0
- package/2/apps/native/targets/widget/WidgetLiveActivity.swift +75 -0
- package/2/apps/native/targets/widget/expo-target.config.js +10 -0
- package/2/apps/native/targets/widget/generated.entitlements +5 -0
- package/2/apps/native/targets/widget/index.swift +18 -0
- package/2/apps/native/targets/widget/widgets.swift +96 -0
- package/2/apps/native/tsconfig.json +88 -0
- package/2/apps/native/vitest.config.mts +14 -0
- package/2/apps/web/README.md +36 -0
- package/2/apps/web/app/favicon.ico +0 -0
- package/2/apps/web/app/globals.css +122 -0
- package/2/apps/web/app/layout.tsx +38 -0
- package/2/apps/web/app/page.tsx +35 -0
- package/2/apps/web/app/users/page.tsx +301 -0
- package/2/apps/web/components/AdminDashboard.tsx +336 -0
- package/2/apps/web/components/AppleLogo.tsx +15 -0
- package/2/apps/web/components/GitHubLogo.tsx +11 -0
- package/2/apps/web/components/GoogleLogo.tsx +23 -0
- package/2/apps/web/components/Layout.tsx +77 -0
- package/2/apps/web/components/ThemeToggle.tsx +23 -0
- package/2/apps/web/components/UserMenu.tsx +66 -0
- package/2/apps/web/components/auth/CodeInput.tsx +24 -0
- package/2/apps/web/components/auth/ResetPasswordWithEmailCode.tsx +85 -0
- package/2/apps/web/components/auth/SignInFormEmailCode.tsx +72 -0
- package/2/apps/web/components/auth/SignInFormEmailLink.tsx +81 -0
- package/2/apps/web/components/auth/SignInFormPassword.tsx +17 -0
- package/2/apps/web/components/auth/SignInFormPasswordAndCustomField.tsx +42 -0
- package/2/apps/web/components/auth/SignInFormPasswordAndResetViaCode.tsx +32 -0
- package/2/apps/web/components/auth/SignInFormPasswordAndVerifyViaCode.tsx +86 -0
- package/2/apps/web/components/auth/SignInFormPhoneCode.tsx +89 -0
- package/2/apps/web/components/auth/SignInFormsShowcase.tsx +64 -0
- package/2/apps/web/components/auth/SignInMethodDivider.tsx +17 -0
- package/2/apps/web/components/auth/SignInWithEmailCode.tsx +49 -0
- package/2/apps/web/components/auth/SignInWithOAuth.tsx +16 -0
- package/2/apps/web/components/auth/SignInWithPassword.tsx +100 -0
- package/2/apps/web/components/auth/oauth/SignInWithApple.tsx +27 -0
- package/2/apps/web/components/auth/oauth/SignInWithGitHub.tsx +27 -0
- package/2/apps/web/components/auth/oauth/SignInWithGoogle.tsx +27 -0
- package/2/apps/web/components/ui/button.tsx +60 -0
- package/2/apps/web/components/ui/card.tsx +92 -0
- package/2/apps/web/components/ui/dialog.tsx +143 -0
- package/2/apps/web/components/ui/dropdown-menu.tsx +257 -0
- package/2/apps/web/components/ui/input-otp.tsx +77 -0
- package/2/apps/web/components/ui/input.tsx +21 -0
- package/2/apps/web/components/ui/skeleton.tsx +13 -0
- package/2/apps/web/components/ui/tabs.tsx +66 -0
- package/2/apps/web/components/ui/toast.tsx +130 -0
- package/2/apps/web/components/ui/toaster.tsx +36 -0
- package/2/apps/web/components/ui/toggle-group.tsx +83 -0
- package/2/apps/web/components/ui/toggle.tsx +47 -0
- package/2/apps/web/components/ui/use-toast.ts +192 -0
- package/2/apps/web/components.json +22 -0
- package/2/apps/web/eslint.config.mjs +18 -0
- package/2/apps/web/lib/convex-provider.tsx +18 -0
- package/2/apps/web/lib/utils.ts +6 -0
- package/2/apps/web/next.config.ts +7 -0
- package/2/apps/web/package.json +46 -0
- package/2/apps/web/postcss.config.mjs +7 -0
- package/2/apps/web/public/file.svg +1 -0
- package/2/apps/web/public/globe.svg +1 -0
- package/2/apps/web/public/next.svg +1 -0
- package/2/apps/web/public/vercel.svg +1 -0
- package/2/apps/web/public/window.svg +1 -0
- package/2/apps/web/tsconfig.json +34 -0
- package/2/bts.jsonc +21 -0
- package/2/commitlint.config.js +1 -0
- package/2/eslint.config.mjs +182 -0
- package/2/lint-staged.config.js +16 -0
- package/2/package.json +64 -0
- package/2/packages/backend/.env.example +20 -0
- package/2/packages/backend/convex/README.md +90 -0
- package/2/packages/backend/convex/_generated/api.d.ts +2599 -0
- package/2/packages/backend/convex/_generated/api.js +23 -0
- package/2/packages/backend/convex/_generated/dataModel.d.ts +60 -0
- package/2/packages/backend/convex/_generated/server.d.ts +149 -0
- package/2/packages/backend/convex/_generated/server.js +90 -0
- package/2/packages/backend/convex/agents.ts +116 -0
- package/2/packages/backend/convex/auth.config.ts +8 -0
- package/2/packages/backend/convex/auth.ts +103 -0
- package/2/packages/backend/convex/authCustomEmailOtpProvider.ts +175 -0
- package/2/packages/backend/convex/authOtp.ts +144 -0
- package/2/packages/backend/convex/authPasswordReset.ts +367 -0
- package/2/packages/backend/convex/authPasswordResetActions.ts +150 -0
- package/2/packages/backend/convex/chatbot/index.ts +30 -0
- package/2/packages/backend/convex/chatbotAgent.ts +1085 -0
- package/2/packages/backend/convex/chatbotHistory.ts +307 -0
- package/2/packages/backend/convex/convex.config.ts +13 -0
- package/2/packages/backend/convex/deviceGrants.ts +58 -0
- package/2/packages/backend/convex/grantFunctions.ts +444 -0
- package/2/packages/backend/convex/http.ts +8 -0
- package/2/packages/backend/convex/imageAnalysis/index.ts +18 -0
- package/2/packages/backend/convex/imageAnalysisFunctions.ts +325 -0
- package/2/packages/backend/convex/imageGeneration/index.ts +12 -0
- package/2/packages/backend/convex/imageGeneratorFunctions.ts +290 -0
- package/2/packages/backend/convex/lib/ai/analysisConfigs.ts +257 -0
- package/2/packages/backend/convex/lib/ai/config.ts +71 -0
- package/2/packages/backend/convex/lib/ai/geminiAdapter.ts +43 -0
- package/2/packages/backend/convex/lib/ai/imageAnalysisAdapter.ts +200 -0
- package/2/packages/backend/convex/lib/ai/openaiAdapter.ts +43 -0
- package/2/packages/backend/convex/lib/ai/schemas.ts +79 -0
- package/2/packages/backend/convex/lib/config.ts +111 -0
- package/2/packages/backend/convex/lib/rateLimit.ts +100 -0
- package/2/packages/backend/convex/lib/telemetry.ts +29 -0
- package/2/packages/backend/convex/paymentFunctions.ts +119 -0
- package/2/packages/backend/convex/payments/index.ts +13 -0
- package/2/packages/backend/convex/pushNotificationFunctions.ts +342 -0
- package/2/packages/backend/convex/ragKnowledge.ts +714 -0
- package/2/packages/backend/convex/rateLimit.ts +13 -0
- package/2/packages/backend/convex/recordingFunctions.ts +98 -0
- package/2/packages/backend/convex/reportFunctions.ts +344 -0
- package/2/packages/backend/convex/reporting/index.ts +9 -0
- package/2/packages/backend/convex/router.ts +81 -0
- package/2/packages/backend/convex/schema.ts +237 -0
- package/2/packages/backend/convex/shared/email.ts +172 -0
- package/2/packages/backend/convex/shared/files.ts +96 -0
- package/2/packages/backend/convex/shared/index.ts +17 -0
- package/2/packages/backend/convex/shared/templates/PasswordResetEmail.tsx +72 -0
- package/2/packages/backend/convex/shared/templates/VerificationCodeEmail.tsx +65 -0
- package/2/packages/backend/convex/sharedUsers.ts +48 -0
- package/2/packages/backend/convex/tools/index.ts +18 -0
- package/2/packages/backend/convex/tools/knowledgeRetrieval.ts +92 -0
- package/2/packages/backend/convex/tools/tavilySearch.ts +83 -0
- package/2/packages/backend/convex/tools/userProfile.ts +72 -0
- package/2/packages/backend/convex/tsconfig.json +25 -0
- package/2/packages/backend/convex/users.ts +54 -0
- package/2/packages/backend/index.ts +20 -0
- package/2/packages/backend/package.json +32 -0
- package/2/packages/ui/README.md +63 -0
- package/2/packages/ui/index.ts +1 -0
- package/2/packages/ui/package.json +21 -0
- package/2/packages/ui/src/components/SharedButton.tsx +31 -0
- package/2/packages/ui/src/components/SharedCard.tsx +48 -0
- package/2/packages/ui/src/components/index.ts +2 -0
- package/2/packages/ui/tsconfig.json +10 -0
- package/2/pnpm-lock.yaml +23292 -0
- package/2/pnpm-workspace.yaml +3 -0
- package/2/scripts/i18next-syntax-validation.js +1 -0
- package/2/tsconfig.json +43 -0
- package/2/turbo.json +33 -0
- package/2/vercel.json +6 -0
- package/2/vf-agent/agent-teams/team-vibefast.yaml +14 -0
- package/2/vf-agent/agents/analyst.md +53 -0
- package/2/vf-agent/agents/architect.md +105 -0
- package/2/vf-agent/agents/dev.md +40 -0
- package/2/vf-agent/agents/orchestrator.md +181 -0
- package/2/vf-agent/agents/pm.md +48 -0
- package/2/vf-agent/agents/po.md +38 -0
- package/2/vf-agent/agents/qa.md +30 -0
- package/2/vf-agent/agents/sm.md +38 -0
- package/2/vf-agent/agents/ux-expert.md +33 -0
- package/2/vf-agent/checklists/po-master-checklist.md +73 -0
- package/2/vf-agent/checklists/story-dod-checklist.md +37 -0
- package/2/vf-agent/core-config.yaml +43 -0
- package/2/vf-agent/data/knowledge_base/backend/convex-advanced.md +43 -0
- package/2/vf-agent/data/knowledge_base/backend/convex-database.md +53 -0
- package/2/vf-agent/data/knowledge_base/backend/convex-main.md +65 -0
- package/2/vf-agent/data/knowledge_base/backend/full-guidelines.md +795 -0
- package/2/vf-agent/data/knowledge_base/coding-standards.md +253 -0
- package/2/vf-agent/data/knowledge_base/frontend/full-guidelines.md +254 -0
- package/2/vf-agent/data/knowledge_base/frontend/image-handling.md +48 -0
- package/2/vf-agent/data/knowledge_base/frontend/react-native-main.md +24 -0
- package/2/vf-agent/data/knowledge_base/frontend/ui-and-styling.md +169 -0
- package/2/vf-agent/data/knowledge_base/general-principles.md +26 -0
- package/2/vf-agent/data/knowledge_base/master-rulebook.md +42 -0
- package/2/vf-agent/data/knowledge_base/starter-docs/audio-recorder-reference.md +98 -0
- package/2/vf-agent/data/knowledge_base/starter-docs/authentication-reference.md +155 -0
- package/2/vf-agent/data/knowledge_base/starter-docs/charts-reference.md +149 -0
- package/2/vf-agent/data/knowledge_base/starter-docs/chatbot-reference.md +123 -0
- package/2/vf-agent/data/knowledge_base/starter-docs/feature-reference-index.md +211 -0
- package/2/vf-agent/data/knowledge_base/starter-docs/features-overview.md +221 -0
- package/2/vf-agent/data/knowledge_base/starter-docs/image-analyzer-reference.md +118 -0
- package/2/vf-agent/data/knowledge_base/starter-docs/image-generator-reference.md +110 -0
- package/2/vf-agent/data/knowledge_base/starter-docs/index.md +28 -0
- package/2/vf-agent/data/knowledge_base/starter-docs/onboarding-reference.md +96 -0
- package/2/vf-agent/data/knowledge_base/starter-docs/payments-reference.md +148 -0
- package/2/vf-agent/data/knowledge_base/starter-docs/prd.md +82 -0
- package/2/vf-agent/data/knowledge_base/starter-docs/push-notifications-reference.md +453 -0
- package/2/vf-agent/data/knowledge_base/starter-docs/quick-actions-reference.md +253 -0
- package/2/vf-agent/data/knowledge_base/starter-docs/quiz-reference.md +169 -0
- package/2/vf-agent/data/knowledge_base/starter-docs/settings-reference.md +146 -0
- package/2/vf-agent/data/knowledge_base/starter-docs/tech-stack.md +159 -0
- package/2/vf-agent/data/knowledge_base/starter-docs/tracker-app-reference.md +150 -0
- package/2/vf-agent/data/knowledge_base/starter-docs/unified-project-structure.md +98 -0
- package/2/vf-agent/data/knowledge_base/testing/backend-testing.md +54 -0
- package/2/vf-agent/data/knowledge_base/testing/frontend-testing.md +71 -0
- package/2/vf-agent/data/knowledge_base/testing/testing-strategy.md +31 -0
- package/2/vf-agent/tasks/advanced-elicitation.md +117 -0
- package/2/vf-agent/tasks/brownfield-create-epic.md +160 -0
- package/2/vf-agent/tasks/create-deep-research-prompt.md +278 -0
- package/2/vf-agent/tasks/create-doc.md +42 -0
- package/2/vf-agent/tasks/create-story.md +43 -0
- package/2/vf-agent/tasks/document-project.md +343 -0
- package/2/vf-agent/tasks/facilitate-brainstorming-session.md +136 -0
- package/2/vf-agent/tasks/index-docs.md +173 -0
- package/2/vf-agent/tasks/kb-mode-interaction.md +75 -0
- package/2/vf-agent/tasks/review-story.md +154 -0
- package/2/vf-agent/tasks/shard-doc.md +185 -0
- package/2/vf-agent/tasks/troubleshoot-issue.md +65 -0
- package/2/vf-agent/tasks/validate-next-story.md +47 -0
- package/2/vf-agent/templates/brainstorming-output-tmpl.yaml +156 -0
- package/2/vf-agent/templates/brownfield-architecture-tmpl.yaml +111 -0
- package/2/vf-agent/templates/brownfield-prd-tmpl.yaml +247 -0
- package/2/vf-agent/templates/competitor-analysis-tmpl.yaml +293 -0
- package/2/vf-agent/templates/market-research-tmpl.yaml +252 -0
- package/2/vf-agent/templates/project-brief-tmpl.yaml +221 -0
- package/2/vf-agent/templates/story-tmpl.yaml +143 -0
- package/BEFORE-AFTER.md +327 -0
- package/CHANGELOG.md +73 -0
- package/CLI-ROADMAP.md +415 -0
- package/COMMAND-REFERENCE.md +341 -0
- package/IMPLEMENTATION-STATUS.md +316 -0
- package/MANUAL-TEST-CHECKLIST.md +264 -0
- package/OPTIONS-GLOSSARY.md +308 -0
- package/PHASE-1-2-3-COMPLETE.md +435 -0
- package/PHASE-1-2-IMPLEMENTATION.md +280 -0
- package/PHASE-1-2-SUMMARY.md +183 -0
- package/QUICK-START.md +352 -0
- package/RECIPES-GUIDE.md +325 -0
- package/RELEASE-CHECKLIST.md +269 -0
- package/VF-INIT-FLOW.md +446 -0
- package/dist/commands/add.d.ts.map +1 -1
- package/dist/commands/add.js +328 -66
- package/dist/commands/add.js.map +1 -1
- package/dist/commands/checklist.d.ts.map +1 -1
- package/dist/commands/checklist.js +69 -5
- package/dist/commands/checklist.js.map +1 -1
- package/dist/commands/env.d.ts +3 -0
- package/dist/commands/env.d.ts.map +1 -0
- package/dist/commands/env.js +130 -0
- package/dist/commands/env.js.map +1 -0
- package/dist/commands/health.d.ts +3 -0
- package/dist/commands/health.d.ts.map +1 -0
- package/dist/commands/health.js +214 -0
- package/dist/commands/health.js.map +1 -0
- package/dist/commands/init.d.ts +3 -0
- package/dist/commands/init.d.ts.map +1 -0
- package/dist/commands/init.js +436 -0
- package/dist/commands/init.js.map +1 -0
- package/dist/commands/list.d.ts.map +1 -1
- package/dist/commands/list.js +36 -16
- package/dist/commands/list.js.map +1 -1
- package/dist/commands/login.d.ts.map +1 -1
- package/dist/commands/login.js +5 -0
- package/dist/commands/login.js.map +1 -1
- package/dist/commands/remove.d.ts.map +1 -1
- package/dist/commands/remove.js +11 -0
- package/dist/commands/remove.js.map +1 -1
- package/dist/core/__tests__/detect.test.d.ts +2 -0
- package/dist/core/__tests__/detect.test.d.ts.map +1 -0
- package/dist/core/__tests__/detect.test.js +73 -0
- package/dist/core/__tests__/detect.test.js.map +1 -0
- package/dist/core/detect.d.ts +10 -0
- package/dist/core/detect.d.ts.map +1 -0
- package/dist/core/detect.js +58 -0
- package/dist/core/detect.js.map +1 -0
- package/dist/core/env.d.ts +24 -0
- package/dist/core/env.d.ts.map +1 -0
- package/dist/core/env.js +83 -0
- package/dist/core/env.js.map +1 -0
- package/dist/core/errors.d.ts +13 -0
- package/dist/core/errors.d.ts.map +1 -0
- package/dist/core/errors.js +111 -0
- package/dist/core/errors.js.map +1 -0
- package/dist/core/prompt.d.ts +46 -2
- package/dist/core/prompt.d.ts.map +1 -1
- package/dist/core/prompt.js +179 -15
- package/dist/core/prompt.js.map +1 -1
- package/dist/core/prompts.d.ts +23 -0
- package/dist/core/prompts.d.ts.map +1 -0
- package/dist/core/prompts.js +85 -0
- package/dist/core/prompts.js.map +1 -0
- package/dist/core/recipes.d.ts +31 -0
- package/dist/core/recipes.d.ts.map +1 -0
- package/dist/core/recipes.js +138 -0
- package/dist/core/recipes.js.map +1 -0
- package/dist/core/spinner.d.ts +20 -0
- package/dist/core/spinner.d.ts.map +1 -0
- package/dist/core/spinner.js +72 -0
- package/dist/core/spinner.js.map +1 -0
- package/dist/core/vosk.d.ts +7 -0
- package/dist/core/vosk.d.ts.map +1 -0
- package/dist/core/vosk.js +94 -0
- package/dist/core/vosk.js.map +1 -0
- package/dist/index.js +40 -0
- package/dist/index.js.map +1 -1
- package/package.json +6 -1
- package/recipes/README.md +156 -0
- package/recipes/image-analysis/recipe.json +61 -0
- package/recipes/image-analysis@latest.zip +0 -0
- package/recipes/image-generator/recipe.json +7 -12
- package/recipes/posthog.json +46 -0
- package/recipes/revenuecat.json +43 -0
- package/recipes/sentry.json +46 -0
- package/recipes/voice-bot/recipe.json +10 -7
- package/recipes/wake-word/apps/native/assets/vosk-model/README.md +103 -0
- package/recipes/wake-word/apps/native/src/app/(root)/(protected)/test-wake-word.tsx +216 -0
- package/recipes/wake-word/apps/native/src/features/wake-word/components/index.ts +1 -0
- package/recipes/wake-word/apps/native/src/features/wake-word/components/wake-word-indicator.tsx +61 -0
- package/recipes/wake-word/apps/native/src/features/wake-word/constants.ts +10 -0
- package/recipes/wake-word/apps/native/src/features/wake-word/hooks/use-wake-word.ts +181 -0
- package/recipes/wake-word/apps/native/src/features/wake-word/index.ts +22 -0
- package/recipes/wake-word/apps/native/src/features/wake-word/services/audio-session.ts +40 -0
- package/recipes/wake-word/apps/native/src/features/wake-word/services/event-bus.ts +31 -0
- package/recipes/wake-word/apps/native/src/features/wake-word/services/keywords.ts +88 -0
- package/recipes/wake-word/apps/native/src/features/wake-word/services/wake-word-manager.ts +249 -0
- package/recipes/wake-word/apps/native/src/features/wake-word/types.ts +22 -0
- package/recipes/wake-word/recipe.json +50 -0
- package/recipes/wake-word/scripts/download-vosk-model.mjs +121 -0
- package/recipes/wake-word@latest.zip +0 -0
- package/scripts/sync-recipes.js +93 -0
- package/src/commands/add.ts +401 -68
- package/src/commands/checklist.ts +81 -6
- package/src/commands/env.ts +163 -0
- package/src/commands/health.ts +225 -0
- package/src/commands/init.ts +534 -0
- package/src/commands/list.ts +42 -16
- package/src/commands/login.ts +6 -0
- package/src/commands/remove.ts +12 -0
- package/src/core/__tests__/detect.test.ts +91 -0
- package/src/core/detect.ts +60 -0
- package/src/core/env.ts +109 -0
- package/src/core/errors.ts +122 -0
- package/src/core/prompt.ts +227 -16
- package/src/core/prompts.ts +115 -0
- package/src/core/recipes.ts +152 -0
- package/src/core/spinner.ts +87 -0
- package/src/core/vosk.ts +111 -0
- package/src/index.ts +50 -0
- package/test-locally.sh +145 -0
|
@@ -0,0 +1,232 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "native",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"private": true,
|
|
5
|
+
"main": "index.ts",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"start": "cross-env EXPO_NO_DOTENV=1 expo start",
|
|
8
|
+
"prebuild": "cross-env EXPO_NO_DOTENV=1 pnpm expo prebuild",
|
|
9
|
+
"android": "cross-env EXPO_NO_DOTENV=1 expo run:android",
|
|
10
|
+
"ios": "cross-env EXPO_NO_DOTENV=1 expo run:ios",
|
|
11
|
+
"xcode": "xed -b ios",
|
|
12
|
+
"doctor": "npx expo-doctor@latest",
|
|
13
|
+
"preinstall": "npx only-allow pnpm",
|
|
14
|
+
"start:staging": "cross-env APP_ENV=staging pnpm run start",
|
|
15
|
+
"prebuild:staging": "cross-env APP_ENV=staging pnpm run prebuild",
|
|
16
|
+
"prebuild:local": "cross-env APP_ENV=local pnpm run prebuild",
|
|
17
|
+
"android:staging": "cross-env APP_ENV=staging pnpm run android",
|
|
18
|
+
"ios:staging": "cross-env APP_ENV=staging pnpm run ios",
|
|
19
|
+
"start:production": "cross-env APP_ENV=production pnpm run start",
|
|
20
|
+
"prebuild:production": "cross-env APP_ENV=production pnpm run prebuild",
|
|
21
|
+
"android:production": "cross-env APP_ENV=production pnpm run android",
|
|
22
|
+
"ios:production": "cross-env APP_ENV=production pnpm run ios",
|
|
23
|
+
"build:local:ios": "cross-env APP_ENV=local EXPO_NO_DOTENV=1 eas build --profile local --platform ios",
|
|
24
|
+
"build:local:android": "cross-env APP_ENV=local EXPO_NO_DOTENV=1 eas build --profile local --platform android ",
|
|
25
|
+
"build:staging:ios": "cross-env APP_ENV=staging EXPO_NO_DOTENV=1 eas build --profile staging --platform ios",
|
|
26
|
+
"build:staging:android": "cross-env APP_ENV=staging EXPO_NO_DOTENV=1 eas build --profile staging --platform android ",
|
|
27
|
+
"build:production:ios": "cross-env APP_ENV=production EXPO_NO_DOTENV=1 eas build --profile production --platform ios",
|
|
28
|
+
"build:production:android": "cross-env APP_ENV=production EXPO_NO_DOTENV=1 eas build --profile production --platform android ",
|
|
29
|
+
"prepare": "husky",
|
|
30
|
+
"app-release": "cross-env SKIP_BRANCH_PROTECTION=true np --no-publish --no-cleanup --no-release-draft",
|
|
31
|
+
"version": "pnpm run prebuild && git add .",
|
|
32
|
+
"lint": "eslint src --ext .js,.jsx,.ts,.tsx --cache --cache-location ../../.cache/eslint",
|
|
33
|
+
"check-types": "tsc --noemit --skipLibCheck",
|
|
34
|
+
"lint:translations": "eslint ./src/translations/ --fix --ext .json ",
|
|
35
|
+
"test": "pnpm test:frontend && pnpm test:backend",
|
|
36
|
+
"test:frontend": "jest",
|
|
37
|
+
"test:backend": "vitest run",
|
|
38
|
+
"check-all": "pnpm run lint && pnpm run check-types && pnpm run lint:translations && pnpm run test",
|
|
39
|
+
"test:ci": "pnpm run test --coverage",
|
|
40
|
+
"test:watch": "pnpm run test --watch",
|
|
41
|
+
"setup:vosk": "node scripts/download-vosk-model.mjs",
|
|
42
|
+
"setup:starter": "node scripts/starter-setup.mjs",
|
|
43
|
+
"setup:convex": "node scripts/convex-setup.js",
|
|
44
|
+
"build:apk": "bash scripts/genrate-apk-and-install",
|
|
45
|
+
"dev": "expo start",
|
|
46
|
+
"dev:clear": "expo start --clear"
|
|
47
|
+
},
|
|
48
|
+
"dependencies": {
|
|
49
|
+
"@ai-sdk/google": "^1.2.22",
|
|
50
|
+
"@ai-sdk/openai": "^1.3.24",
|
|
51
|
+
"@ai-sdk/react": "^1.2.12",
|
|
52
|
+
"@bacons/apple-targets": "^3.0.2",
|
|
53
|
+
"@config-plugins/react-native-webrtc": "^12.0.0",
|
|
54
|
+
"@convex-dev/agent": "^0.1.6",
|
|
55
|
+
"@convex-dev/auth": "^0.0.87",
|
|
56
|
+
"@convex-dev/persistent-text-streaming": "^0.2.3",
|
|
57
|
+
"@convex-dev/rag": "^0.5.4",
|
|
58
|
+
"@convex-dev/resend": "^0.1.12",
|
|
59
|
+
"@elevenlabs/react-native": "^0.2.1",
|
|
60
|
+
"@expo-google-fonts/plus-jakarta-sans": "^0.4.1",
|
|
61
|
+
"@expo/metro-runtime": "^6.1.2",
|
|
62
|
+
"@expo/vector-icons": "^15.0.2",
|
|
63
|
+
"@gorhom/bottom-sheet": "^5.2.6",
|
|
64
|
+
"@hookform/resolvers": "^3.10.0",
|
|
65
|
+
"@livekit/react-native": "^2.9.1",
|
|
66
|
+
"@livekit/react-native-expo-plugin": "^1.0.1",
|
|
67
|
+
"@livekit/react-native-webrtc": "^137.0.1",
|
|
68
|
+
"@react-native-community/datetimepicker": "8.4.4",
|
|
69
|
+
"@react-native-community/netinfo": "11.4.1",
|
|
70
|
+
"@react-native-masked-view/masked-view": "^0.3.2",
|
|
71
|
+
"@sentry/react-native": "~7.2.0",
|
|
72
|
+
"@shopify/flash-list": "2.0.2",
|
|
73
|
+
"@shopify/react-native-skia": "2.2.12",
|
|
74
|
+
"@stardazed/streams-text-encoding": "^1.0.2",
|
|
75
|
+
"@tanstack/react-query": "^5.87.4",
|
|
76
|
+
"@ungap/structured-clone": "^1.3.0",
|
|
77
|
+
"@vibefast/backend": "workspace:*",
|
|
78
|
+
"ai": "^4.3.19",
|
|
79
|
+
"bcryptjs": "^3.0.2",
|
|
80
|
+
"convex": "^1.27.0",
|
|
81
|
+
"d3-shape": "^3.2.0",
|
|
82
|
+
"expo": "~54.0.23",
|
|
83
|
+
"expo-application": "~7.0.7",
|
|
84
|
+
"expo-audio": "~1.0.13",
|
|
85
|
+
"expo-auth-session": "~7.0.8",
|
|
86
|
+
"expo-blur": "~15.0.7",
|
|
87
|
+
"expo-camera": "~17.0.9",
|
|
88
|
+
"expo-clipboard": "~8.0.7",
|
|
89
|
+
"expo-constants": "~18.0.9",
|
|
90
|
+
"expo-crypto": "~15.0.7",
|
|
91
|
+
"expo-dev-client": "~6.0.17",
|
|
92
|
+
"expo-device": "~8.0.9",
|
|
93
|
+
"expo-file-system": "~19.0.16",
|
|
94
|
+
"expo-font": "~14.0.8",
|
|
95
|
+
"expo-glass-effect": "^0.1.7",
|
|
96
|
+
"expo-haptics": "~15.0.7",
|
|
97
|
+
"expo-image": "~3.0.10",
|
|
98
|
+
"expo-image-manipulator": "~14.0.7",
|
|
99
|
+
"expo-image-picker": "~17.0.8",
|
|
100
|
+
"expo-linear-gradient": "~15.0.7",
|
|
101
|
+
"expo-linking": "~8.0.8",
|
|
102
|
+
"expo-localization": "~17.0.7",
|
|
103
|
+
"expo-media-library": "~18.2.0",
|
|
104
|
+
"expo-notifications": "~0.32.12",
|
|
105
|
+
"expo-quick-actions": "^5.0.0",
|
|
106
|
+
"expo-router": "~6.0.13",
|
|
107
|
+
"expo-secure-store": "~15.0.7",
|
|
108
|
+
"expo-splash-screen": "~31.0.10",
|
|
109
|
+
"expo-status-bar": "~3.0.8",
|
|
110
|
+
"expo-store-review": "~9.0.8",
|
|
111
|
+
"expo-system-ui": "~6.0.7",
|
|
112
|
+
"expo-updates": "~29.0.12",
|
|
113
|
+
"expo-video": "~3.0.14",
|
|
114
|
+
"expo-web-browser": "~15.0.9",
|
|
115
|
+
"i18next": "^23.16.8",
|
|
116
|
+
"livekit-client": "^2.15.6",
|
|
117
|
+
"lodash.memoize": "^4.1.2",
|
|
118
|
+
"lottie-react-native": "7.3.4",
|
|
119
|
+
"lucia": "^3.2.2",
|
|
120
|
+
"markdown-it": "^14.1.0",
|
|
121
|
+
"moti": "^0.29.0",
|
|
122
|
+
"nativewind": "^4.2.0",
|
|
123
|
+
"posthog-react-native": "^4.5.0",
|
|
124
|
+
"posthog-react-native-session-replay": "^1.1.3",
|
|
125
|
+
"react": "19.1.0",
|
|
126
|
+
"react-dom": "19.1.0",
|
|
127
|
+
"react-error-boundary": "^4.1.2",
|
|
128
|
+
"react-hook-form": "^7.62.0",
|
|
129
|
+
"react-i18next": "^15.7.3",
|
|
130
|
+
"react-native": "0.81.5",
|
|
131
|
+
"react-native-animated-glow": "^2.0.0",
|
|
132
|
+
"react-native-animated-rolling-numbers": "^2.0.0",
|
|
133
|
+
"react-native-css-interop": "^0.2.1",
|
|
134
|
+
"react-native-flash-message": "^0.4.2",
|
|
135
|
+
"react-native-gesture-handler": "~2.28.0",
|
|
136
|
+
"react-native-get-random-values": "~1.11.0",
|
|
137
|
+
"react-native-keyboard-controller": "^1.18.5",
|
|
138
|
+
"react-native-markdown-display": "^7.0.2",
|
|
139
|
+
"react-native-mmkv": "~3.1.0",
|
|
140
|
+
"react-native-polyfill-globals": "^3.1.0",
|
|
141
|
+
"react-native-purchases": "^8.11.10",
|
|
142
|
+
"react-native-purchases-ui": "^8.11.10",
|
|
143
|
+
"react-native-reanimated": "~4.1.2",
|
|
144
|
+
"react-native-safe-area-context": "5.6.1",
|
|
145
|
+
"react-native-screens": "^4.16.0",
|
|
146
|
+
"react-native-svg": "~15.12.1",
|
|
147
|
+
"react-native-syntax-highlighter": "^2.1.0",
|
|
148
|
+
"react-native-url-polyfill": "^2.0.0",
|
|
149
|
+
"react-native-vosk": "^2.1.6",
|
|
150
|
+
"react-native-worklets": "0.5.1",
|
|
151
|
+
"resend": "^4.8.0",
|
|
152
|
+
"sonner-native": "^0.21.1",
|
|
153
|
+
"tailwind-merge": "^3.3.1",
|
|
154
|
+
"tailwind-variants": "^0.2.1",
|
|
155
|
+
"web-streams-polyfill": "^3.3.3",
|
|
156
|
+
"zod": "^3.25.76",
|
|
157
|
+
"zustand": "^5.0.8"
|
|
158
|
+
},
|
|
159
|
+
"devDependencies": {
|
|
160
|
+
"@babel/core": "^7.28.4",
|
|
161
|
+
"@babel/plugin-transform-react-jsx": "^7.27.1",
|
|
162
|
+
"@commitlint/cli": "^19.8.1",
|
|
163
|
+
"@commitlint/config-conventional": "^19.8.1",
|
|
164
|
+
"@dev-plugins/react-query": "^0.0.7",
|
|
165
|
+
"@edge-runtime/vm": "^1.1.0",
|
|
166
|
+
"@eslint/eslintrc": "^3.3.1",
|
|
167
|
+
"@eslint/js": "^9.35.0",
|
|
168
|
+
"@expo/config": "~12.0.8",
|
|
169
|
+
"@testing-library/jest-dom": "^6.8.0",
|
|
170
|
+
"@testing-library/react-native": "^12.9.0",
|
|
171
|
+
"@types/d3-shape": "^3.1.7",
|
|
172
|
+
"@types/invariant": "^2.2.37",
|
|
173
|
+
"@types/jest": "^29.5.14",
|
|
174
|
+
"@types/lodash.memoize": "^4.1.9",
|
|
175
|
+
"@types/node": "^24.3.1",
|
|
176
|
+
"@types/react": "~19.1.12",
|
|
177
|
+
"@types/three": "^0.179.0",
|
|
178
|
+
"@typescript-eslint/eslint-plugin": "^8.43.0",
|
|
179
|
+
"@typescript-eslint/parser": "^8.43.0",
|
|
180
|
+
"@vitest/coverage-v8": "^3.2.4",
|
|
181
|
+
"babel-plugin-module-resolver": "^5.0.2",
|
|
182
|
+
"babel-preset-expo": "54.0.0",
|
|
183
|
+
"convex-test": "^0.0.37",
|
|
184
|
+
"cross-env": "^7.0.3",
|
|
185
|
+
"dotenv": "^16.6.1",
|
|
186
|
+
"eslint": "^9.35.0",
|
|
187
|
+
"eslint-config-expo": "^9.2.0",
|
|
188
|
+
"eslint-config-prettier": "^10.1.8",
|
|
189
|
+
"eslint-import-resolver-typescript": "^4.4.4",
|
|
190
|
+
"eslint-plugin-i18n-json": "^4.0.1",
|
|
191
|
+
"eslint-plugin-import": "^2.32.0",
|
|
192
|
+
"eslint-plugin-prettier": "^5.5.4",
|
|
193
|
+
"eslint-plugin-react-compiler": "19.1.0-rc.2",
|
|
194
|
+
"eslint-plugin-simple-import-sort": "^12.1.1",
|
|
195
|
+
"eslint-plugin-tailwindcss": "^3.18.2",
|
|
196
|
+
"eslint-plugin-testing-library": "^7.6.8",
|
|
197
|
+
"eslint-plugin-unicorn": "^59.0.1",
|
|
198
|
+
"eslint-plugin-unused-imports": "^4.2.0",
|
|
199
|
+
"husky": "^9.1.7",
|
|
200
|
+
"jest": "^29.7.0",
|
|
201
|
+
"jest-environment-jsdom": "^29.7.0",
|
|
202
|
+
"jest-expo": "~54.0.12",
|
|
203
|
+
"jest-junit": "^16.0.0",
|
|
204
|
+
"lint-staged": "^15.5.2",
|
|
205
|
+
"np": "^10.2.0",
|
|
206
|
+
"prettier": "^3.6.2",
|
|
207
|
+
"tailwindcss": "3.4.17",
|
|
208
|
+
"ts-jest": "^29.4.1",
|
|
209
|
+
"typescript": "^5.9.2",
|
|
210
|
+
"vitest": "^3.2.4"
|
|
211
|
+
},
|
|
212
|
+
"expo": {
|
|
213
|
+
"doctor": {
|
|
214
|
+
"reactNativeDirectoryCheck": {
|
|
215
|
+
"listUnknownPackages": false,
|
|
216
|
+
"exclude": [
|
|
217
|
+
"posthog-react-native-session-replay",
|
|
218
|
+
"@livekit/react-native",
|
|
219
|
+
"@livekit/react-native-webrtc"
|
|
220
|
+
]
|
|
221
|
+
}
|
|
222
|
+
},
|
|
223
|
+
"install": {
|
|
224
|
+
"exclude": [
|
|
225
|
+
"eslint-config-expo"
|
|
226
|
+
]
|
|
227
|
+
}
|
|
228
|
+
},
|
|
229
|
+
"osMetadata": {
|
|
230
|
+
"initVersion": "7.0.5"
|
|
231
|
+
}
|
|
232
|
+
}
|
|
File without changes
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
# Quick Start Guide - Native App Scripts
|
|
2
|
+
|
|
3
|
+
## ๐ First Time Setup
|
|
4
|
+
|
|
5
|
+
Run this once when setting up the project:
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
# From monorepo root
|
|
9
|
+
pnpm native:setup:starter
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
This will:
|
|
13
|
+
|
|
14
|
+
- Install all dependencies
|
|
15
|
+
- Setup environment files
|
|
16
|
+
- Configure Convex backend
|
|
17
|
+
- Setup Convex Auth
|
|
18
|
+
|
|
19
|
+
## ๐ฑ Common Tasks
|
|
20
|
+
|
|
21
|
+
### Download Vosk Model (for voice features)
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
pnpm native:setup:vosk
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
### Update Convex Environment Variables
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
pnpm native:setup:convex
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
### Build & Install Android APK
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
pnpm native:build:apk
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
## ๐ฏ Quick Commands Reference
|
|
40
|
+
|
|
41
|
+
| Task | From Root | From apps/native |
|
|
42
|
+
| ------------- | --------------------------- | -------------------- |
|
|
43
|
+
| Initial setup | `pnpm native:setup:starter` | `pnpm setup:starter` |
|
|
44
|
+
| Vosk model | `pnpm native:setup:vosk` | `pnpm setup:vosk` |
|
|
45
|
+
| Convex env | `pnpm native:setup:convex` | `pnpm setup:convex` |
|
|
46
|
+
| Build APK | `pnpm native:build:apk` | `pnpm build:apk` |
|
|
47
|
+
| Start dev | `pnpm native:start` | `pnpm start` |
|
|
48
|
+
| Run iOS | `pnpm native:ios` | `pnpm ios` |
|
|
49
|
+
| Run Android | `pnpm native:android` | `pnpm android` |
|
|
50
|
+
|
|
51
|
+
## ๐ง Troubleshooting
|
|
52
|
+
|
|
53
|
+
### "Cannot find package.json"
|
|
54
|
+
|
|
55
|
+
- Make sure you're in the right directory
|
|
56
|
+
- For root commands: anywhere in monorepo
|
|
57
|
+
- For direct commands: must be in `apps/native/`
|
|
58
|
+
|
|
59
|
+
### Convex setup fails
|
|
60
|
+
|
|
61
|
+
```bash
|
|
62
|
+
# First, ensure backend is initialized
|
|
63
|
+
cd packages/backend
|
|
64
|
+
pnpm convex dev
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
### APK build fails
|
|
68
|
+
|
|
69
|
+
```bash
|
|
70
|
+
# Ensure native projects are generated
|
|
71
|
+
pnpm native:prebuild
|
|
72
|
+
```
|
|
73
|
+
|
|
74
|
+
## ๐ More Info
|
|
75
|
+
|
|
76
|
+
See [README.md](./README.md) for detailed documentation.
|
|
@@ -0,0 +1,187 @@
|
|
|
1
|
+
# Native App Scripts
|
|
2
|
+
|
|
3
|
+
This directory contains utility scripts for the VibeFast native app in the monorepo.
|
|
4
|
+
|
|
5
|
+
## Available Scripts
|
|
6
|
+
|
|
7
|
+
### 1. `starter-setup.mjs`
|
|
8
|
+
|
|
9
|
+
**Purpose:** Complete initial setup for the native app including dependencies, Convex backend, and environment configuration.
|
|
10
|
+
|
|
11
|
+
**Usage:**
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
# From monorepo root
|
|
15
|
+
pnpm native:setup:starter
|
|
16
|
+
|
|
17
|
+
# From apps/native
|
|
18
|
+
pnpm setup:starter
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
**What it does:**
|
|
22
|
+
|
|
23
|
+
- Checks for pnpm and eas-cli installation
|
|
24
|
+
- Renames `.env.*.example` files to `.env.*`
|
|
25
|
+
- Installs dependencies from monorepo root
|
|
26
|
+
- Fixes Expo SDK peer dependencies
|
|
27
|
+
- Sets up Convex backend (if exists)
|
|
28
|
+
- Configures Convex Auth
|
|
29
|
+
- Updates CONVEX_SITE_URL in environment files
|
|
30
|
+
|
|
31
|
+
### 2. `convex-setup.js`
|
|
32
|
+
|
|
33
|
+
**Purpose:** Push environment variables from `.env.local` to Convex deployment.
|
|
34
|
+
|
|
35
|
+
**Usage:**
|
|
36
|
+
|
|
37
|
+
```bash
|
|
38
|
+
# From monorepo root
|
|
39
|
+
pnpm native:setup:convex
|
|
40
|
+
|
|
41
|
+
# From apps/native
|
|
42
|
+
pnpm setup:convex
|
|
43
|
+
|
|
44
|
+
# With custom env file
|
|
45
|
+
node scripts/convex-setup.js .env.staging
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
**What it does:**
|
|
49
|
+
|
|
50
|
+
- Reads environment variables from specified file (default: `.env.local`)
|
|
51
|
+
- Pushes each variable to Convex using `npx convex env set`
|
|
52
|
+
- Skips `CONVEX_SITE_URL` (automatically set by Convex)
|
|
53
|
+
|
|
54
|
+
### 3. `download-vosk-model.mjs`
|
|
55
|
+
|
|
56
|
+
**Purpose:** Download and setup the Vosk speech recognition model for wake word detection.
|
|
57
|
+
|
|
58
|
+
**Usage:**
|
|
59
|
+
|
|
60
|
+
```bash
|
|
61
|
+
# From monorepo root
|
|
62
|
+
pnpm native:setup:vosk
|
|
63
|
+
|
|
64
|
+
# From apps/native
|
|
65
|
+
pnpm setup:vosk
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
**What it does:**
|
|
69
|
+
|
|
70
|
+
- Downloads vosk-model-small-en-us-0.15.zip (~40MB)
|
|
71
|
+
- Extracts to `assets/vosk-model/`
|
|
72
|
+
- Renames to expected folder name `model-en-us`
|
|
73
|
+
- Cleans up zip file
|
|
74
|
+
|
|
75
|
+
**Requirements:**
|
|
76
|
+
|
|
77
|
+
- `unzip` command (pre-installed on macOS/Linux)
|
|
78
|
+
|
|
79
|
+
### 4. `genrate-apk-and-install`
|
|
80
|
+
|
|
81
|
+
**Purpose:** Build a release APK and install it on a connected Android device.
|
|
82
|
+
|
|
83
|
+
**Usage:**
|
|
84
|
+
|
|
85
|
+
```bash
|
|
86
|
+
# From monorepo root
|
|
87
|
+
pnpm native:build:apk
|
|
88
|
+
|
|
89
|
+
# From apps/native
|
|
90
|
+
pnpm build:apk
|
|
91
|
+
|
|
92
|
+
# Or directly
|
|
93
|
+
bash scripts/genrate-apk-and-install
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
**What it does:**
|
|
97
|
+
|
|
98
|
+
- Builds release APK using Gradle
|
|
99
|
+
- Finds the generated APK file
|
|
100
|
+
- Installs it on connected device via ADB
|
|
101
|
+
|
|
102
|
+
**Requirements:**
|
|
103
|
+
|
|
104
|
+
- Android SDK and Gradle configured
|
|
105
|
+
- ADB (Android Debug Bridge) installed
|
|
106
|
+
- Android device connected via USB or emulator running
|
|
107
|
+
|
|
108
|
+
### 5. `i18next-syntax-validation.js`
|
|
109
|
+
|
|
110
|
+
**Purpose:** Validate i18next translation string syntax (used by ESLint plugin).
|
|
111
|
+
|
|
112
|
+
**Usage:**
|
|
113
|
+
This is typically used by the ESLint plugin `eslint-plugin-i18n-json` and not called directly.
|
|
114
|
+
|
|
115
|
+
**What it validates:**
|
|
116
|
+
|
|
117
|
+
- Message is not empty
|
|
118
|
+
- Message is a string
|
|
119
|
+
- Interpolation syntax: `{{ variable }}`
|
|
120
|
+
- Nesting syntax: `$t(namespace:key.subkey)`
|
|
121
|
+
|
|
122
|
+
## Monorepo Considerations
|
|
123
|
+
|
|
124
|
+
These scripts have been adapted for the monorepo structure:
|
|
125
|
+
|
|
126
|
+
1. **Path Resolution:** Scripts use relative paths from `apps/native` directory
|
|
127
|
+
2. **Backend Integration:** `starter-setup.mjs` looks for backend at `../../packages/backend`
|
|
128
|
+
3. **Dependency Installation:** Runs `pnpm install` from monorepo root
|
|
129
|
+
4. **Workspace Commands:** Root package.json includes convenience commands with `pnpm --filter native`
|
|
130
|
+
|
|
131
|
+
## Environment Files
|
|
132
|
+
|
|
133
|
+
The scripts expect these environment files in `apps/native/`:
|
|
134
|
+
|
|
135
|
+
- `.env.local` - Local development
|
|
136
|
+
- `.env.staging` - Staging environment
|
|
137
|
+
- `.env.production` - Production environment
|
|
138
|
+
|
|
139
|
+
Example files should be named:
|
|
140
|
+
|
|
141
|
+
- `.env.local.example`
|
|
142
|
+
- `.env.staging.example`
|
|
143
|
+
- `.env.production.example`
|
|
144
|
+
|
|
145
|
+
## Troubleshooting
|
|
146
|
+
|
|
147
|
+
### Script fails with "package.json not found"
|
|
148
|
+
|
|
149
|
+
Make sure you're running from the correct directory:
|
|
150
|
+
|
|
151
|
+
- For direct script execution: `apps/native/`
|
|
152
|
+
- For pnpm commands: anywhere in monorepo
|
|
153
|
+
|
|
154
|
+
### Convex setup fails
|
|
155
|
+
|
|
156
|
+
1. Ensure you have a Convex project initialized
|
|
157
|
+
2. Check that `.env.local` contains `CONVEX_URL`
|
|
158
|
+
3. Run `pnpm convex dev` in `packages/backend` first
|
|
159
|
+
|
|
160
|
+
### Vosk model download fails
|
|
161
|
+
|
|
162
|
+
1. Check internet connection
|
|
163
|
+
2. Ensure `unzip` is installed: `which unzip`
|
|
164
|
+
3. Try manual download from: https://alphacephei.com/vosk/models/
|
|
165
|
+
|
|
166
|
+
### APK build fails
|
|
167
|
+
|
|
168
|
+
1. Ensure Android SDK is configured
|
|
169
|
+
2. Run `pnpm prebuild` first to generate native projects
|
|
170
|
+
3. Check that `android/` directory exists
|
|
171
|
+
|
|
172
|
+
## Adding New Scripts
|
|
173
|
+
|
|
174
|
+
When adding new scripts:
|
|
175
|
+
|
|
176
|
+
1. Place them in `apps/native/scripts/`
|
|
177
|
+
2. Make bash scripts executable: `chmod +x scripts/your-script.sh`
|
|
178
|
+
3. Add to `apps/native/package.json` scripts section
|
|
179
|
+
4. Add convenience command to root `package.json` with `pnpm --filter native`
|
|
180
|
+
5. Update this README
|
|
181
|
+
|
|
182
|
+
## Related Documentation
|
|
183
|
+
|
|
184
|
+
- [Expo Documentation](https://docs.expo.dev/)
|
|
185
|
+
- [Convex Documentation](https://docs.convex.dev/)
|
|
186
|
+
- [Vosk Documentation](https://alphacephei.com/vosk/)
|
|
187
|
+
- [i18next Documentation](https://www.i18next.com/)
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
const { execSync } = require('child_process');
|
|
2
|
+
const fs = require('fs');
|
|
3
|
+
const path = require('path');
|
|
4
|
+
|
|
5
|
+
const envFile = process.argv[2] || '.env.local';
|
|
6
|
+
const envPath = path.resolve(process.cwd(), envFile);
|
|
7
|
+
|
|
8
|
+
if (!fs.existsSync(envPath)) {
|
|
9
|
+
console.error(`โ Cannot find file: ${envPath}`);
|
|
10
|
+
process.exit(1);
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
const content = fs.readFileSync(envPath, 'utf8');
|
|
14
|
+
const lines = content.split(/\r?\n/);
|
|
15
|
+
|
|
16
|
+
for (let raw of lines) {
|
|
17
|
+
const line = raw.trim();
|
|
18
|
+
if (!line || line.startsWith('#')) continue;
|
|
19
|
+
|
|
20
|
+
const idx = line.indexOf('=');
|
|
21
|
+
if (idx === -1) continue;
|
|
22
|
+
|
|
23
|
+
const key = line.slice(0, idx);
|
|
24
|
+
let val = line.slice(idx + 1);
|
|
25
|
+
|
|
26
|
+
// strip surrounding quotes if present
|
|
27
|
+
if (
|
|
28
|
+
(val.startsWith('"') && val.endsWith('"')) ||
|
|
29
|
+
(val.startsWith("'") && val.endsWith("'"))
|
|
30
|
+
) {
|
|
31
|
+
val = val.slice(1, -1);
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
// Skip pushing CONVEX_SITE_URL it's in convex envs by default
|
|
35
|
+
if (key === 'CONVEX_SITE_URL') {
|
|
36
|
+
continue;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
console.log(`๐ง Setting ${key}`);
|
|
40
|
+
try {
|
|
41
|
+
// Escape double quotes in value to prevent shell injection
|
|
42
|
+
const escapedVal = val.replace(/"/g, '\\"');
|
|
43
|
+
execSync(`npx convex env set ${key} "${escapedVal}"`, { stdio: 'inherit' });
|
|
44
|
+
} catch (err) {
|
|
45
|
+
console.error(`โ Failed to set ${key}:`, err.message);
|
|
46
|
+
// Continue with other variables even if one fails
|
|
47
|
+
}
|
|
48
|
+
}
|
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
import { execSync } from 'child_process';
|
|
2
|
+
import fs from 'fs';
|
|
3
|
+
import https from 'https';
|
|
4
|
+
import path from 'path';
|
|
5
|
+
|
|
6
|
+
const MODEL_URL =
|
|
7
|
+
'https://alphacephei.com/vosk/models/vosk-model-small-en-us-0.15.zip';
|
|
8
|
+
const MODEL_NAME = 'model-en-us';
|
|
9
|
+
const ASSETS_DIR = path.resolve('assets/vosk-model');
|
|
10
|
+
const MODEL_PATH = path.join(ASSETS_DIR, MODEL_NAME);
|
|
11
|
+
const ZIP_PATH = path.join(ASSETS_DIR, 'model.zip');
|
|
12
|
+
|
|
13
|
+
const downloadFile = (url, dest) => {
|
|
14
|
+
return new Promise((resolve, reject) => {
|
|
15
|
+
const file = fs.createWriteStream(dest);
|
|
16
|
+
https
|
|
17
|
+
.get(url, (response) => {
|
|
18
|
+
if (response.statusCode === 302 || response.statusCode === 301) {
|
|
19
|
+
// Follow redirect
|
|
20
|
+
return downloadFile(response.headers.location, dest)
|
|
21
|
+
.then(resolve)
|
|
22
|
+
.catch(reject);
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
const totalSize = parseInt(response.headers['content-length'], 10);
|
|
26
|
+
let downloaded = 0;
|
|
27
|
+
|
|
28
|
+
response.on('data', (chunk) => {
|
|
29
|
+
downloaded += chunk.length;
|
|
30
|
+
const percent = ((downloaded / totalSize) * 100).toFixed(1);
|
|
31
|
+
process.stdout.write(
|
|
32
|
+
`\r๐ฅ Downloading: ${percent}% (${(downloaded / 1024 / 1024).toFixed(1)}MB / ${(totalSize / 1024 / 1024).toFixed(1)}MB)`
|
|
33
|
+
);
|
|
34
|
+
});
|
|
35
|
+
|
|
36
|
+
response.pipe(file);
|
|
37
|
+
|
|
38
|
+
file.on('finish', () => {
|
|
39
|
+
file.close(() => {
|
|
40
|
+
console.log('\nโ
Download complete!');
|
|
41
|
+
resolve();
|
|
42
|
+
});
|
|
43
|
+
});
|
|
44
|
+
})
|
|
45
|
+
.on('error', (err) => {
|
|
46
|
+
fs.unlink(dest, () => {});
|
|
47
|
+
reject(err);
|
|
48
|
+
});
|
|
49
|
+
});
|
|
50
|
+
};
|
|
51
|
+
|
|
52
|
+
const unzipFile = (zipPath, destDir) => {
|
|
53
|
+
console.log('๐ฆ Extracting model...');
|
|
54
|
+
try {
|
|
55
|
+
// Try unzip command (macOS/Linux)
|
|
56
|
+
execSync(`unzip -q "${zipPath}" -d "${destDir}"`, { stdio: 'inherit' });
|
|
57
|
+
} catch {
|
|
58
|
+
// Fallback: try using node's built-in if available
|
|
59
|
+
console.error(
|
|
60
|
+
'โ unzip command not found. Please install unzip or extract manually.'
|
|
61
|
+
);
|
|
62
|
+
throw new Error('Extraction failed');
|
|
63
|
+
}
|
|
64
|
+
};
|
|
65
|
+
|
|
66
|
+
(async () => {
|
|
67
|
+
try {
|
|
68
|
+
console.log('๐๏ธ Vosk Model Setup\n');
|
|
69
|
+
|
|
70
|
+
// Check if model already exists
|
|
71
|
+
if (fs.existsSync(MODEL_PATH)) {
|
|
72
|
+
console.log('โ
Vosk model already exists at:', MODEL_PATH);
|
|
73
|
+
console.log(' Delete it first if you want to re-download.');
|
|
74
|
+
process.exit(0);
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
// Create assets directory if it doesn't exist
|
|
78
|
+
if (!fs.existsSync(ASSETS_DIR)) {
|
|
79
|
+
fs.mkdirSync(ASSETS_DIR, { recursive: true });
|
|
80
|
+
console.log('๐ Created directory:', ASSETS_DIR);
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
// Download the model
|
|
84
|
+
console.log('๐ฅ Downloading Vosk model (~40MB)...');
|
|
85
|
+
console.log(' From:', MODEL_URL);
|
|
86
|
+
await downloadFile(MODEL_URL, ZIP_PATH);
|
|
87
|
+
|
|
88
|
+
// Extract the model
|
|
89
|
+
unzipFile(ZIP_PATH, ASSETS_DIR);
|
|
90
|
+
|
|
91
|
+
// Rename extracted folder to expected name
|
|
92
|
+
const extractedFolder = fs
|
|
93
|
+
.readdirSync(ASSETS_DIR)
|
|
94
|
+
.find((f) => f.startsWith('vosk-model-small-en-us'));
|
|
95
|
+
|
|
96
|
+
if (extractedFolder) {
|
|
97
|
+
const extractedPath = path.join(ASSETS_DIR, extractedFolder);
|
|
98
|
+
fs.renameSync(extractedPath, MODEL_PATH);
|
|
99
|
+
console.log(`โ
Renamed ${extractedFolder} โ ${MODEL_NAME}`);
|
|
100
|
+
} else {
|
|
101
|
+
throw new Error('Extracted folder not found. The zip structure may have changed.');
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
// Clean up zip file
|
|
105
|
+
fs.unlinkSync(ZIP_PATH);
|
|
106
|
+
console.log('๐งน Cleaned up zip file');
|
|
107
|
+
|
|
108
|
+
console.log('\nโ
Vosk model setup complete!');
|
|
109
|
+
console.log(' Model location:', MODEL_PATH);
|
|
110
|
+
console.log(' You can now use wake word detection features.');
|
|
111
|
+
} catch (err) {
|
|
112
|
+
console.error('\nโ Setup failed:', err.message);
|
|
113
|
+
console.error('\n๐ก Manual setup:');
|
|
114
|
+
console.error(
|
|
115
|
+
' 1. Download: https://alphacephei.com/vosk/models/vosk-model-small-en-us-0.15.zip'
|
|
116
|
+
);
|
|
117
|
+
console.error(' 2. Extract to: assets/vosk-model/');
|
|
118
|
+
console.error(' 3. Rename folder to: model-en-us');
|
|
119
|
+
process.exit(1);
|
|
120
|
+
}
|
|
121
|
+
})();
|