@almadar/cli 0.3.1 → 0.3.3
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/bin/almadar +32 -1
- package/package.json +8 -6
- package/scripts/postinstall.js +41 -0
- package/shells/python-shell/.dockerignore +50 -0
- package/shells/python-shell/.env.example +55 -0
- package/shells/python-shell/Dockerfile +56 -0
- package/shells/python-shell/README.md +253 -0
- package/shells/python-shell/cloudbuild.yaml +76 -0
- package/shells/python-shell/docker-compose.yaml +57 -0
- package/shells/python-shell/pyproject.toml +28 -0
- package/shells/python-shell/scripts/deploy.sh +108 -0
- package/shells/python-shell/scripts/setup-secrets.sh +104 -0
- package/shells/python-shell/src/orbital_app/__init__.py +8 -0
- package/shells/python-shell/src/orbital_app/core/__init__.py +40 -0
- package/shells/python-shell/src/orbital_app/core/bindings.py +75 -0
- package/shells/python-shell/src/orbital_app/core/effect_executor.py +196 -0
- package/shells/python-shell/src/orbital_app/core/event_bus.py +119 -0
- package/shells/python-shell/src/orbital_app/core/event_router.py +38 -0
- package/shells/python-shell/src/orbital_app/core/firebase.py +112 -0
- package/shells/python-shell/src/orbital_app/core/repository.py +257 -0
- package/shells/python-shell/src/orbital_app/core/settings.py +74 -0
- package/shells/python-shell/src/orbital_app/core/websocket.py +202 -0
- package/shells/python-shell/src/orbital_app/main.py +108 -0
- package/shells/python-shell/src/orbital_app/middleware/__init__.py +18 -0
- package/shells/python-shell/src/orbital_app/middleware/auth.py +126 -0
- package/shells/python-shell/src/orbital_app/nn/__init__.py +28 -0
- package/shells/python-shell/src/orbital_app/nn/constraints.py +104 -0
- package/shells/python-shell/src/orbital_app/nn/forward.py +34 -0
- package/shells/python-shell/src/orbital_app/nn/training.py +101 -0
- package/shells/python-shell/src/orbital_app/tensor/__init__.py +46 -0
- package/shells/python-shell/src/orbital_app/tensor/contracts.py +112 -0
- package/shells/python-shell/src/orbital_app/tensor/ops.py +196 -0
- package/shells/python-shell/tests/conftest.py +63 -0
- package/shells/python-shell/tests/test_effect_executor.py +197 -0
- package/shells/python-shell/tests/test_event_bus.py +194 -0
- package/shells/python-shell/tests/test_generated_traits.py +268 -0
- package/shells/python-shell/tests/test_integration.py +347 -0
- package/shells/python-shell/tests/test_nn_builder.py +113 -0
- package/shells/python-shell/tests/test_nn_constraints.py +187 -0
- package/shells/python-shell/tests/test_nn_forward.py +98 -0
- package/shells/python-shell/tests/test_nn_training.py +130 -0
- package/shells/python-shell/tests/test_repository.py +151 -0
- package/shells/python-shell/tests/test_tensor_contracts.py +168 -0
- package/shells/python-shell/tests/test_tensor_ops.py +260 -0
- package/shells/typescript-shell/.env.example +30 -0
- package/shells/typescript-shell/.firebaserc.template +14 -0
- package/shells/typescript-shell/.prettierrc +7 -0
- package/shells/typescript-shell/Dockerfile +0 -0
- package/shells/typescript-shell/apphosting.yaml.template +0 -0
- package/shells/typescript-shell/firebase.json.template +0 -0
- package/shells/typescript-shell/firestore.indexes.json +4 -0
- package/shells/typescript-shell/firestore.rules.template +0 -0
- package/shells/typescript-shell/infra/aws/alb.tf +0 -0
- package/shells/typescript-shell/infra/aws/cloudfront.tf +0 -0
- package/shells/typescript-shell/infra/aws/ecs.tf +0 -0
- package/shells/typescript-shell/infra/aws/main.tf +0 -0
- package/shells/typescript-shell/infra/aws/rds.tf +0 -0
- package/shells/typescript-shell/infra/docker/Dockerfile.client +0 -0
- package/shells/typescript-shell/infra/docker/Dockerfile.server +0 -0
- package/shells/typescript-shell/infra/docker/docker-compose.prod.yml +45 -0
- package/shells/typescript-shell/infra/docker/docker-compose.yml +57 -0
- package/shells/typescript-shell/infra/docker/nginx.conf +0 -0
- package/shells/typescript-shell/infra/main.tf +0 -0
- package/shells/typescript-shell/infra/terraform/aws/alb.tf +0 -0
- package/shells/typescript-shell/infra/terraform/aws/cloudfront.tf +0 -0
- package/shells/typescript-shell/infra/terraform/aws/ecs.tf +0 -0
- package/shells/typescript-shell/infra/terraform/aws/main.tf +0 -0
- package/shells/typescript-shell/infra/terraform/aws/rds.tf +0 -0
- package/shells/typescript-shell/infra/terraform/main.tf +0 -0
- package/shells/typescript-shell/infra/terraform/variables.tf +0 -0
- package/shells/typescript-shell/infra/variables.tf +0 -0
- package/shells/typescript-shell/package-lock.json +15210 -0
- package/shells/typescript-shell/package.json +64 -0
- package/shells/typescript-shell/packages/client/.env.example +30 -0
- package/shells/typescript-shell/packages/client/index.html +13 -0
- package/shells/typescript-shell/packages/client/package.json +52 -0
- package/shells/typescript-shell/packages/client/postcss.config.js +6 -0
- package/shells/typescript-shell/packages/client/src/App.tsx +56 -0
- package/shells/typescript-shell/packages/client/src/clients/blaz-kelemnc/atoms/CreditExpirationAlert.stories.tsx +75 -0
- package/shells/typescript-shell/packages/client/src/clients/blaz-kelemnc/atoms/CreditExpirationAlert.tsx +157 -0
- package/shells/typescript-shell/packages/client/src/clients/blaz-kelemnc/atoms/CreditMeter.stories.tsx +155 -0
- package/shells/typescript-shell/packages/client/src/clients/blaz-kelemnc/atoms/CreditMeter.tsx +370 -0
- package/shells/typescript-shell/packages/client/src/clients/blaz-kelemnc/atoms/ExerciseVideoLink.stories.tsx +50 -0
- package/shells/typescript-shell/packages/client/src/clients/blaz-kelemnc/atoms/ExerciseVideoLink.tsx +143 -0
- package/shells/typescript-shell/packages/client/src/clients/blaz-kelemnc/atoms/ShareableLinkGenerator.stories.tsx +54 -0
- package/shells/typescript-shell/packages/client/src/clients/blaz-kelemnc/atoms/ShareableLinkGenerator.tsx +210 -0
- package/shells/typescript-shell/packages/client/src/clients/blaz-kelemnc/atoms/index.ts +4 -0
- package/shells/typescript-shell/packages/client/src/clients/blaz-kelemnc/index.ts +83 -0
- package/shells/typescript-shell/packages/client/src/clients/blaz-kelemnc/molecules/BodyMeasurementInput.stories.tsx +117 -0
- package/shells/typescript-shell/packages/client/src/clients/blaz-kelemnc/molecules/BodyMeasurementInput.tsx +343 -0
- package/shells/typescript-shell/packages/client/src/clients/blaz-kelemnc/molecules/DailyProgressInput.stories.tsx +82 -0
- package/shells/typescript-shell/packages/client/src/clients/blaz-kelemnc/molecules/DailyProgressInput.tsx +345 -0
- package/shells/typescript-shell/packages/client/src/clients/blaz-kelemnc/molecules/GroupSessionCard.stories.tsx +155 -0
- package/shells/typescript-shell/packages/client/src/clients/blaz-kelemnc/molecules/GroupSessionCard.tsx +319 -0
- package/shells/typescript-shell/packages/client/src/clients/blaz-kelemnc/molecules/LiftTracker.stories.tsx +110 -0
- package/shells/typescript-shell/packages/client/src/clients/blaz-kelemnc/molecules/LiftTracker.tsx +395 -0
- package/shells/typescript-shell/packages/client/src/clients/blaz-kelemnc/molecules/MealPlanCard.stories.tsx +132 -0
- package/shells/typescript-shell/packages/client/src/clients/blaz-kelemnc/molecules/MealPlanCard.tsx +394 -0
- package/shells/typescript-shell/packages/client/src/clients/blaz-kelemnc/molecules/NutritionSummary.stories.tsx +127 -0
- package/shells/typescript-shell/packages/client/src/clients/blaz-kelemnc/molecules/NutritionSummary.tsx +360 -0
- package/shells/typescript-shell/packages/client/src/clients/blaz-kelemnc/molecules/ProgressChart.stories.tsx +119 -0
- package/shells/typescript-shell/packages/client/src/clients/blaz-kelemnc/molecules/ProgressChart.tsx +377 -0
- package/shells/typescript-shell/packages/client/src/clients/blaz-kelemnc/molecules/SpecialExerciseCard.stories.tsx +115 -0
- package/shells/typescript-shell/packages/client/src/clients/blaz-kelemnc/molecules/SpecialExerciseCard.tsx +294 -0
- package/shells/typescript-shell/packages/client/src/clients/blaz-kelemnc/molecules/TraineeCard.stories.tsx +139 -0
- package/shells/typescript-shell/packages/client/src/clients/blaz-kelemnc/molecules/TraineeCard.tsx +306 -0
- package/shells/typescript-shell/packages/client/src/clients/blaz-kelemnc/molecules/WorkoutPlanCard.stories.tsx +140 -0
- package/shells/typescript-shell/packages/client/src/clients/blaz-kelemnc/molecules/WorkoutPlanCard.tsx +379 -0
- package/shells/typescript-shell/packages/client/src/clients/blaz-kelemnc/molecules/index.ts +10 -0
- package/shells/typescript-shell/packages/client/src/clients/blaz-kelemnc/organisms/AIAnalysisPanel.stories.tsx +171 -0
- package/shells/typescript-shell/packages/client/src/clients/blaz-kelemnc/organisms/AIAnalysisPanel.tsx +257 -0
- package/shells/typescript-shell/packages/client/src/clients/blaz-kelemnc/organisms/KinesiologyExamForm.stories.tsx +157 -0
- package/shells/typescript-shell/packages/client/src/clients/blaz-kelemnc/organisms/KinesiologyExamForm.tsx +383 -0
- package/shells/typescript-shell/packages/client/src/clients/blaz-kelemnc/organisms/SessionScheduler.stories.tsx +249 -0
- package/shells/typescript-shell/packages/client/src/clients/blaz-kelemnc/organisms/SessionScheduler.tsx +637 -0
- package/shells/typescript-shell/packages/client/src/clients/blaz-kelemnc/organisms/TraineeComparison.stories.tsx +221 -0
- package/shells/typescript-shell/packages/client/src/clients/blaz-kelemnc/organisms/TraineeComparison.tsx +438 -0
- package/shells/typescript-shell/packages/client/src/clients/blaz-kelemnc/organisms/WeeklyCalendar.stories.tsx +208 -0
- package/shells/typescript-shell/packages/client/src/clients/blaz-kelemnc/organisms/WeeklyCalendar.tsx +380 -0
- package/shells/typescript-shell/packages/client/src/clients/blaz-kelemnc/organisms/index.ts +5 -0
- package/shells/typescript-shell/packages/client/src/clients/blaz-kelemnc/templates/CreditsTemplate.stories.tsx +243 -0
- package/shells/typescript-shell/packages/client/src/clients/blaz-kelemnc/templates/CreditsTemplate.tsx +496 -0
- package/shells/typescript-shell/packages/client/src/clients/blaz-kelemnc/templates/FitnessTemplate.stories.tsx +237 -0
- package/shells/typescript-shell/packages/client/src/clients/blaz-kelemnc/templates/FitnessTemplate.tsx +457 -0
- package/shells/typescript-shell/packages/client/src/clients/blaz-kelemnc/templates/MealPlanDetailTemplate.stories.tsx +184 -0
- package/shells/typescript-shell/packages/client/src/clients/blaz-kelemnc/templates/MealPlanDetailTemplate.tsx +414 -0
- package/shells/typescript-shell/packages/client/src/clients/blaz-kelemnc/templates/MealPlansTemplate.stories.tsx +198 -0
- package/shells/typescript-shell/packages/client/src/clients/blaz-kelemnc/templates/MealPlansTemplate.tsx +296 -0
- package/shells/typescript-shell/packages/client/src/clients/blaz-kelemnc/templates/ProgressTemplate.stories.tsx +242 -0
- package/shells/typescript-shell/packages/client/src/clients/blaz-kelemnc/templates/ProgressTemplate.tsx +497 -0
- package/shells/typescript-shell/packages/client/src/clients/blaz-kelemnc/templates/ScheduleTemplate.stories.tsx +267 -0
- package/shells/typescript-shell/packages/client/src/clients/blaz-kelemnc/templates/ScheduleTemplate.tsx +424 -0
- package/shells/typescript-shell/packages/client/src/clients/blaz-kelemnc/templates/SessionDetailTemplate.stories.tsx +214 -0
- package/shells/typescript-shell/packages/client/src/clients/blaz-kelemnc/templates/SessionDetailTemplate.tsx +518 -0
- package/shells/typescript-shell/packages/client/src/clients/blaz-kelemnc/templates/SessionsTemplate.stories.tsx +207 -0
- package/shells/typescript-shell/packages/client/src/clients/blaz-kelemnc/templates/SessionsTemplate.tsx +508 -0
- package/shells/typescript-shell/packages/client/src/clients/blaz-kelemnc/templates/TraineeDetailTemplate.stories.tsx +178 -0
- package/shells/typescript-shell/packages/client/src/clients/blaz-kelemnc/templates/TraineeDetailTemplate.tsx +396 -0
- package/shells/typescript-shell/packages/client/src/clients/blaz-kelemnc/templates/TraineesTemplate.stories.tsx +168 -0
- package/shells/typescript-shell/packages/client/src/clients/blaz-kelemnc/templates/TraineesTemplate.tsx +429 -0
- package/shells/typescript-shell/packages/client/src/clients/blaz-kelemnc/templates/index.ts +44 -0
- package/shells/typescript-shell/packages/client/src/clients/inspection-system/atoms/LawReferenceBadge.stories.tsx +78 -0
- package/shells/typescript-shell/packages/client/src/clients/inspection-system/atoms/LawReferenceBadge.tsx +87 -0
- package/shells/typescript-shell/packages/client/src/clients/inspection-system/atoms/PhaseIndicator.stories.tsx +91 -0
- package/shells/typescript-shell/packages/client/src/clients/inspection-system/atoms/PhaseIndicator.tsx +142 -0
- package/shells/typescript-shell/packages/client/src/clients/inspection-system/atoms/index.ts +8 -0
- package/shells/typescript-shell/packages/client/src/clients/inspection-system/configs/index.ts +79 -0
- package/shells/typescript-shell/packages/client/src/clients/inspection-system/configs/tabs/T-001-uvod.json +361 -0
- package/shells/typescript-shell/packages/client/src/clients/inspection-system/configs/tabs/T-001-uvod.ts +361 -0
- package/shells/typescript-shell/packages/client/src/clients/inspection-system/configs/tabs/T-002-podjetje.json +115 -0
- package/shells/typescript-shell/packages/client/src/clients/inspection-system/configs/tabs/T-002-podjetje.ts +115 -0
- package/shells/typescript-shell/packages/client/src/clients/inspection-system/configs/tabs/T-003-udelezenci.json +78 -0
- package/shells/typescript-shell/packages/client/src/clients/inspection-system/configs/tabs/T-003-udelezenci.ts +78 -0
- package/shells/typescript-shell/packages/client/src/clients/inspection-system/configs/tabs/T-004-izbira-podrocja.json +85 -0
- package/shells/typescript-shell/packages/client/src/clients/inspection-system/configs/tabs/T-004-izbira-podrocja.ts +94 -0
- package/shells/typescript-shell/packages/client/src/clients/inspection-system/configs/tabs/T-005-trgovina.json +1056 -0
- package/shells/typescript-shell/packages/client/src/clients/inspection-system/configs/tabs/T-005-trgovina.ts +1056 -0
- package/shells/typescript-shell/packages/client/src/clients/inspection-system/configs/tabs/T-006-ugotovitve.json +128 -0
- package/shells/typescript-shell/packages/client/src/clients/inspection-system/configs/tabs/T-006-ugotovitve.ts +128 -0
- package/shells/typescript-shell/packages/client/src/clients/inspection-system/configs/tabs/T-007-odlocbe.json +136 -0
- package/shells/typescript-shell/packages/client/src/clients/inspection-system/configs/tabs/T-007-odlocbe.ts +136 -0
- package/shells/typescript-shell/packages/client/src/clients/inspection-system/configs/tabs/T-008-pripombe.json +148 -0
- package/shells/typescript-shell/packages/client/src/clients/inspection-system/configs/tabs/T-008-pripombe.ts +148 -0
- package/shells/typescript-shell/packages/client/src/clients/inspection-system/configs/tabs/T-009-zakljucek.json +207 -0
- package/shells/typescript-shell/packages/client/src/clients/inspection-system/configs/tabs/T-009-zakljucek.ts +207 -0
- package/shells/typescript-shell/packages/client/src/clients/inspection-system/configs/tabs/T2-1-oznacevanje-cen.json +1265 -0
- package/shells/typescript-shell/packages/client/src/clients/inspection-system/configs/tabs/T2-1-oznacevanje-cen.ts +1265 -0
- package/shells/typescript-shell/packages/client/src/clients/inspection-system/index.ts +137 -0
- package/shells/typescript-shell/packages/client/src/clients/inspection-system/molecules/CardSelector.stories.tsx +128 -0
- package/shells/typescript-shell/packages/client/src/clients/inspection-system/molecules/CardSelector.tsx +174 -0
- package/shells/typescript-shell/packages/client/src/clients/inspection-system/molecules/ComplianceSummary.stories.tsx +115 -0
- package/shells/typescript-shell/packages/client/src/clients/inspection-system/molecules/ComplianceSummary.tsx +263 -0
- package/shells/typescript-shell/packages/client/src/clients/inspection-system/molecules/ConditionalField.tsx +254 -0
- package/shells/typescript-shell/packages/client/src/clients/inspection-system/molecules/DocumentPreview.tsx +249 -0
- package/shells/typescript-shell/packages/client/src/clients/inspection-system/molecules/EntitySearch.tsx +290 -0
- package/shells/typescript-shell/packages/client/src/clients/inspection-system/molecules/InspectionTimeline.stories.tsx +138 -0
- package/shells/typescript-shell/packages/client/src/clients/inspection-system/molecules/InspectionTimeline.tsx +253 -0
- package/shells/typescript-shell/packages/client/src/clients/inspection-system/molecules/ObjectionRecorder.tsx +213 -0
- package/shells/typescript-shell/packages/client/src/clients/inspection-system/molecules/ParticipantList.stories.tsx +86 -0
- package/shells/typescript-shell/packages/client/src/clients/inspection-system/molecules/ParticipantList.tsx +227 -0
- package/shells/typescript-shell/packages/client/src/clients/inspection-system/molecules/PhotoAttachment.tsx +276 -0
- package/shells/typescript-shell/packages/client/src/clients/inspection-system/molecules/ProgressHeader.stories.tsx +89 -0
- package/shells/typescript-shell/packages/client/src/clients/inspection-system/molecules/ProgressHeader.tsx +157 -0
- package/shells/typescript-shell/packages/client/src/clients/inspection-system/molecules/RepeatableFormSection.tsx +189 -0
- package/shells/typescript-shell/packages/client/src/clients/inspection-system/molecules/RuleCheckItem.stories.tsx +118 -0
- package/shells/typescript-shell/packages/client/src/clients/inspection-system/molecules/RuleCheckItem.tsx +237 -0
- package/shells/typescript-shell/packages/client/src/clients/inspection-system/molecules/index.ts +18 -0
- package/shells/typescript-shell/packages/client/src/clients/inspection-system/organisms/FloatingActionMenu.stories.tsx +75 -0
- package/shells/typescript-shell/packages/client/src/clients/inspection-system/organisms/FloatingActionMenu.tsx +197 -0
- package/shells/typescript-shell/packages/client/src/clients/inspection-system/organisms/SignatureCapture.stories.tsx +96 -0
- package/shells/typescript-shell/packages/client/src/clients/inspection-system/organisms/SignatureCapture.tsx +278 -0
- package/shells/typescript-shell/packages/client/src/clients/inspection-system/organisms/index.ts +8 -0
- package/shells/typescript-shell/packages/client/src/clients/inspection-system/templates/CompaniesTemplate.stories.tsx +107 -0
- package/shells/typescript-shell/packages/client/src/clients/inspection-system/templates/CompaniesTemplate.tsx +266 -0
- package/shells/typescript-shell/packages/client/src/clients/inspection-system/templates/InspectionFormDemoTemplate.stories.tsx +607 -0
- package/shells/typescript-shell/packages/client/src/clients/inspection-system/templates/InspectionFormDemoTemplate.tsx +1428 -0
- package/shells/typescript-shell/packages/client/src/clients/inspection-system/templates/InspectionProcessTemplate.stories.tsx +713 -0
- package/shells/typescript-shell/packages/client/src/clients/inspection-system/templates/InspectionProcessTemplate.tsx +1582 -0
- package/shells/typescript-shell/packages/client/src/clients/inspection-system/templates/InspectionWizardTemplate.stories.tsx +174 -0
- package/shells/typescript-shell/packages/client/src/clients/inspection-system/templates/InspectionWizardTemplate.tsx +264 -0
- package/shells/typescript-shell/packages/client/src/clients/inspection-system/templates/InspectionsTemplate.stories.tsx +129 -0
- package/shells/typescript-shell/packages/client/src/clients/inspection-system/templates/InspectionsTemplate.tsx +287 -0
- package/shells/typescript-shell/packages/client/src/clients/inspection-system/templates/InspectorsTemplate.stories.tsx +94 -0
- package/shells/typescript-shell/packages/client/src/clients/inspection-system/templates/InspectorsTemplate.tsx +255 -0
- package/shells/typescript-shell/packages/client/src/clients/inspection-system/templates/index.ts +47 -0
- package/shells/typescript-shell/packages/client/src/clients/kflow/atoms/MindMapConnections.stories.tsx +82 -0
- package/shells/typescript-shell/packages/client/src/clients/kflow/atoms/MindMapConnections.tsx +75 -0
- package/shells/typescript-shell/packages/client/src/clients/kflow/atoms/index.ts +2 -0
- package/shells/typescript-shell/packages/client/src/clients/kflow/index.ts +96 -0
- package/shells/typescript-shell/packages/client/src/clients/kflow/molecules/ConceptMetaTags.stories.tsx +64 -0
- package/shells/typescript-shell/packages/client/src/clients/kflow/molecules/ConceptMetaTags.tsx +77 -0
- package/shells/typescript-shell/packages/client/src/clients/kflow/molecules/GraphLegend.stories.tsx +100 -0
- package/shells/typescript-shell/packages/client/src/clients/kflow/molecules/GraphLegend.tsx +120 -0
- package/shells/typescript-shell/packages/client/src/clients/kflow/molecules/LayerNavigator.stories.tsx +109 -0
- package/shells/typescript-shell/packages/client/src/clients/kflow/molecules/LayerNavigator.tsx +157 -0
- package/shells/typescript-shell/packages/client/src/clients/kflow/molecules/LearningGoalDisplay.stories.tsx +62 -0
- package/shells/typescript-shell/packages/client/src/clients/kflow/molecules/LearningGoalDisplay.tsx +138 -0
- package/shells/typescript-shell/packages/client/src/clients/kflow/molecules/MindMapHeader.tsx +47 -0
- package/shells/typescript-shell/packages/client/src/clients/kflow/molecules/MindMapNode.stories.tsx +212 -0
- package/shells/typescript-shell/packages/client/src/clients/kflow/molecules/MindMapNode.tsx +294 -0
- package/shells/typescript-shell/packages/client/src/clients/kflow/molecules/NoteContent.stories.tsx +98 -0
- package/shells/typescript-shell/packages/client/src/clients/kflow/molecules/NoteContent.tsx +163 -0
- package/shells/typescript-shell/packages/client/src/clients/kflow/molecules/NoteListItem.stories.tsx +196 -0
- package/shells/typescript-shell/packages/client/src/clients/kflow/molecules/NoteListItem.tsx +239 -0
- package/shells/typescript-shell/packages/client/src/clients/kflow/molecules/QuizBlock.tsx +3 -0
- package/shells/typescript-shell/packages/client/src/clients/kflow/molecules/StreamingDisplay.stories.tsx +132 -0
- package/shells/typescript-shell/packages/client/src/clients/kflow/molecules/StreamingDisplay.tsx +232 -0
- package/shells/typescript-shell/packages/client/src/clients/kflow/molecules/index.ts +28 -0
- package/shells/typescript-shell/packages/client/src/clients/kflow/molecules/learning/ActivationBlock.stories.tsx +71 -0
- package/shells/typescript-shell/packages/client/src/clients/kflow/molecules/learning/ActivationBlock.tsx +127 -0
- package/shells/typescript-shell/packages/client/src/clients/kflow/molecules/learning/BloomQuizBlock.stories.tsx +154 -0
- package/shells/typescript-shell/packages/client/src/clients/kflow/molecules/learning/BloomQuizBlock.tsx +232 -0
- package/shells/typescript-shell/packages/client/src/clients/kflow/molecules/learning/ConnectionBlock.stories.tsx +57 -0
- package/shells/typescript-shell/packages/client/src/clients/kflow/molecules/learning/ConnectionBlock.tsx +60 -0
- package/shells/typescript-shell/packages/client/src/clients/kflow/molecules/learning/QuizBlock.tsx +138 -0
- package/shells/typescript-shell/packages/client/src/clients/kflow/molecules/learning/ReflectionBlock.stories.tsx +90 -0
- package/shells/typescript-shell/packages/client/src/clients/kflow/molecules/learning/ReflectionBlock.tsx +151 -0
- package/shells/typescript-shell/packages/client/src/clients/kflow/molecules/learning/index.ts +14 -0
- package/shells/typescript-shell/packages/client/src/clients/kflow/molecules/markdown/CodeBlock.stories.tsx +188 -0
- package/shells/typescript-shell/packages/client/src/clients/kflow/molecules/markdown/CodeBlock.tsx +165 -0
- package/shells/typescript-shell/packages/client/src/clients/kflow/molecules/markdown/MarkdownContent.stories.tsx +160 -0
- package/shells/typescript-shell/packages/client/src/clients/kflow/molecules/markdown/MarkdownContent.tsx +131 -0
- package/shells/typescript-shell/packages/client/src/clients/kflow/molecules/markdown/index.ts +5 -0
- package/shells/typescript-shell/packages/client/src/clients/kflow/organisms/ConceptCard.stories.tsx +155 -0
- package/shells/typescript-shell/packages/client/src/clients/kflow/organisms/ConceptCard.tsx +301 -0
- package/shells/typescript-shell/packages/client/src/clients/kflow/organisms/FlashCard.stories.tsx +105 -0
- package/shells/typescript-shell/packages/client/src/clients/kflow/organisms/FlashCard.tsx +200 -0
- package/shells/typescript-shell/packages/client/src/clients/kflow/organisms/FlashCardStack.stories.tsx +97 -0
- package/shells/typescript-shell/packages/client/src/clients/kflow/organisms/FlashCardStack.tsx +163 -0
- package/shells/typescript-shell/packages/client/src/clients/kflow/organisms/FlashCardsDisplay.tsx +236 -0
- package/shells/typescript-shell/packages/client/src/clients/kflow/organisms/ForceDirectedGraph.stories.tsx +230 -0
- package/shells/typescript-shell/packages/client/src/clients/kflow/organisms/ForceDirectedGraph.tsx +488 -0
- package/shells/typescript-shell/packages/client/src/clients/kflow/organisms/MindMapCanvas.stories.tsx +256 -0
- package/shells/typescript-shell/packages/client/src/clients/kflow/organisms/MindMapCanvas.tsx +185 -0
- package/shells/typescript-shell/packages/client/src/clients/kflow/organisms/NoteList.stories.tsx +178 -0
- package/shells/typescript-shell/packages/client/src/clients/kflow/organisms/NoteList.tsx +209 -0
- package/shells/typescript-shell/packages/client/src/clients/kflow/organisms/SegmentRenderer.stories.tsx +238 -0
- package/shells/typescript-shell/packages/client/src/clients/kflow/organisms/SegmentRenderer.tsx +196 -0
- package/shells/typescript-shell/packages/client/src/clients/kflow/organisms/index.ts +18 -0
- package/shells/typescript-shell/packages/client/src/clients/kflow/patterns/component-mapping.json +122 -0
- package/shells/typescript-shell/packages/client/src/clients/kflow/patterns/event-contracts.json +145 -0
- package/shells/typescript-shell/packages/client/src/clients/kflow/patterns/index.ts +46 -0
- package/shells/typescript-shell/packages/client/src/clients/kflow/templates/ConceptDetailTemplate.stories.tsx +148 -0
- package/shells/typescript-shell/packages/client/src/clients/kflow/templates/ConceptDetailTemplate.tsx +266 -0
- package/shells/typescript-shell/packages/client/src/clients/kflow/templates/KnowledgeGraphTemplate.stories.tsx +215 -0
- package/shells/typescript-shell/packages/client/src/clients/kflow/templates/KnowledgeGraphTemplate.tsx +302 -0
- package/shells/typescript-shell/packages/client/src/clients/kflow/templates/LessonTemplate.stories.tsx +161 -0
- package/shells/typescript-shell/packages/client/src/clients/kflow/templates/LessonTemplate.tsx +264 -0
- package/shells/typescript-shell/packages/client/src/clients/kflow/templates/index.ts +4 -0
- package/shells/typescript-shell/packages/client/src/clients/kflow/types/index.ts +9 -0
- package/shells/typescript-shell/packages/client/src/clients/kflow/types/mindMapTypes.ts +13 -0
- package/shells/typescript-shell/packages/client/src/clients/kflow/utils/index.ts +6 -0
- package/shells/typescript-shell/packages/client/src/clients/kflow/utils/parseLessonSegments.ts +191 -0
- package/shells/typescript-shell/packages/client/src/clients/winning-11/atoms/CareIndicator.tsx +113 -0
- package/shells/typescript-shell/packages/client/src/clients/winning-11/atoms/GrowthMeter.tsx +216 -0
- package/shells/typescript-shell/packages/client/src/clients/winning-11/atoms/SeasonIndicator.tsx +140 -0
- package/shells/typescript-shell/packages/client/src/clients/winning-11/atoms/TrustMeter.tsx +221 -0
- package/shells/typescript-shell/packages/client/src/clients/winning-11/atoms/index.ts +15 -0
- package/shells/typescript-shell/packages/client/src/clients/winning-11/index.ts +159 -0
- package/shells/typescript-shell/packages/client/src/clients/winning-11/molecules/HarvestCard.tsx +254 -0
- package/shells/typescript-shell/packages/client/src/clients/winning-11/molecules/PlantCard.tsx +412 -0
- package/shells/typescript-shell/packages/client/src/clients/winning-11/molecules/WeatherWidget.tsx +229 -0
- package/shells/typescript-shell/packages/client/src/clients/winning-11/molecules/index.ts +12 -0
- package/shells/typescript-shell/packages/client/src/clients/winning-11/organisms/GardenView.tsx +344 -0
- package/shells/typescript-shell/packages/client/src/clients/winning-11/organisms/index.ts +6 -0
- package/shells/typescript-shell/packages/client/src/clients/winning-11/templates/AdminDashboardTemplate.tsx +423 -0
- package/shells/typescript-shell/packages/client/src/clients/winning-11/templates/AssessmentTemplate.tsx +409 -0
- package/shells/typescript-shell/packages/client/src/clients/winning-11/templates/ConnectionsTemplate.tsx +465 -0
- package/shells/typescript-shell/packages/client/src/clients/winning-11/templates/GraphIntelligenceTemplate.tsx +388 -0
- package/shells/typescript-shell/packages/client/src/clients/winning-11/templates/InvitesTemplate.tsx +359 -0
- package/shells/typescript-shell/packages/client/src/clients/winning-11/templates/ProjectDetailTemplate.tsx +483 -0
- package/shells/typescript-shell/packages/client/src/clients/winning-11/templates/ProjectsTemplate.tsx +474 -0
- package/shells/typescript-shell/packages/client/src/clients/winning-11/templates/RelationshipGardenTemplate.tsx +198 -0
- package/shells/typescript-shell/packages/client/src/clients/winning-11/templates/SeedNetworkTemplate.tsx +410 -0
- package/shells/typescript-shell/packages/client/src/clients/winning-11/templates/SuggestionsTemplate.tsx +352 -0
- package/shells/typescript-shell/packages/client/src/clients/winning-11/templates/TeamDetailTemplate.tsx +494 -0
- package/shells/typescript-shell/packages/client/src/clients/winning-11/templates/TeamMembersTemplate.tsx +427 -0
- package/shells/typescript-shell/packages/client/src/clients/winning-11/templates/TeamsTemplate.tsx +424 -0
- package/shells/typescript-shell/packages/client/src/clients/winning-11/templates/TrustIntelligenceTemplate.tsx +312 -0
- package/shells/typescript-shell/packages/client/src/clients/winning-11/templates/UserProfileTemplate.tsx +308 -0
- package/shells/typescript-shell/packages/client/src/clients/winning-11/templates/UsersTemplate.tsx +303 -0
- package/shells/typescript-shell/packages/client/src/components/atoms/Avatar.tsx +226 -0
- package/shells/typescript-shell/packages/client/src/components/atoms/Badge.tsx +79 -0
- package/shells/typescript-shell/packages/client/src/components/atoms/Box.tsx +262 -0
- package/shells/typescript-shell/packages/client/src/components/atoms/Button.tsx +150 -0
- package/shells/typescript-shell/packages/client/src/components/atoms/Card.tsx +151 -0
- package/shells/typescript-shell/packages/client/src/components/atoms/Center.tsx +67 -0
- package/shells/typescript-shell/packages/client/src/components/atoms/Checkbox.tsx +46 -0
- package/shells/typescript-shell/packages/client/src/components/atoms/ConditionalWrapper.tsx +139 -0
- package/shells/typescript-shell/packages/client/src/components/atoms/Divider.tsx +102 -0
- package/shells/typescript-shell/packages/client/src/components/atoms/Icon.tsx +224 -0
- package/shells/typescript-shell/packages/client/src/components/atoms/Input.tsx +192 -0
- package/shells/typescript-shell/packages/client/src/components/atoms/Label.tsx +26 -0
- package/shells/typescript-shell/packages/client/src/components/atoms/LawReferenceTooltip.tsx +190 -0
- package/shells/typescript-shell/packages/client/src/components/atoms/Overlay.tsx +37 -0
- package/shells/typescript-shell/packages/client/src/components/atoms/ProgressBar.tsx +256 -0
- package/shells/typescript-shell/packages/client/src/components/atoms/Radio.tsx +164 -0
- package/shells/typescript-shell/packages/client/src/components/atoms/Select.tsx +62 -0
- package/shells/typescript-shell/packages/client/src/components/atoms/Spacer.tsx +68 -0
- package/shells/typescript-shell/packages/client/src/components/atoms/Spinner.tsx +32 -0
- package/shells/typescript-shell/packages/client/src/components/atoms/Stack.tsx +151 -0
- package/shells/typescript-shell/packages/client/src/components/atoms/Switch.tsx +91 -0
- package/shells/typescript-shell/packages/client/src/components/atoms/TextHighlight.tsx +111 -0
- package/shells/typescript-shell/packages/client/src/components/atoms/Textarea.tsx +32 -0
- package/shells/typescript-shell/packages/client/src/components/atoms/ThemeSelector.tsx +128 -0
- package/shells/typescript-shell/packages/client/src/components/atoms/ThemeToggle.tsx +91 -0
- package/shells/typescript-shell/packages/client/src/components/atoms/Typography.tsx +207 -0
- package/shells/typescript-shell/packages/client/src/components/atoms/game/ControlButton.tsx +118 -0
- package/shells/typescript-shell/packages/client/src/components/atoms/game/HealthBar.tsx +93 -0
- package/shells/typescript-shell/packages/client/src/components/atoms/game/ScoreDisplay.tsx +86 -0
- package/shells/typescript-shell/packages/client/src/components/atoms/game/Sprite.tsx +188 -0
- package/shells/typescript-shell/packages/client/src/components/atoms/game/index.ts +12 -0
- package/shells/typescript-shell/packages/client/src/components/atoms/index.ts +88 -0
- package/shells/typescript-shell/packages/client/src/components/index.ts +4 -0
- package/shells/typescript-shell/packages/client/src/components/molecules/Accordion.tsx +223 -0
- package/shells/typescript-shell/packages/client/src/components/molecules/Alert.tsx +117 -0
- package/shells/typescript-shell/packages/client/src/components/molecules/Breadcrumb.tsx +159 -0
- package/shells/typescript-shell/packages/client/src/components/molecules/ButtonGroup.tsx +226 -0
- package/shells/typescript-shell/packages/client/src/components/molecules/Card.tsx +135 -0
- package/shells/typescript-shell/packages/client/src/components/molecules/Container.tsx +78 -0
- package/shells/typescript-shell/packages/client/src/components/molecules/Drawer.tsx +254 -0
- package/shells/typescript-shell/packages/client/src/components/molecules/EmptyState.tsx +132 -0
- package/shells/typescript-shell/packages/client/src/components/molecules/ErrorState.tsx +48 -0
- package/shells/typescript-shell/packages/client/src/components/molecules/FilterGroup.tsx +529 -0
- package/shells/typescript-shell/packages/client/src/components/molecules/Flex.tsx +131 -0
- package/shells/typescript-shell/packages/client/src/components/molecules/FloatingActionButton.tsx +264 -0
- package/shells/typescript-shell/packages/client/src/components/molecules/FormField.tsx +48 -0
- package/shells/typescript-shell/packages/client/src/components/molecules/FormSectionHeader.tsx +139 -0
- package/shells/typescript-shell/packages/client/src/components/molecules/Grid.tsx +194 -0
- package/shells/typescript-shell/packages/client/src/components/molecules/InputGroup.tsx +109 -0
- package/shells/typescript-shell/packages/client/src/components/molecules/LoadingState.tsx +39 -0
- package/shells/typescript-shell/packages/client/src/components/molecules/Menu.tsx +266 -0
- package/shells/typescript-shell/packages/client/src/components/molecules/Modal.tsx +171 -0
- package/shells/typescript-shell/packages/client/src/components/molecules/Pagination.tsx +254 -0
- package/shells/typescript-shell/packages/client/src/components/molecules/Popover.tsx +201 -0
- package/shells/typescript-shell/packages/client/src/components/molecules/RelationSelect.tsx +328 -0
- package/shells/typescript-shell/packages/client/src/components/molecules/RepeatableFormSection.tsx +236 -0
- package/shells/typescript-shell/packages/client/src/components/molecules/SearchInput.tsx +196 -0
- package/shells/typescript-shell/packages/client/src/components/molecules/SidePanel.tsx +116 -0
- package/shells/typescript-shell/packages/client/src/components/molecules/SimpleGrid.tsx +90 -0
- package/shells/typescript-shell/packages/client/src/components/molecules/Tabs.tsx +208 -0
- package/shells/typescript-shell/packages/client/src/components/molecules/Toast.tsx +154 -0
- package/shells/typescript-shell/packages/client/src/components/molecules/Tooltip.tsx +172 -0
- package/shells/typescript-shell/packages/client/src/components/molecules/ViolationAlert.tsx +253 -0
- package/shells/typescript-shell/packages/client/src/components/molecules/WizardNavigation.tsx +166 -0
- package/shells/typescript-shell/packages/client/src/components/molecules/WizardProgress.tsx +140 -0
- package/shells/typescript-shell/packages/client/src/components/molecules/game/ActionButtons.tsx +148 -0
- package/shells/typescript-shell/packages/client/src/components/molecules/game/DPad.tsx +98 -0
- package/shells/typescript-shell/packages/client/src/components/molecules/game/StatBadge.tsx +104 -0
- package/shells/typescript-shell/packages/client/src/components/molecules/game/index.ts +11 -0
- package/shells/typescript-shell/packages/client/src/components/molecules/index.ts +36 -0
- package/shells/typescript-shell/packages/client/src/components/organisms/CardGrid.tsx +479 -0
- package/shells/typescript-shell/packages/client/src/components/organisms/ComponentPatterns.tsx +1000 -0
- package/shells/typescript-shell/packages/client/src/components/organisms/ConfirmDialog.tsx +165 -0
- package/shells/typescript-shell/packages/client/src/components/organisms/CustomPattern.tsx +479 -0
- package/shells/typescript-shell/packages/client/src/components/organisms/DataTable.tsx +816 -0
- package/shells/typescript-shell/packages/client/src/components/organisms/DetailPanel.tsx +626 -0
- package/shells/typescript-shell/packages/client/src/components/organisms/DrawerSlot.tsx +86 -0
- package/shells/typescript-shell/packages/client/src/components/organisms/Form.tsx +968 -0
- package/shells/typescript-shell/packages/client/src/components/organisms/FormSection.tsx +168 -0
- package/shells/typescript-shell/packages/client/src/components/organisms/Header.tsx +263 -0
- package/shells/typescript-shell/packages/client/src/components/organisms/LayoutPatterns.tsx +325 -0
- package/shells/typescript-shell/packages/client/src/components/organisms/List.tsx +838 -0
- package/shells/typescript-shell/packages/client/src/components/organisms/MasterDetail.tsx +85 -0
- package/shells/typescript-shell/packages/client/src/components/organisms/ModalSlot.tsx +81 -0
- package/shells/typescript-shell/packages/client/src/components/organisms/Navigation.tsx +157 -0
- package/shells/typescript-shell/packages/client/src/components/organisms/OrbitalVisualization.tsx +480 -0
- package/shells/typescript-shell/packages/client/src/components/organisms/PageHeader.tsx +244 -0
- package/shells/typescript-shell/packages/client/src/components/organisms/Section.tsx +131 -0
- package/shells/typescript-shell/packages/client/src/components/organisms/Sidebar.tsx +270 -0
- package/shells/typescript-shell/packages/client/src/components/organisms/Split.tsx +121 -0
- package/shells/typescript-shell/packages/client/src/components/organisms/StatCard.tsx +360 -0
- package/shells/typescript-shell/packages/client/src/components/organisms/Table.tsx +394 -0
- package/shells/typescript-shell/packages/client/src/components/organisms/ToastSlot.tsx +106 -0
- package/shells/typescript-shell/packages/client/src/components/organisms/UISlotRenderer.tsx +647 -0
- package/shells/typescript-shell/packages/client/src/components/organisms/WizardContainer.tsx +369 -0
- package/shells/typescript-shell/packages/client/src/components/organisms/debug/RuntimeDebugger.css +102 -0
- package/shells/typescript-shell/packages/client/src/components/organisms/debug/RuntimeDebugger.tsx +176 -0
- package/shells/typescript-shell/packages/client/src/components/organisms/debug/hooks/useDebugData.ts +100 -0
- package/shells/typescript-shell/packages/client/src/components/organisms/debug/index.ts +10 -0
- package/shells/typescript-shell/packages/client/src/components/organisms/debug/tabs/EntitiesTab.tsx +130 -0
- package/shells/typescript-shell/packages/client/src/components/organisms/debug/tabs/EventFlowTab.tsx +135 -0
- package/shells/typescript-shell/packages/client/src/components/organisms/debug/tabs/GuardsPanel.tsx +124 -0
- package/shells/typescript-shell/packages/client/src/components/organisms/debug/tabs/TicksTab.tsx +100 -0
- package/shells/typescript-shell/packages/client/src/components/organisms/debug/tabs/TraitsTab.tsx +102 -0
- package/shells/typescript-shell/packages/client/src/components/organisms/game/CollisionDetector.tsx +195 -0
- package/shells/typescript-shell/packages/client/src/components/organisms/game/DialogueBox.tsx +279 -0
- package/shells/typescript-shell/packages/client/src/components/organisms/game/GameCanvas.tsx +550 -0
- package/shells/typescript-shell/packages/client/src/components/organisms/game/GameControls.tsx +173 -0
- package/shells/typescript-shell/packages/client/src/components/organisms/game/GameHud.tsx +135 -0
- package/shells/typescript-shell/packages/client/src/components/organisms/game/GameMenu.tsx +188 -0
- package/shells/typescript-shell/packages/client/src/components/organisms/game/GameOverScreen.tsx +241 -0
- package/shells/typescript-shell/packages/client/src/components/organisms/game/GamePauseOverlay.tsx +158 -0
- package/shells/typescript-shell/packages/client/src/components/organisms/game/InputListener.tsx +161 -0
- package/shells/typescript-shell/packages/client/src/components/organisms/game/InventoryPanel.tsx +230 -0
- package/shells/typescript-shell/packages/client/src/components/organisms/game/LevelSelect.tsx +236 -0
- package/shells/typescript-shell/packages/client/src/components/organisms/game/TilemapRenderer.tsx +233 -0
- package/shells/typescript-shell/packages/client/src/components/organisms/game/index.ts +28 -0
- package/shells/typescript-shell/packages/client/src/components/organisms/index.ts +83 -0
- package/shells/typescript-shell/packages/client/src/components/organisms/layout/DashboardGrid.tsx +94 -0
- package/shells/typescript-shell/packages/client/src/components/organisms/layout/MasterDetail.tsx +93 -0
- package/shells/typescript-shell/packages/client/src/components/organisms/layout/SplitPane.tsx +136 -0
- package/shells/typescript-shell/packages/client/src/components/organisms/layout/TabbedContainer.tsx +162 -0
- package/shells/typescript-shell/packages/client/src/components/organisms/layout/index.ts +10 -0
- package/shells/typescript-shell/packages/client/src/components/templates/AuthLayout.tsx +125 -0
- package/shells/typescript-shell/packages/client/src/components/templates/CounterTemplate.tsx +224 -0
- package/shells/typescript-shell/packages/client/src/components/templates/CrudTemplate.tsx +511 -0
- package/shells/typescript-shell/packages/client/src/components/templates/DashboardLayout.tsx +295 -0
- package/shells/typescript-shell/packages/client/src/components/templates/FormTemplate.tsx +328 -0
- package/shells/typescript-shell/packages/client/src/components/templates/GameTemplate.tsx +142 -0
- package/shells/typescript-shell/packages/client/src/components/templates/GenericAppTemplate.tsx +79 -0
- package/shells/typescript-shell/packages/client/src/components/templates/ListTemplate.tsx +361 -0
- package/shells/typescript-shell/packages/client/src/components/templates/SettingsTemplate.tsx +459 -0
- package/shells/typescript-shell/packages/client/src/components/templates/index.ts +54 -0
- package/shells/typescript-shell/packages/client/src/config/firebase.ts +58 -0
- package/shells/typescript-shell/packages/client/src/context/DesignThemeContext.tsx +40 -0
- package/shells/typescript-shell/packages/client/src/context/ThemeContext.tsx +321 -0
- package/shells/typescript-shell/packages/client/src/context/UISlotContext.tsx +143 -0
- package/shells/typescript-shell/packages/client/src/context/UserContext.tsx +259 -0
- package/shells/typescript-shell/packages/client/src/context/index.ts +44 -0
- package/shells/typescript-shell/packages/client/src/evaluator/SExpressionEvaluator.ts +715 -0
- package/shells/typescript-shell/packages/client/src/evaluator/context.ts +196 -0
- package/shells/typescript-shell/packages/client/src/evaluator/index.ts +52 -0
- package/shells/typescript-shell/packages/client/src/evaluator/operators/arithmetic.ts +120 -0
- package/shells/typescript-shell/packages/client/src/evaluator/operators/collections.ts +177 -0
- package/shells/typescript-shell/packages/client/src/evaluator/operators/comparison.ts +130 -0
- package/shells/typescript-shell/packages/client/src/evaluator/operators/control.ts +86 -0
- package/shells/typescript-shell/packages/client/src/evaluator/operators/effects.ts +285 -0
- package/shells/typescript-shell/packages/client/src/evaluator/operators/index.ts +69 -0
- package/shells/typescript-shell/packages/client/src/evaluator/operators/logic.ts +66 -0
- package/shells/typescript-shell/packages/client/src/evaluator/std/array.ts +657 -0
- package/shells/typescript-shell/packages/client/src/evaluator/std/async.ts +210 -0
- package/shells/typescript-shell/packages/client/src/evaluator/std/format.ts +224 -0
- package/shells/typescript-shell/packages/client/src/evaluator/std/index.ts +206 -0
- package/shells/typescript-shell/packages/client/src/evaluator/std/math.ts +219 -0
- package/shells/typescript-shell/packages/client/src/evaluator/std/object.ts +435 -0
- package/shells/typescript-shell/packages/client/src/evaluator/std/str.ts +372 -0
- package/shells/typescript-shell/packages/client/src/evaluator/std/time.ts +594 -0
- package/shells/typescript-shell/packages/client/src/evaluator/std/validate.ts +445 -0
- package/shells/typescript-shell/packages/client/src/evaluator/types/expression.ts +297 -0
- package/shells/typescript-shell/packages/client/src/features/auth/AuthContext.tsx +192 -0
- package/shells/typescript-shell/packages/client/src/features/auth/authService.ts +90 -0
- package/shells/typescript-shell/packages/client/src/features/auth/components/Login.tsx +282 -0
- package/shells/typescript-shell/packages/client/src/features/auth/components/ProtectedRoute.tsx +28 -0
- package/shells/typescript-shell/packages/client/src/features/auth/components/UserProfile.tsx +52 -0
- package/shells/typescript-shell/packages/client/src/features/auth/components/index.ts +3 -0
- package/shells/typescript-shell/packages/client/src/features/auth/index.ts +4 -0
- package/shells/typescript-shell/packages/client/src/features/auth/types.ts +33 -0
- package/shells/typescript-shell/packages/client/src/hooks/event-bus-types.ts +70 -0
- package/shells/typescript-shell/packages/client/src/hooks/index.ts +84 -0
- package/shells/typescript-shell/packages/client/src/hooks/useEntities.ts +118 -0
- package/shells/typescript-shell/packages/client/src/hooks/useEntityData.ts +288 -0
- package/shells/typescript-shell/packages/client/src/hooks/useEntityMutations.ts +258 -0
- package/shells/typescript-shell/packages/client/src/hooks/useEventBus.ts +166 -0
- package/shells/typescript-shell/packages/client/src/hooks/useOrbitalMutations.ts +234 -0
- package/shells/typescript-shell/packages/client/src/hooks/useQuerySingleton.ts +179 -0
- package/shells/typescript-shell/packages/client/src/hooks/useUIEvents.ts +228 -0
- package/shells/typescript-shell/packages/client/src/hooks/useUISlots.ts +320 -0
- package/shells/typescript-shell/packages/client/src/index.css +15 -0
- package/shells/typescript-shell/packages/client/src/lib/api-client.ts +134 -0
- package/shells/typescript-shell/packages/client/src/lib/cn.ts +10 -0
- package/shells/typescript-shell/packages/client/src/lib/debug.ts +114 -0
- package/shells/typescript-shell/packages/client/src/lib/debugRegistry.ts +108 -0
- package/shells/typescript-shell/packages/client/src/lib/debugUtils.ts +62 -0
- package/shells/typescript-shell/packages/client/src/lib/entityDebug.ts +79 -0
- package/shells/typescript-shell/packages/client/src/lib/guardRegistry.ts +79 -0
- package/shells/typescript-shell/packages/client/src/lib/tickRegistry.ts +86 -0
- package/shells/typescript-shell/packages/client/src/lib/traitRegistry.ts +84 -0
- package/shells/typescript-shell/packages/client/src/loaders/AssetLoader.ts +315 -0
- package/shells/typescript-shell/packages/client/src/loaders/index.ts +17 -0
- package/shells/typescript-shell/packages/client/src/main.tsx +24 -0
- package/shells/typescript-shell/packages/client/src/pages/index.ts +2 -0
- package/shells/typescript-shell/packages/client/src/providers/EventBusProvider.tsx +212 -0
- package/shells/typescript-shell/packages/client/src/providers/FetchedDataProvider.tsx +280 -0
- package/shells/typescript-shell/packages/client/src/providers/OrbitalProvider.tsx +136 -0
- package/shells/typescript-shell/packages/client/src/providers/SelectionProvider.tsx +232 -0
- package/shells/typescript-shell/packages/client/src/providers/index.ts +31 -0
- package/shells/typescript-shell/packages/client/src/renderer/client-effect-executor.ts +267 -0
- package/shells/typescript-shell/packages/client/src/renderer/data-resolver.ts +253 -0
- package/shells/typescript-shell/packages/client/src/renderer/index.ts +138 -0
- package/shells/typescript-shell/packages/client/src/renderer/offline-executor.ts +610 -0
- package/shells/typescript-shell/packages/client/src/renderer/pattern-resolver.ts +209 -0
- package/shells/typescript-shell/packages/client/src/renderer/slot-definitions.ts +154 -0
- package/shells/typescript-shell/packages/client/src/renderer/types.ts +214 -0
- package/shells/typescript-shell/packages/client/src/renderer/useClientEffects.ts +236 -0
- package/shells/typescript-shell/packages/client/src/stores/entityStore.ts +233 -0
- package/shells/typescript-shell/packages/client/src/stores/filtering.ts +180 -0
- package/shells/typescript-shell/packages/client/src/stores/index.ts +11 -0
- package/shells/typescript-shell/packages/client/src/test/setup.ts +126 -0
- package/shells/typescript-shell/packages/client/src/themes/almadar.css +196 -0
- package/shells/typescript-shell/packages/client/src/themes/index.css +11 -0
- package/shells/typescript-shell/packages/client/src/themes/minimalist.css +193 -0
- package/shells/typescript-shell/packages/client/src/themes/wireframe.css +188 -0
- package/shells/typescript-shell/packages/client/src/types/__tests__/event-contracts.test.ts +204 -0
- package/shells/typescript-shell/packages/client/src/types/event-contracts.ts +267 -0
- package/shells/typescript-shell/packages/client/tailwind.config.js +55 -0
- package/shells/typescript-shell/packages/client/tsconfig.json +33 -0
- package/shells/typescript-shell/packages/client/tsconfig.node.json +12 -0
- package/shells/typescript-shell/packages/client/vite.config.d.ts +3 -0
- package/shells/typescript-shell/packages/client/vite.config.d.ts.map +1 -0
- package/shells/typescript-shell/packages/client/vite.config.js +43 -0
- package/shells/typescript-shell/packages/client/vite.config.js.map +1 -0
- package/shells/typescript-shell/packages/client/vite.config.ts +48 -0
- package/shells/typescript-shell/packages/server/.env.development +8 -0
- package/shells/typescript-shell/packages/server/.env.example +22 -0
- package/shells/typescript-shell/packages/server/package.json +41 -0
- package/shells/typescript-shell/packages/server/src/__tests__/integration.test.ts +23 -0
- package/shells/typescript-shell/packages/server/src/app.ts +53 -0
- package/shells/typescript-shell/packages/server/src/features/.gitkeep +10 -0
- package/shells/typescript-shell/packages/server/src/index.ts +60 -0
- package/shells/typescript-shell/packages/server/src/integrators/INTEGRATORS.md +357 -0
- package/shells/typescript-shell/packages/server/src/integrators/__tests__/registry.test.ts +419 -0
- package/shells/typescript-shell/packages/server/src/integrators/__tests__/types.test.ts +382 -0
- package/shells/typescript-shell/packages/server/src/integrators/__tests__/youtube.closed-circuit.test.ts +454 -0
- package/shells/typescript-shell/packages/server/src/integrators/__tests__/youtube.test.ts +519 -0
- package/shells/typescript-shell/packages/server/src/integrators/index.ts +67 -0
- package/shells/typescript-shell/packages/server/src/integrators/llm.ts +585 -0
- package/shells/typescript-shell/packages/server/src/integrators/registry.ts +318 -0
- package/shells/typescript-shell/packages/server/src/integrators/types.ts +248 -0
- package/shells/typescript-shell/packages/server/src/integrators/youtube.ts +614 -0
- package/shells/typescript-shell/packages/server/src/lib/db.ts +130 -0
- package/shells/typescript-shell/packages/server/src/lib/env.ts +47 -0
- package/shells/typescript-shell/packages/server/src/lib/eventBus.ts +80 -0
- package/shells/typescript-shell/packages/server/src/lib/index.ts +10 -0
- package/shells/typescript-shell/packages/server/src/lib/logger.ts +48 -0
- package/shells/typescript-shell/packages/server/src/lib/websocket.ts +161 -0
- package/shells/typescript-shell/packages/server/src/middleware/authenticateFirebase.ts +29 -0
- package/shells/typescript-shell/packages/server/src/middleware/errorHandler.ts +135 -0
- package/shells/typescript-shell/packages/server/src/middleware/index.ts +15 -0
- package/shells/typescript-shell/packages/server/src/middleware/validation.ts +77 -0
- package/shells/typescript-shell/packages/server/src/routes/__tests__/orbitals.e2e.test.ts +405 -0
- package/shells/typescript-shell/packages/server/src/routes/features/.gitkeep +0 -0
- package/shells/typescript-shell/packages/server/src/routes/index.ts +11 -0
- package/shells/typescript-shell/packages/server/src/routes/orbitals.ts +138 -0
- package/shells/typescript-shell/packages/server/src/routes/register.ts +19 -0
- package/shells/typescript-shell/packages/server/src/routes.ts +58 -0
- package/shells/typescript-shell/packages/server/src/seedMockData.ts +27 -0
- package/shells/typescript-shell/packages/server/src/services/DataService.ts +402 -0
- package/shells/typescript-shell/packages/server/src/services/MockDataService.ts +347 -0
- package/shells/typescript-shell/packages/server/src/services/index.ts +8 -0
- package/shells/typescript-shell/packages/server/src/types/express.d.ts +13 -0
- package/shells/typescript-shell/packages/server/src/utils/index.ts +9 -0
- package/shells/typescript-shell/packages/server/src/utils/queryFilters.ts +231 -0
- package/shells/typescript-shell/packages/server/tsconfig.json +28 -0
- package/shells/typescript-shell/packages/shared/package.json +22 -0
- package/shells/typescript-shell/packages/shared/src/__tests__/entities/atom-demo.test.ts +61 -0
- package/shells/typescript-shell/packages/shared/src/__tests__/entities/container-demo.test.ts +43 -0
- package/shells/typescript-shell/packages/shared/src/__tests__/entities/content-item.test.ts +55 -0
- package/shells/typescript-shell/packages/shared/src/__tests__/entities/game-state.test.ts +67 -0
- package/shells/typescript-shell/packages/shared/src/__tests__/entities/layout-demo.test.ts +43 -0
- package/shells/typescript-shell/packages/shared/src/__tests__/entities/modal-item.test.ts +49 -0
- package/shells/typescript-shell/packages/shared/src/__tests__/entities/molecule-demo.test.ts +55 -0
- package/shells/typescript-shell/packages/shared/src/__tests__/entities/nav-item.test.ts +55 -0
- package/shells/typescript-shell/packages/shared/src/__tests__/entities/product.test.ts +78 -0
- package/shells/typescript-shell/packages/shared/src/__tests__/entities/project.test.ts +85 -0
- package/shells/typescript-shell/packages/shared/src/__tests__/entities/searchable-item.test.ts +61 -0
- package/shells/typescript-shell/packages/shared/src/__tests__/entities/state-demo.test.ts +43 -0
- package/shells/typescript-shell/packages/shared/src/__tests__/entities/wizard-data.test.ts +61 -0
- package/shells/typescript-shell/packages/shared/src/evaluator/SExpressionEvaluator.ts +715 -0
- package/shells/typescript-shell/packages/shared/src/evaluator/context.ts +196 -0
- package/shells/typescript-shell/packages/shared/src/evaluator/index.ts +52 -0
- package/shells/typescript-shell/packages/shared/src/evaluator/operators/arithmetic.ts +120 -0
- package/shells/typescript-shell/packages/shared/src/evaluator/operators/collections.ts +177 -0
- package/shells/typescript-shell/packages/shared/src/evaluator/operators/comparison.ts +130 -0
- package/shells/typescript-shell/packages/shared/src/evaluator/operators/control.ts +86 -0
- package/shells/typescript-shell/packages/shared/src/evaluator/operators/effects.ts +285 -0
- package/shells/typescript-shell/packages/shared/src/evaluator/operators/index.ts +69 -0
- package/shells/typescript-shell/packages/shared/src/evaluator/operators/logic.ts +66 -0
- package/shells/typescript-shell/packages/shared/src/evaluator/std/array.ts +657 -0
- package/shells/typescript-shell/packages/shared/src/evaluator/std/async.ts +210 -0
- package/shells/typescript-shell/packages/shared/src/evaluator/std/format.ts +224 -0
- package/shells/typescript-shell/packages/shared/src/evaluator/std/index.ts +206 -0
- package/shells/typescript-shell/packages/shared/src/evaluator/std/math.ts +219 -0
- package/shells/typescript-shell/packages/shared/src/evaluator/std/object.ts +435 -0
- package/shells/typescript-shell/packages/shared/src/evaluator/std/str.ts +372 -0
- package/shells/typescript-shell/packages/shared/src/evaluator/std/time.ts +594 -0
- package/shells/typescript-shell/packages/shared/src/evaluator/std/validate.ts +445 -0
- package/shells/typescript-shell/packages/shared/src/evaluator/types/expression.ts +297 -0
- package/shells/typescript-shell/packages/shared/src/index.ts +12 -0
- package/shells/typescript-shell/packages/shared/src/schemas/entities.ts +13 -0
- package/shells/typescript-shell/packages/shared/src/types/entities.ts +321 -0
- package/shells/typescript-shell/packages/shared/src/types/events.ts +82 -0
- package/shells/typescript-shell/packages/shared/tsconfig.json +16 -0
- package/shells/typescript-shell/tests/setup.ts +22 -0
- package/shells/typescript-shell/tsconfig.base.json +21 -0
- package/shells/typescript-shell/tsconfig.json +13 -0
- package/shells/typescript-shell/vitest.config.ts +54 -0
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
#!/bin/bash
|
|
2
|
+
# ===========================================
|
|
3
|
+
# Deploy to Cloud Run
|
|
4
|
+
# ===========================================
|
|
5
|
+
# Usage: ./scripts/deploy.sh [service-name] [region]
|
|
6
|
+
#
|
|
7
|
+
# Prerequisites:
|
|
8
|
+
# - gcloud CLI installed and authenticated
|
|
9
|
+
# - Docker installed (for local builds)
|
|
10
|
+
# - Project ID set: gcloud config set project YOUR_PROJECT_ID
|
|
11
|
+
|
|
12
|
+
set -e
|
|
13
|
+
|
|
14
|
+
# Configuration
|
|
15
|
+
SERVICE_NAME="${1:-orbital-app}"
|
|
16
|
+
REGION="${2:-us-central1}"
|
|
17
|
+
PROJECT_ID=$(gcloud config get-value project)
|
|
18
|
+
|
|
19
|
+
if [ -z "$PROJECT_ID" ]; then
|
|
20
|
+
echo "Error: No project ID set. Run: gcloud config set project YOUR_PROJECT_ID"
|
|
21
|
+
exit 1
|
|
22
|
+
fi
|
|
23
|
+
|
|
24
|
+
echo "=========================================="
|
|
25
|
+
echo "Deploying $SERVICE_NAME to Cloud Run"
|
|
26
|
+
echo "=========================================="
|
|
27
|
+
echo "Project: $PROJECT_ID"
|
|
28
|
+
echo "Region: $REGION"
|
|
29
|
+
echo "=========================================="
|
|
30
|
+
|
|
31
|
+
# Option 1: Deploy using Cloud Build (recommended for CI/CD)
|
|
32
|
+
deploy_with_cloud_build() {
|
|
33
|
+
echo "Deploying with Cloud Build..."
|
|
34
|
+
gcloud builds submit \
|
|
35
|
+
--config cloudbuild.yaml \
|
|
36
|
+
--substitutions="_SERVICE_NAME=$SERVICE_NAME,_REGION=$REGION"
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
# Option 2: Deploy directly (faster for development)
|
|
40
|
+
deploy_direct() {
|
|
41
|
+
echo "Building and deploying directly..."
|
|
42
|
+
|
|
43
|
+
IMAGE="gcr.io/$PROJECT_ID/$SERVICE_NAME"
|
|
44
|
+
|
|
45
|
+
# Build
|
|
46
|
+
echo "Building Docker image..."
|
|
47
|
+
docker build -t "$IMAGE" .
|
|
48
|
+
|
|
49
|
+
# Push
|
|
50
|
+
echo "Pushing to Container Registry..."
|
|
51
|
+
docker push "$IMAGE"
|
|
52
|
+
|
|
53
|
+
# Deploy
|
|
54
|
+
echo "Deploying to Cloud Run..."
|
|
55
|
+
gcloud run deploy "$SERVICE_NAME" \
|
|
56
|
+
--image "$IMAGE" \
|
|
57
|
+
--region "$REGION" \
|
|
58
|
+
--platform managed \
|
|
59
|
+
--allow-unauthenticated \
|
|
60
|
+
--memory 1Gi \
|
|
61
|
+
--cpu 1 \
|
|
62
|
+
--min-instances 0 \
|
|
63
|
+
--max-instances 10 \
|
|
64
|
+
--set-env-vars "ENVIRONMENT=production"
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
# Option 3: Deploy from source (simplest, but slowest)
|
|
68
|
+
deploy_from_source() {
|
|
69
|
+
echo "Deploying from source..."
|
|
70
|
+
gcloud run deploy "$SERVICE_NAME" \
|
|
71
|
+
--source . \
|
|
72
|
+
--region "$REGION" \
|
|
73
|
+
--platform managed \
|
|
74
|
+
--allow-unauthenticated \
|
|
75
|
+
--memory 1Gi \
|
|
76
|
+
--cpu 1
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
# Parse deployment method
|
|
80
|
+
METHOD="${3:-cloud-build}"
|
|
81
|
+
|
|
82
|
+
case "$METHOD" in
|
|
83
|
+
cloud-build)
|
|
84
|
+
deploy_with_cloud_build
|
|
85
|
+
;;
|
|
86
|
+
direct)
|
|
87
|
+
deploy_direct
|
|
88
|
+
;;
|
|
89
|
+
source)
|
|
90
|
+
deploy_from_source
|
|
91
|
+
;;
|
|
92
|
+
*)
|
|
93
|
+
echo "Unknown method: $METHOD"
|
|
94
|
+
echo "Usage: $0 [service-name] [region] [cloud-build|direct|source]"
|
|
95
|
+
exit 1
|
|
96
|
+
;;
|
|
97
|
+
esac
|
|
98
|
+
|
|
99
|
+
# Get the service URL
|
|
100
|
+
echo ""
|
|
101
|
+
echo "=========================================="
|
|
102
|
+
echo "Deployment complete!"
|
|
103
|
+
echo "=========================================="
|
|
104
|
+
SERVICE_URL=$(gcloud run services describe "$SERVICE_NAME" --region="$REGION" --format='value(status.url)' 2>/dev/null || echo "")
|
|
105
|
+
if [ -n "$SERVICE_URL" ]; then
|
|
106
|
+
echo "Service URL: $SERVICE_URL"
|
|
107
|
+
echo "Health check: $SERVICE_URL/health"
|
|
108
|
+
fi
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
#!/bin/bash
|
|
2
|
+
# ===========================================
|
|
3
|
+
# Setup Cloud Run Secrets
|
|
4
|
+
# ===========================================
|
|
5
|
+
# Creates secrets in Secret Manager and configures Cloud Run to use them
|
|
6
|
+
#
|
|
7
|
+
# Usage: ./scripts/setup-secrets.sh [service-name] [region]
|
|
8
|
+
#
|
|
9
|
+
# Prerequisites:
|
|
10
|
+
# - gcloud CLI installed and authenticated
|
|
11
|
+
# - Secret Manager API enabled
|
|
12
|
+
# - .env file with your secrets
|
|
13
|
+
|
|
14
|
+
set -e
|
|
15
|
+
|
|
16
|
+
SERVICE_NAME="${1:-orbital-app}"
|
|
17
|
+
REGION="${2:-us-central1}"
|
|
18
|
+
PROJECT_ID=$(gcloud config get-value project)
|
|
19
|
+
|
|
20
|
+
if [ -z "$PROJECT_ID" ]; then
|
|
21
|
+
echo "Error: No project ID set. Run: gcloud config set project YOUR_PROJECT_ID"
|
|
22
|
+
exit 1
|
|
23
|
+
fi
|
|
24
|
+
|
|
25
|
+
echo "=========================================="
|
|
26
|
+
echo "Setting up secrets for $SERVICE_NAME"
|
|
27
|
+
echo "=========================================="
|
|
28
|
+
|
|
29
|
+
# Enable Secret Manager API
|
|
30
|
+
echo "Enabling Secret Manager API..."
|
|
31
|
+
gcloud services enable secretmanager.googleapis.com
|
|
32
|
+
|
|
33
|
+
# Function to create or update a secret
|
|
34
|
+
create_secret() {
|
|
35
|
+
local SECRET_NAME=$1
|
|
36
|
+
local SECRET_VALUE=$2
|
|
37
|
+
|
|
38
|
+
if [ -z "$SECRET_VALUE" ]; then
|
|
39
|
+
echo "Skipping $SECRET_NAME (empty value)"
|
|
40
|
+
return
|
|
41
|
+
fi
|
|
42
|
+
|
|
43
|
+
echo "Creating/updating secret: $SECRET_NAME"
|
|
44
|
+
|
|
45
|
+
# Check if secret exists
|
|
46
|
+
if gcloud secrets describe "$SECRET_NAME" &>/dev/null; then
|
|
47
|
+
# Add new version
|
|
48
|
+
echo -n "$SECRET_VALUE" | gcloud secrets versions add "$SECRET_NAME" --data-file=-
|
|
49
|
+
else
|
|
50
|
+
# Create new secret
|
|
51
|
+
echo -n "$SECRET_VALUE" | gcloud secrets create "$SECRET_NAME" --data-file=-
|
|
52
|
+
fi
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
# Load environment variables from .env file
|
|
56
|
+
if [ -f ".env" ]; then
|
|
57
|
+
echo "Loading secrets from .env file..."
|
|
58
|
+
|
|
59
|
+
# Read .env file and create secrets
|
|
60
|
+
while IFS='=' read -r key value; do
|
|
61
|
+
# Skip comments and empty lines
|
|
62
|
+
[[ $key =~ ^#.*$ ]] && continue
|
|
63
|
+
[[ -z "$key" ]] && continue
|
|
64
|
+
|
|
65
|
+
# Remove quotes from value
|
|
66
|
+
value=$(echo "$value" | sed 's/^["'"'"']//;s/["'"'"']$//')
|
|
67
|
+
|
|
68
|
+
# Create secret with service name prefix
|
|
69
|
+
SECRET_NAME="${SERVICE_NAME}-${key}"
|
|
70
|
+
create_secret "$SECRET_NAME" "$value"
|
|
71
|
+
done < .env
|
|
72
|
+
|
|
73
|
+
echo ""
|
|
74
|
+
echo "Secrets created. To use them in Cloud Run, update your service:"
|
|
75
|
+
echo ""
|
|
76
|
+
echo "gcloud run services update $SERVICE_NAME \\"
|
|
77
|
+
echo " --region $REGION \\"
|
|
78
|
+
echo " --set-secrets=FIREBASE_PROJECT_ID=${SERVICE_NAME}-FIREBASE_PROJECT_ID:latest \\"
|
|
79
|
+
echo " --set-secrets=FIREBASE_CLIENT_EMAIL=${SERVICE_NAME}-FIREBASE_CLIENT_EMAIL:latest \\"
|
|
80
|
+
echo " --set-secrets=FIREBASE_PRIVATE_KEY=${SERVICE_NAME}-FIREBASE_PRIVATE_KEY:latest"
|
|
81
|
+
else
|
|
82
|
+
echo "No .env file found. Creating secrets interactively..."
|
|
83
|
+
|
|
84
|
+
# Interactive secret creation
|
|
85
|
+
read -p "Firebase Project ID: " FB_PROJECT_ID
|
|
86
|
+
create_secret "${SERVICE_NAME}-FIREBASE_PROJECT_ID" "$FB_PROJECT_ID"
|
|
87
|
+
|
|
88
|
+
read -p "Firebase Client Email: " FB_CLIENT_EMAIL
|
|
89
|
+
create_secret "${SERVICE_NAME}-FIREBASE_CLIENT_EMAIL" "$FB_CLIENT_EMAIL"
|
|
90
|
+
|
|
91
|
+
echo "Enter Firebase Private Key (paste and press Ctrl+D):"
|
|
92
|
+
FB_PRIVATE_KEY=$(cat)
|
|
93
|
+
create_secret "${SERVICE_NAME}-FIREBASE_PRIVATE_KEY" "$FB_PRIVATE_KEY"
|
|
94
|
+
fi
|
|
95
|
+
|
|
96
|
+
echo ""
|
|
97
|
+
echo "=========================================="
|
|
98
|
+
echo "Secrets setup complete!"
|
|
99
|
+
echo "=========================================="
|
|
100
|
+
echo ""
|
|
101
|
+
echo "Grant Cloud Run access to secrets:"
|
|
102
|
+
echo ""
|
|
103
|
+
echo "SERVICE_ACCOUNT=\$(gcloud run services describe $SERVICE_NAME --region $REGION --format='value(spec.template.spec.serviceAccountName)')"
|
|
104
|
+
echo "gcloud secrets add-iam-policy-binding ${SERVICE_NAME}-FIREBASE_PROJECT_ID --member=\"serviceAccount:\$SERVICE_ACCOUNT\" --role=\"roles/secretmanager.secretAccessor\""
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Core utilities for Orbital Python Shell.
|
|
3
|
+
|
|
4
|
+
- settings: Application configuration
|
|
5
|
+
- event_router: Event dispatch and response models
|
|
6
|
+
- effect_executor: Server-side effect execution
|
|
7
|
+
- repository: Database abstraction layer
|
|
8
|
+
- bindings: @entity, @payload binding resolution
|
|
9
|
+
- firebase: Firebase Admin SDK initialization
|
|
10
|
+
- websocket: Real-time WebSocket connection management
|
|
11
|
+
"""
|
|
12
|
+
from .settings import Settings, get_settings
|
|
13
|
+
from .event_router import EventRequest, EventResponse
|
|
14
|
+
from .effect_executor import EffectExecutor
|
|
15
|
+
from .repository import Repository, InMemoryRepository, FirestoreRepository
|
|
16
|
+
from .bindings import resolve_binding, resolve_bindings_in_dict
|
|
17
|
+
from .firebase import initialize_firebase, get_auth, get_firestore, verify_id_token
|
|
18
|
+
from .event_bus import EventBus, get_event_bus
|
|
19
|
+
from .websocket import ConnectionManager, connection_manager
|
|
20
|
+
|
|
21
|
+
__all__ = [
|
|
22
|
+
"Settings",
|
|
23
|
+
"get_settings",
|
|
24
|
+
"EventRequest",
|
|
25
|
+
"EventResponse",
|
|
26
|
+
"EffectExecutor",
|
|
27
|
+
"Repository",
|
|
28
|
+
"InMemoryRepository",
|
|
29
|
+
"FirestoreRepository",
|
|
30
|
+
"resolve_binding",
|
|
31
|
+
"resolve_bindings_in_dict",
|
|
32
|
+
"initialize_firebase",
|
|
33
|
+
"get_auth",
|
|
34
|
+
"get_firestore",
|
|
35
|
+
"verify_id_token",
|
|
36
|
+
"EventBus",
|
|
37
|
+
"get_event_bus",
|
|
38
|
+
"ConnectionManager",
|
|
39
|
+
"connection_manager",
|
|
40
|
+
]
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Bindings - Resolve @entity, @payload, @user bindings.
|
|
3
|
+
|
|
4
|
+
Bindings are references to values in the execution context:
|
|
5
|
+
- @payload.field - Value from the event payload
|
|
6
|
+
- @entity.field - Value from the current entity
|
|
7
|
+
- @user.field - Value from the authenticated user
|
|
8
|
+
"""
|
|
9
|
+
from typing import Any, Dict
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
def resolve_binding(value: Any, context: Dict[str, Any]) -> Any:
|
|
13
|
+
"""
|
|
14
|
+
Resolve a binding reference to its actual value.
|
|
15
|
+
|
|
16
|
+
Args:
|
|
17
|
+
value: The value to resolve (may be a binding string or literal)
|
|
18
|
+
context: The execution context containing payload, entity, user, etc.
|
|
19
|
+
|
|
20
|
+
Returns:
|
|
21
|
+
The resolved value
|
|
22
|
+
"""
|
|
23
|
+
if not isinstance(value, str):
|
|
24
|
+
return value
|
|
25
|
+
|
|
26
|
+
if not value.startswith("@"):
|
|
27
|
+
return value
|
|
28
|
+
|
|
29
|
+
# Parse binding: @root.path.to.field
|
|
30
|
+
parts = value[1:].split(".")
|
|
31
|
+
root = parts[0]
|
|
32
|
+
|
|
33
|
+
if root not in context:
|
|
34
|
+
return None
|
|
35
|
+
|
|
36
|
+
result = context[root]
|
|
37
|
+
|
|
38
|
+
for part in parts[1:]:
|
|
39
|
+
if result is None:
|
|
40
|
+
return None
|
|
41
|
+
if isinstance(result, dict):
|
|
42
|
+
result = result.get(part)
|
|
43
|
+
else:
|
|
44
|
+
result = getattr(result, part, None)
|
|
45
|
+
|
|
46
|
+
return result
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
def resolve_bindings_in_dict(data: Dict[str, Any], context: Dict[str, Any]) -> Dict[str, Any]:
|
|
50
|
+
"""
|
|
51
|
+
Recursively resolve all bindings in a dictionary.
|
|
52
|
+
|
|
53
|
+
Args:
|
|
54
|
+
data: Dictionary that may contain binding references
|
|
55
|
+
context: The execution context
|
|
56
|
+
|
|
57
|
+
Returns:
|
|
58
|
+
Dictionary with all bindings resolved
|
|
59
|
+
"""
|
|
60
|
+
result = {}
|
|
61
|
+
for key, value in data.items():
|
|
62
|
+
if isinstance(value, str):
|
|
63
|
+
result[key] = resolve_binding(value, context)
|
|
64
|
+
elif isinstance(value, dict):
|
|
65
|
+
result[key] = resolve_bindings_in_dict(value, context)
|
|
66
|
+
elif isinstance(value, list):
|
|
67
|
+
result[key] = [
|
|
68
|
+
resolve_bindings_in_dict(item, context) if isinstance(item, dict)
|
|
69
|
+
else resolve_binding(item, context) if isinstance(item, str)
|
|
70
|
+
else item
|
|
71
|
+
for item in value
|
|
72
|
+
]
|
|
73
|
+
else:
|
|
74
|
+
result[key] = value
|
|
75
|
+
return result
|
|
@@ -0,0 +1,196 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Effect Executor - Executes server-side effects.
|
|
3
|
+
|
|
4
|
+
Server-side effects (per Orbital_Execution_Model.md):
|
|
5
|
+
- fetch: Query database
|
|
6
|
+
- persist: Write to database
|
|
7
|
+
- call_service: Call external services
|
|
8
|
+
- PyTorch ops: Neural network inference/training
|
|
9
|
+
|
|
10
|
+
Client-side effects are collected and returned in response.clientEffects.
|
|
11
|
+
"""
|
|
12
|
+
from typing import Dict, Any, List, Optional
|
|
13
|
+
from .repository import Repository
|
|
14
|
+
from .bindings import resolve_binding
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
class EffectExecutor:
|
|
18
|
+
"""Executes server-side effects and collects client-side effects."""
|
|
19
|
+
|
|
20
|
+
def __init__(self, repository: Repository):
|
|
21
|
+
self.repository = repository
|
|
22
|
+
self.data: Dict[str, Any] = {}
|
|
23
|
+
self.client_effects: List[Any] = []
|
|
24
|
+
self.effect_results: List[Dict[str, Any]] = []
|
|
25
|
+
|
|
26
|
+
async def execute(self, effect: List[Any], context: Dict[str, Any]) -> Optional[Any]:
|
|
27
|
+
"""Execute a single effect."""
|
|
28
|
+
if not effect:
|
|
29
|
+
return None
|
|
30
|
+
|
|
31
|
+
effect_type = effect[0]
|
|
32
|
+
|
|
33
|
+
# Server-side effects
|
|
34
|
+
if effect_type == "fetch":
|
|
35
|
+
return await self._execute_fetch(effect, context)
|
|
36
|
+
elif effect_type == "persist":
|
|
37
|
+
return await self._execute_persist(effect, context)
|
|
38
|
+
elif effect_type == "call_service":
|
|
39
|
+
return await self._execute_call_service(effect, context)
|
|
40
|
+
elif effect_type == "set":
|
|
41
|
+
return await self._execute_set(effect, context)
|
|
42
|
+
|
|
43
|
+
# Client-side effects - add to response
|
|
44
|
+
elif effect_type in ("render_ui", "render-ui"):
|
|
45
|
+
self.client_effects.append(effect)
|
|
46
|
+
elif effect_type == "navigate":
|
|
47
|
+
self.client_effects.append(effect)
|
|
48
|
+
elif effect_type == "notify":
|
|
49
|
+
self.client_effects.append(effect)
|
|
50
|
+
elif effect_type == "emit":
|
|
51
|
+
# emit can be both client and server side
|
|
52
|
+
self.client_effects.append(effect)
|
|
53
|
+
|
|
54
|
+
# PyTorch effects
|
|
55
|
+
elif effect_type.startswith("nn/") or effect_type.startswith("train/"):
|
|
56
|
+
return await self._execute_pytorch(effect, context)
|
|
57
|
+
elif effect_type.startswith("tensor/"):
|
|
58
|
+
return await self._execute_tensor(effect, context)
|
|
59
|
+
|
|
60
|
+
return None
|
|
61
|
+
|
|
62
|
+
async def _execute_fetch(
|
|
63
|
+
self, effect: List[Any], context: Dict[str, Any]
|
|
64
|
+
) -> Optional[Any]:
|
|
65
|
+
"""Execute fetch effect - query database."""
|
|
66
|
+
entity_type = effect[1]
|
|
67
|
+
options = effect[2] if len(effect) > 2 else {}
|
|
68
|
+
|
|
69
|
+
if "id" in options:
|
|
70
|
+
# Single entity fetch
|
|
71
|
+
entity_id = resolve_binding(options["id"], context)
|
|
72
|
+
result = await self.repository.get(entity_type, entity_id)
|
|
73
|
+
self.data[entity_type] = result
|
|
74
|
+
else:
|
|
75
|
+
# Collection fetch with optional filter
|
|
76
|
+
filter_expr = options.get("filter")
|
|
77
|
+
results = await self.repository.list(entity_type, filter_expr, context)
|
|
78
|
+
self.data[entity_type] = results
|
|
79
|
+
|
|
80
|
+
return self.data.get(entity_type)
|
|
81
|
+
|
|
82
|
+
async def _execute_persist(
|
|
83
|
+
self, effect: List[Any], context: Dict[str, Any]
|
|
84
|
+
) -> Optional[Dict[str, Any]]:
|
|
85
|
+
"""Execute persist effect - write to database."""
|
|
86
|
+
action = effect[1] # 'create', 'update', 'delete'
|
|
87
|
+
entity_type = effect[2]
|
|
88
|
+
data = resolve_binding(effect[3], context) if len(effect) > 3 else {}
|
|
89
|
+
|
|
90
|
+
result = None
|
|
91
|
+
if action == "create":
|
|
92
|
+
result = await self.repository.create(entity_type, data)
|
|
93
|
+
elif action == "update":
|
|
94
|
+
entity_id = context.get("entityId") or (data.get("id") if isinstance(data, dict) else None)
|
|
95
|
+
if entity_id:
|
|
96
|
+
result = await self.repository.update(entity_type, entity_id, data)
|
|
97
|
+
elif action == "delete":
|
|
98
|
+
entity_id = context.get("entityId")
|
|
99
|
+
if entity_id:
|
|
100
|
+
await self.repository.delete(entity_type, entity_id)
|
|
101
|
+
result = {"deleted": True, "id": entity_id}
|
|
102
|
+
|
|
103
|
+
self.effect_results.append(
|
|
104
|
+
{
|
|
105
|
+
"effect": "persist",
|
|
106
|
+
"action": action,
|
|
107
|
+
"entityType": entity_type,
|
|
108
|
+
"data": result,
|
|
109
|
+
"success": result is not None,
|
|
110
|
+
}
|
|
111
|
+
)
|
|
112
|
+
return result
|
|
113
|
+
|
|
114
|
+
async def _execute_call_service(
|
|
115
|
+
self, effect: List[Any], context: Dict[str, Any]
|
|
116
|
+
) -> Optional[Dict[str, Any]]:
|
|
117
|
+
"""Execute call_service effect - call external service."""
|
|
118
|
+
service = effect[1]
|
|
119
|
+
method = effect[2]
|
|
120
|
+
args = resolve_binding(effect[3], context) if len(effect) > 3 else {}
|
|
121
|
+
|
|
122
|
+
# TODO: Implement service registry and calling
|
|
123
|
+
result = {"service": service, "method": method, "status": "not_implemented"}
|
|
124
|
+
|
|
125
|
+
self.effect_results.append(
|
|
126
|
+
{
|
|
127
|
+
"effect": "call_service",
|
|
128
|
+
"service": service,
|
|
129
|
+
"method": method,
|
|
130
|
+
"data": result,
|
|
131
|
+
"success": False,
|
|
132
|
+
}
|
|
133
|
+
)
|
|
134
|
+
return result
|
|
135
|
+
|
|
136
|
+
async def _execute_set(
|
|
137
|
+
self, effect: List[Any], context: Dict[str, Any]
|
|
138
|
+
) -> Optional[Any]:
|
|
139
|
+
"""Execute set effect - update entity field."""
|
|
140
|
+
target = effect[1] # e.g., "@entity.field"
|
|
141
|
+
value = resolve_binding(effect[2], context) if len(effect) > 2 else None
|
|
142
|
+
|
|
143
|
+
# Parse target binding
|
|
144
|
+
if isinstance(target, str) and target.startswith("@"):
|
|
145
|
+
parts = target[1:].split(".")
|
|
146
|
+
root = parts[0]
|
|
147
|
+
if root in context and len(parts) > 1:
|
|
148
|
+
obj = context[root]
|
|
149
|
+
for part in parts[1:-1]:
|
|
150
|
+
if isinstance(obj, dict):
|
|
151
|
+
obj = obj.get(part, {})
|
|
152
|
+
else:
|
|
153
|
+
obj = getattr(obj, part, {})
|
|
154
|
+
# Set the final field
|
|
155
|
+
final_field = parts[-1]
|
|
156
|
+
if isinstance(obj, dict):
|
|
157
|
+
obj[final_field] = value
|
|
158
|
+
else:
|
|
159
|
+
setattr(obj, final_field, value)
|
|
160
|
+
|
|
161
|
+
self.effect_results.append(
|
|
162
|
+
{"effect": "set", "target": target, "value": value, "success": True}
|
|
163
|
+
)
|
|
164
|
+
return value
|
|
165
|
+
|
|
166
|
+
async def _execute_pytorch(
|
|
167
|
+
self, effect: List[Any], context: Dict[str, Any]
|
|
168
|
+
) -> Optional[Any]:
|
|
169
|
+
"""Execute PyTorch neural network operations."""
|
|
170
|
+
op = effect[0]
|
|
171
|
+
|
|
172
|
+
try:
|
|
173
|
+
from ..nn.forward import forward as nn_forward
|
|
174
|
+
from ..nn.training import train_loop
|
|
175
|
+
|
|
176
|
+
if op == "nn/forward":
|
|
177
|
+
module = resolve_binding(effect[1], context)
|
|
178
|
+
input_tensor = resolve_binding(effect[2], context)
|
|
179
|
+
return nn_forward(module, input_tensor)
|
|
180
|
+
elif op == "train/loop":
|
|
181
|
+
module = resolve_binding(effect[1], context)
|
|
182
|
+
data = resolve_binding(effect[2], context)
|
|
183
|
+
config = resolve_binding(effect[3], context)
|
|
184
|
+
return train_loop(module, data, config)
|
|
185
|
+
except ImportError:
|
|
186
|
+
# PyTorch not available
|
|
187
|
+
pass
|
|
188
|
+
|
|
189
|
+
return None
|
|
190
|
+
|
|
191
|
+
async def _execute_tensor(
|
|
192
|
+
self, effect: List[Any], context: Dict[str, Any]
|
|
193
|
+
) -> Optional[Any]:
|
|
194
|
+
"""Execute tensor operations."""
|
|
195
|
+
# Tensor ops are typically used in expressions, not as standalone effects
|
|
196
|
+
return None
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Event Bus
|
|
3
|
+
|
|
4
|
+
Provides event publishing and subscription for Orbital traits.
|
|
5
|
+
"""
|
|
6
|
+
|
|
7
|
+
from typing import Dict, Any, Callable, List, Optional
|
|
8
|
+
from dataclasses import dataclass, field
|
|
9
|
+
import asyncio
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
@dataclass
|
|
13
|
+
class EventSubscription:
|
|
14
|
+
"""Represents an event subscription."""
|
|
15
|
+
event: str
|
|
16
|
+
handler: Callable
|
|
17
|
+
once: bool = False
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
class EventBus:
|
|
21
|
+
"""
|
|
22
|
+
Event bus for trait communication.
|
|
23
|
+
|
|
24
|
+
Allows traits to emit and subscribe to events.
|
|
25
|
+
"""
|
|
26
|
+
|
|
27
|
+
def __init__(self):
|
|
28
|
+
self._subscriptions: Dict[str, List[EventSubscription]] = {}
|
|
29
|
+
self._pending_events: List[tuple] = []
|
|
30
|
+
|
|
31
|
+
def subscribe(
|
|
32
|
+
self,
|
|
33
|
+
event: str,
|
|
34
|
+
handler: Callable,
|
|
35
|
+
once: bool = False,
|
|
36
|
+
) -> Callable:
|
|
37
|
+
"""
|
|
38
|
+
Subscribe to an event.
|
|
39
|
+
|
|
40
|
+
Args:
|
|
41
|
+
event: The event name to subscribe to
|
|
42
|
+
handler: The callback function
|
|
43
|
+
once: If True, unsubscribe after first call
|
|
44
|
+
|
|
45
|
+
Returns:
|
|
46
|
+
A function to unsubscribe
|
|
47
|
+
"""
|
|
48
|
+
if event not in self._subscriptions:
|
|
49
|
+
self._subscriptions[event] = []
|
|
50
|
+
|
|
51
|
+
sub = EventSubscription(event=event, handler=handler, once=once)
|
|
52
|
+
self._subscriptions[event].append(sub)
|
|
53
|
+
|
|
54
|
+
def unsubscribe():
|
|
55
|
+
if event in self._subscriptions:
|
|
56
|
+
self._subscriptions[event] = [
|
|
57
|
+
s for s in self._subscriptions[event] if s != sub
|
|
58
|
+
]
|
|
59
|
+
|
|
60
|
+
return unsubscribe
|
|
61
|
+
|
|
62
|
+
async def emit(self, event: str, payload: Optional[Dict[str, Any]] = None) -> None:
|
|
63
|
+
"""
|
|
64
|
+
Emit an event to all subscribers.
|
|
65
|
+
|
|
66
|
+
Args:
|
|
67
|
+
event: The event name
|
|
68
|
+
payload: Optional event payload
|
|
69
|
+
"""
|
|
70
|
+
if event not in self._subscriptions:
|
|
71
|
+
return
|
|
72
|
+
|
|
73
|
+
to_remove = []
|
|
74
|
+
for sub in self._subscriptions[event]:
|
|
75
|
+
try:
|
|
76
|
+
if asyncio.iscoroutinefunction(sub.handler):
|
|
77
|
+
await sub.handler(payload or {})
|
|
78
|
+
else:
|
|
79
|
+
sub.handler(payload or {})
|
|
80
|
+
|
|
81
|
+
if sub.once:
|
|
82
|
+
to_remove.append(sub)
|
|
83
|
+
except Exception as e:
|
|
84
|
+
# Log error but continue processing
|
|
85
|
+
print(f"Error in event handler for {event}: {e}")
|
|
86
|
+
|
|
87
|
+
# Remove one-time subscriptions
|
|
88
|
+
for sub in to_remove:
|
|
89
|
+
self._subscriptions[event].remove(sub)
|
|
90
|
+
|
|
91
|
+
def clear(self, event: Optional[str] = None) -> None:
|
|
92
|
+
"""
|
|
93
|
+
Clear subscriptions.
|
|
94
|
+
|
|
95
|
+
Args:
|
|
96
|
+
event: If provided, only clear subscriptions for this event.
|
|
97
|
+
If None, clear all subscriptions.
|
|
98
|
+
"""
|
|
99
|
+
if event:
|
|
100
|
+
self._subscriptions.pop(event, None)
|
|
101
|
+
else:
|
|
102
|
+
self._subscriptions.clear()
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
# Default global event bus instance
|
|
106
|
+
_default_event_bus: Optional[EventBus] = None
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
def get_event_bus() -> EventBus:
|
|
110
|
+
"""Get the default event bus instance."""
|
|
111
|
+
global _default_event_bus
|
|
112
|
+
if _default_event_bus is None:
|
|
113
|
+
_default_event_bus = EventBus()
|
|
114
|
+
return _default_event_bus
|
|
115
|
+
|
|
116
|
+
|
|
117
|
+
def EventBusDependency() -> EventBus:
|
|
118
|
+
"""FastAPI dependency for EventBus."""
|
|
119
|
+
return get_event_bus()
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Event Router - Request/Response models for event handling.
|
|
3
|
+
|
|
4
|
+
This follows the Orbital Execution Model:
|
|
5
|
+
1. Receive event from client
|
|
6
|
+
2. Evaluate guards
|
|
7
|
+
3. Execute server-side effects
|
|
8
|
+
4. Return { data, clientEffects }
|
|
9
|
+
"""
|
|
10
|
+
from typing import Dict, Any, List, Optional
|
|
11
|
+
from pydantic import BaseModel
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
class EventRequest(BaseModel):
|
|
15
|
+
"""Request body for event endpoints."""
|
|
16
|
+
|
|
17
|
+
payload: Dict[str, Any] = {}
|
|
18
|
+
entityId: Optional[str] = None
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
class EventResponse(BaseModel):
|
|
22
|
+
"""
|
|
23
|
+
Standard response format per Orbital_Execution_Model.md.
|
|
24
|
+
|
|
25
|
+
- success: Whether the event was handled successfully
|
|
26
|
+
- newState: Updated trait state after transition
|
|
27
|
+
- data: Fetched entities from server-side effects
|
|
28
|
+
- clientEffects: Effects for React client to execute (render_ui, navigate, notify)
|
|
29
|
+
- effectResults: Results from mutation effects (persist, call_service)
|
|
30
|
+
- error: Error message if success is False
|
|
31
|
+
"""
|
|
32
|
+
|
|
33
|
+
success: bool
|
|
34
|
+
newState: str
|
|
35
|
+
data: Dict[str, Any] = {}
|
|
36
|
+
clientEffects: List[Any] = []
|
|
37
|
+
effectResults: List[Dict[str, Any]] = []
|
|
38
|
+
error: Optional[str] = None
|