@codeyam/codeyam-cli 0.1.0-staging.8e7b1bd → 0.1.0-staging.a77070e
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/analyzer-template/.build-info.json +8 -8
- package/analyzer-template/common/execAsync.ts +1 -1
- package/analyzer-template/log.txt +3 -3
- package/analyzer-template/package.json +37 -33
- package/analyzer-template/packages/ai/index.ts +21 -5
- package/analyzer-template/packages/ai/package.json +5 -5
- package/analyzer-template/packages/ai/src/lib/__mocks__/completionCall.ts +122 -0
- package/analyzer-template/packages/ai/src/lib/analyzeScope.ts +228 -24
- package/analyzer-template/packages/ai/src/lib/astScopes/arrayDerivationDetector.ts +199 -0
- package/analyzer-template/packages/ai/src/lib/astScopes/astScopeAnalyzer.ts +239 -13
- package/analyzer-template/packages/ai/src/lib/astScopes/conditionalEffectsExtractor.ts +644 -0
- package/analyzer-template/packages/ai/src/lib/astScopes/methodSemantics.ts +181 -23
- package/analyzer-template/packages/ai/src/lib/astScopes/patterns/forInStatementHandler.ts +10 -17
- package/analyzer-template/packages/ai/src/lib/astScopes/patterns/ifStatementHandler.ts +18 -0
- package/analyzer-template/packages/ai/src/lib/astScopes/patterns/switchStatementHandler.ts +38 -1
- package/analyzer-template/packages/ai/src/lib/astScopes/patterns/variableDeclarationHandler.ts +181 -1
- package/analyzer-template/packages/ai/src/lib/astScopes/processExpression.ts +1619 -125
- package/analyzer-template/packages/ai/src/lib/astScopes/sharedPatterns.ts +28 -0
- package/analyzer-template/packages/ai/src/lib/astScopes/types.ts +324 -5
- package/analyzer-template/packages/ai/src/lib/checkAllAttributes.ts +29 -10
- package/analyzer-template/packages/ai/src/lib/completionCall.ts +247 -66
- package/analyzer-template/packages/ai/src/lib/dataStructure/ScopeDataStructure.ts +2788 -390
- package/analyzer-template/packages/ai/src/lib/dataStructure/equivalencyManagers/frameworks/JavascriptFrameworkManager.ts +21 -4
- package/analyzer-template/packages/ai/src/lib/dataStructure/equivalencyManagers/frameworks/MuiManager.ts +976 -0
- package/analyzer-template/packages/ai/src/lib/dataStructure/equivalencyManagers/frameworks/ReactFrameworkManager.ts +243 -77
- package/analyzer-template/packages/ai/src/lib/dataStructure/helpers/BatchSchemaProcessor.ts +16 -3
- package/analyzer-template/packages/ai/src/lib/dataStructure/helpers/ScopeTreeManager.ts +6 -4
- package/analyzer-template/packages/ai/src/lib/dataStructure/helpers/cleanKnownObjectFunctions.ts +71 -2
- package/analyzer-template/packages/ai/src/lib/dataStructure/helpers/cleanNonObjectFunctions.ts +161 -19
- package/analyzer-template/packages/ai/src/lib/dataStructure/helpers/coerceObjectsToPrimitivesBySchema.ts +70 -0
- package/analyzer-template/packages/ai/src/lib/dataStructure/helpers/coercePrimitivesToArraysBySchema.ts +62 -0
- package/analyzer-template/packages/ai/src/lib/dataStructure/helpers/convertDotNotation.ts +163 -14
- package/analyzer-template/packages/ai/src/lib/dataStructure/helpers/convertNullToUndefinedBySchema.ts +98 -0
- package/analyzer-template/packages/ai/src/lib/dataStructure/helpers/convertTypeAnnotationsToValues.ts +179 -0
- package/analyzer-template/packages/ai/src/lib/dataStructure/helpers/deduplicateFunctionSchemas.ts +40 -30
- package/analyzer-template/packages/ai/src/lib/dataStructure/helpers/fillInSchemaGapsAndUnknowns.ts +422 -86
- package/analyzer-template/packages/ai/src/lib/dataStructure/helpers/fixNullIdsBySchema.ts +129 -0
- package/analyzer-template/packages/ai/src/lib/dataStructure/helpers/stripNullableMarkers.ts +35 -0
- package/analyzer-template/packages/ai/src/lib/dataStructureChunking.ts +183 -0
- package/analyzer-template/packages/ai/src/lib/deepEqual.ts +30 -0
- package/analyzer-template/packages/ai/src/lib/e2eDataTracking.ts +334 -0
- package/analyzer-template/packages/ai/src/lib/extractCriticalDataKeys.ts +120 -0
- package/analyzer-template/packages/ai/src/lib/generateChangesEntityScenarioData.ts +74 -7
- package/analyzer-template/packages/ai/src/lib/generateChangesEntityScenarios.ts +89 -112
- package/analyzer-template/packages/ai/src/lib/generateEntityDataStructure.ts +63 -2
- package/analyzer-template/packages/ai/src/lib/generateEntityScenarioData.ts +1497 -92
- package/analyzer-template/packages/ai/src/lib/generateEntityScenarios.ts +216 -109
- package/analyzer-template/packages/ai/src/lib/generateExecutionFlows.ts +677 -0
- package/analyzer-template/packages/ai/src/lib/generateExecutionFlowsFromConditionalEffects.ts +528 -0
- package/analyzer-template/packages/ai/src/lib/generateExecutionFlowsFromConditionals.ts +2484 -0
- package/analyzer-template/packages/ai/src/lib/generateExecutionFlowsFromJsxUsages.ts +239 -0
- package/analyzer-template/packages/ai/src/lib/getConditionalUsagesFromCode.ts +143 -31
- package/analyzer-template/packages/ai/src/lib/guessScenarioDataFromDescription.ts +8 -2
- package/analyzer-template/packages/ai/src/lib/isolateScopes.ts +328 -7
- package/analyzer-template/packages/ai/src/lib/mergeJsonTypeDefinitions.ts +5 -0
- package/analyzer-template/packages/ai/src/lib/mergeStatements.ts +111 -87
- package/analyzer-template/packages/ai/src/lib/promptGenerators/collapseNullableObjects.ts +118 -0
- package/analyzer-template/packages/ai/src/lib/promptGenerators/gatherAttributesMap.ts +17 -7
- package/analyzer-template/packages/ai/src/lib/promptGenerators/generateChangesEntityScenarioDataGenerator.ts +1 -1
- package/analyzer-template/packages/ai/src/lib/promptGenerators/generateChangesEntityScenariosGenerator.ts +32 -102
- package/analyzer-template/packages/ai/src/lib/promptGenerators/generateChunkPrompt.ts +82 -0
- package/analyzer-template/packages/ai/src/lib/promptGenerators/generateCriticalKeysPrompt.ts +103 -0
- package/analyzer-template/packages/ai/src/lib/promptGenerators/generateEntityScenarioDataGenerator.ts +110 -6
- package/analyzer-template/packages/ai/src/lib/promptGenerators/generateEntityScenariosGenerator.ts +14 -53
- package/analyzer-template/packages/ai/src/lib/promptGenerators/generateMissingKeysPrompt.ts +58 -0
- package/analyzer-template/packages/ai/src/lib/promptGenerators/guessNewScenarioDataFromDescriptionGenerator.ts +28 -2
- package/analyzer-template/packages/ai/src/lib/promptGenerators/simplifyKeysForLLM.ts +391 -0
- package/analyzer-template/packages/ai/src/lib/resolvePathToControllable.ts +824 -0
- package/analyzer-template/packages/ai/src/lib/splitOutsideParentheses.ts +5 -1
- package/analyzer-template/packages/ai/src/lib/validateExecutionFlowPaths.ts +531 -0
- package/analyzer-template/packages/ai/src/lib/worker/SerializableDataStructure.ts +127 -3
- package/analyzer-template/packages/ai/src/lib/worker/analyzeScopeWorker.ts +121 -2
- package/analyzer-template/packages/analyze/index.ts +2 -0
- package/analyzer-template/packages/analyze/src/lib/FileAnalyzer.ts +79 -59
- package/analyzer-template/packages/analyze/src/lib/ProjectAnalyzer.ts +132 -33
- package/analyzer-template/packages/analyze/src/lib/analysisContext.ts +44 -4
- package/analyzer-template/packages/analyze/src/lib/asts/index.ts +7 -2
- package/analyzer-template/packages/analyze/src/lib/asts/nodes/getNodeType.ts +1 -0
- package/analyzer-template/packages/analyze/src/lib/asts/nodes/index.ts +1 -0
- package/analyzer-template/packages/analyze/src/lib/asts/nodes/isAsyncFunction.ts +67 -0
- package/analyzer-template/packages/analyze/src/lib/asts/sourceFiles/getAllDeclaredEntityNodes.ts +19 -0
- package/analyzer-template/packages/analyze/src/lib/asts/sourceFiles/getAllEntityNodes.ts +19 -0
- package/analyzer-template/packages/analyze/src/lib/asts/sourceFiles/getAllExports.ts +11 -0
- package/analyzer-template/packages/analyze/src/lib/asts/sourceFiles/getImportsAnalysis.ts +8 -0
- package/analyzer-template/packages/analyze/src/lib/asts/sourceFiles/getResolvedModule.ts +49 -1
- package/analyzer-template/packages/analyze/src/lib/asts/sourceFiles/getSourceFilesForAllImports.ts +2 -1
- package/analyzer-template/packages/analyze/src/lib/files/analyze/analyzeEntities/prepareDataStructures.ts +570 -180
- package/analyzer-template/packages/analyze/src/lib/files/analyze/analyzeEntities.ts +62 -1
- package/analyzer-template/packages/analyze/src/lib/files/analyze/findOrCreateEntity.ts +15 -0
- package/analyzer-template/packages/analyze/src/lib/files/analyze/gatherEntityMap.ts +4 -2
- package/analyzer-template/packages/analyze/src/lib/files/analyze/validateDependencyAnalyses.ts +33 -10
- package/analyzer-template/packages/analyze/src/lib/files/analyzeChange.ts +31 -15
- package/analyzer-template/packages/analyze/src/lib/files/analyzeEntity.ts +11 -7
- package/analyzer-template/packages/analyze/src/lib/files/analyzeInitial.ts +11 -12
- package/analyzer-template/packages/analyze/src/lib/files/analyzeRemixRoute.ts +4 -5
- package/analyzer-template/packages/analyze/src/lib/files/enums/steps.ts +1 -1
- package/analyzer-template/packages/analyze/src/lib/files/getImportedExports.ts +22 -13
- package/analyzer-template/packages/analyze/src/lib/files/scenarios/TransformationTracer.ts +1352 -0
- package/analyzer-template/packages/analyze/src/lib/files/scenarios/enrichArrayTypesFromChildSignatures.ts +313 -0
- package/analyzer-template/packages/analyze/src/lib/files/scenarios/enrichUnknownTypesFromSourceEquivalencies.ts +102 -0
- package/analyzer-template/packages/analyze/src/lib/files/scenarios/gatherDataForMocks.ts +675 -77
- package/analyzer-template/packages/analyze/src/lib/files/scenarios/generateChangesScenarioData.ts +1 -1
- package/analyzer-template/packages/analyze/src/lib/files/scenarios/generateChangesScenarios.ts +28 -62
- package/analyzer-template/packages/analyze/src/lib/files/scenarios/generateDataStructure.ts +633 -137
- package/analyzer-template/packages/analyze/src/lib/files/scenarios/generateExecutionFlows.ts +166 -0
- package/analyzer-template/packages/analyze/src/lib/files/scenarios/generateScenarioData.ts +78 -83
- package/analyzer-template/packages/analyze/src/lib/files/scenarios/generateScenarios.ts +4 -8
- package/analyzer-template/packages/analyze/src/lib/files/scenarios/mergeInDependentDataStructure.ts +1087 -168
- package/analyzer-template/packages/analyze/src/lib/files/scenarios/mergeValidatedDataStructures.ts +56 -11
- package/analyzer-template/packages/analyze/src/lib/files/scenarios/propagateArrayItemSchemas.ts +474 -0
- package/analyzer-template/packages/analyze/src/lib/files/setImportedExports.ts +2 -1
- package/analyzer-template/packages/analyze/src/lib/index.ts +1 -0
- package/analyzer-template/packages/analyze/src/lib/utils/getFileByPath.ts +19 -0
- package/analyzer-template/packages/aws/codebuild/index.ts +1 -0
- package/analyzer-template/packages/aws/dist/src/lib/codebuild/waitForBuild.d.ts +11 -1
- package/analyzer-template/packages/aws/dist/src/lib/codebuild/waitForBuild.d.ts.map +1 -1
- package/analyzer-template/packages/aws/dist/src/lib/codebuild/waitForBuild.js +29 -18
- package/analyzer-template/packages/aws/dist/src/lib/codebuild/waitForBuild.js.map +1 -1
- package/analyzer-template/packages/aws/dist/src/lib/ecs/ecsDefineContainer.d.ts +2 -2
- package/analyzer-template/packages/aws/dist/src/lib/ecs/ecsDefineContainer.d.ts.map +1 -1
- package/analyzer-template/packages/aws/dist/src/lib/ecs/ecsDefineContainer.js +2 -2
- package/analyzer-template/packages/aws/dist/src/lib/ecs/ecsDefineContainer.js.map +1 -1
- package/analyzer-template/packages/aws/dist/src/lib/ecs/ecsTaskFactory.d.ts +8 -18
- package/analyzer-template/packages/aws/dist/src/lib/ecs/ecsTaskFactory.d.ts.map +1 -1
- package/analyzer-template/packages/aws/dist/src/lib/ecs/ecsTaskFactory.js +17 -61
- package/analyzer-template/packages/aws/dist/src/lib/ecs/ecsTaskFactory.js.map +1 -1
- package/analyzer-template/packages/aws/dist/src/lib/s3/checkS3ObjectExists.d.ts +15 -0
- package/analyzer-template/packages/aws/dist/src/lib/s3/checkS3ObjectExists.d.ts.map +1 -0
- package/analyzer-template/packages/aws/dist/src/lib/s3/checkS3ObjectExists.js +31 -0
- package/analyzer-template/packages/aws/dist/src/lib/s3/checkS3ObjectExists.js.map +1 -0
- package/analyzer-template/packages/aws/dist/src/lib/s3/uploadFileToS3.d.ts.map +1 -1
- package/analyzer-template/packages/aws/dist/src/lib/s3/uploadFileToS3.js +8 -1
- package/analyzer-template/packages/aws/dist/src/lib/s3/uploadFileToS3.js.map +1 -1
- package/analyzer-template/packages/aws/package.json +10 -10
- package/analyzer-template/packages/aws/s3/index.ts +1 -0
- package/analyzer-template/packages/aws/src/lib/codebuild/waitForBuild.ts +43 -19
- package/analyzer-template/packages/aws/src/lib/ecs/ecsDefineContainer.ts +3 -3
- package/analyzer-template/packages/aws/src/lib/ecs/ecsTaskFactory.ts +17 -69
- package/analyzer-template/packages/aws/src/lib/s3/checkS3ObjectExists.ts +47 -0
- package/analyzer-template/packages/aws/src/lib/s3/uploadFileToS3.ts +8 -1
- package/analyzer-template/packages/database/index.ts +1 -0
- package/analyzer-template/packages/database/package.json +4 -4
- package/analyzer-template/packages/database/src/lib/analysisBranchToDb.ts +1 -1
- package/analyzer-template/packages/database/src/lib/analysisToDb.ts +1 -1
- package/analyzer-template/packages/database/src/lib/branchToDb.ts +1 -1
- package/analyzer-template/packages/database/src/lib/commitBranchToDb.ts +1 -1
- package/analyzer-template/packages/database/src/lib/commitToDb.ts +1 -1
- package/analyzer-template/packages/database/src/lib/fileToDb.ts +1 -1
- package/analyzer-template/packages/database/src/lib/kysely/db.ts +26 -5
- package/analyzer-template/packages/database/src/lib/kysely/tableRelations.ts +2 -2
- package/analyzer-template/packages/database/src/lib/kysely/tables/commitsTable.ts +6 -0
- package/analyzer-template/packages/database/src/lib/kysely/tables/debugReportsTable.ts +36 -9
- package/analyzer-template/packages/database/src/lib/kysely/tables/editorScenariosTable.ts +164 -0
- package/analyzer-template/packages/database/src/lib/kysely/tables/labsRequestsTable.ts +52 -0
- package/analyzer-template/packages/database/src/lib/loadAnalyses.ts +58 -1
- package/analyzer-template/packages/database/src/lib/loadAnalysis.ts +13 -0
- package/analyzer-template/packages/database/src/lib/loadBranch.ts +16 -1
- package/analyzer-template/packages/database/src/lib/loadCommit.ts +11 -0
- package/analyzer-template/packages/database/src/lib/loadCommits.ts +58 -19
- package/analyzer-template/packages/database/src/lib/loadEntities.ts +26 -9
- package/analyzer-template/packages/database/src/lib/loadEntityBranches.ts +12 -0
- package/analyzer-template/packages/database/src/lib/loadReadyToBeCapturedAnalyses.ts +5 -5
- package/analyzer-template/packages/database/src/lib/projectToDb.ts +1 -1
- package/analyzer-template/packages/database/src/lib/saveFiles.ts +1 -1
- package/analyzer-template/packages/database/src/lib/scenarioToDb.ts +1 -1
- package/analyzer-template/packages/database/src/lib/updateCommitMetadata.ts +96 -152
- package/analyzer-template/packages/database/src/lib/updateFreshAnalysisStatus.ts +58 -42
- package/analyzer-template/packages/database/src/lib/updateFreshAnalysisStatusWithScenarios.ts +81 -65
- package/analyzer-template/packages/database/src/lib/userScenarioToDb.ts +1 -1
- package/analyzer-template/packages/generate/index.ts +3 -0
- package/analyzer-template/packages/generate/src/lib/componentScenarioPage/componentScenarioPageNext.ts +17 -1
- package/analyzer-template/packages/generate/src/lib/componentScenarioPage/generateScenarioClientWrapper.ts +221 -0
- package/analyzer-template/packages/generate/src/lib/componentScenarioPage/generateScenarioServerComponent.ts +73 -0
- package/analyzer-template/packages/generate/src/lib/componentScenarioPage/getIFrameMessageListenerCode.ts +42 -9
- package/analyzer-template/packages/generate/src/lib/deepMerge.ts +26 -1
- package/analyzer-template/packages/generate/src/lib/getComponentScenarioPath.ts +8 -3
- package/analyzer-template/packages/generate/src/lib/scenarioComponentForServer.ts +114 -0
- package/analyzer-template/packages/github/dist/database/index.d.ts +1 -0
- package/analyzer-template/packages/github/dist/database/index.d.ts.map +1 -1
- package/analyzer-template/packages/github/dist/database/index.js +1 -0
- package/analyzer-template/packages/github/dist/database/index.js.map +1 -1
- package/analyzer-template/packages/github/dist/database/src/lib/analysisBranchToDb.js +1 -1
- package/analyzer-template/packages/github/dist/database/src/lib/analysisBranchToDb.js.map +1 -1
- package/analyzer-template/packages/github/dist/database/src/lib/analysisToDb.js +1 -1
- package/analyzer-template/packages/github/dist/database/src/lib/analysisToDb.js.map +1 -1
- package/analyzer-template/packages/github/dist/database/src/lib/branchToDb.js +1 -1
- package/analyzer-template/packages/github/dist/database/src/lib/branchToDb.js.map +1 -1
- package/analyzer-template/packages/github/dist/database/src/lib/commitBranchToDb.js +1 -1
- package/analyzer-template/packages/github/dist/database/src/lib/commitBranchToDb.js.map +1 -1
- package/analyzer-template/packages/github/dist/database/src/lib/commitToDb.js +1 -1
- package/analyzer-template/packages/github/dist/database/src/lib/commitToDb.js.map +1 -1
- package/analyzer-template/packages/github/dist/database/src/lib/fileToDb.js +1 -1
- package/analyzer-template/packages/github/dist/database/src/lib/fileToDb.js.map +1 -1
- package/analyzer-template/packages/github/dist/database/src/lib/kysely/db.d.ts +6 -2
- package/analyzer-template/packages/github/dist/database/src/lib/kysely/db.d.ts.map +1 -1
- package/analyzer-template/packages/github/dist/database/src/lib/kysely/db.js +18 -3
- package/analyzer-template/packages/github/dist/database/src/lib/kysely/db.js.map +1 -1
- package/analyzer-template/packages/github/dist/database/src/lib/kysely/tableRelations.d.ts +2 -2
- package/analyzer-template/packages/github/dist/database/src/lib/kysely/tables/analysesTable.d.ts +1 -11
- package/analyzer-template/packages/github/dist/database/src/lib/kysely/tables/analysesTable.d.ts.map +1 -1
- package/analyzer-template/packages/github/dist/database/src/lib/kysely/tables/commitsTable.d.ts +1 -0
- package/analyzer-template/packages/github/dist/database/src/lib/kysely/tables/commitsTable.d.ts.map +1 -1
- package/analyzer-template/packages/github/dist/database/src/lib/kysely/tables/commitsTable.js +3 -0
- package/analyzer-template/packages/github/dist/database/src/lib/kysely/tables/commitsTable.js.map +1 -1
- package/analyzer-template/packages/github/dist/database/src/lib/kysely/tables/debugReportsTable.d.ts +30 -7
- package/analyzer-template/packages/github/dist/database/src/lib/kysely/tables/debugReportsTable.d.ts.map +1 -1
- package/analyzer-template/packages/github/dist/database/src/lib/kysely/tables/debugReportsTable.js +9 -3
- package/analyzer-template/packages/github/dist/database/src/lib/kysely/tables/debugReportsTable.js.map +1 -1
- package/analyzer-template/packages/github/dist/database/src/lib/kysely/tables/editorScenariosTable.d.ts +29 -0
- package/analyzer-template/packages/github/dist/database/src/lib/kysely/tables/editorScenariosTable.d.ts.map +1 -0
- package/analyzer-template/packages/github/dist/database/src/lib/kysely/tables/editorScenariosTable.js +149 -0
- package/analyzer-template/packages/github/dist/database/src/lib/kysely/tables/editorScenariosTable.js.map +1 -0
- package/analyzer-template/packages/github/dist/database/src/lib/kysely/tables/entitiesTable.d.ts +1 -0
- package/analyzer-template/packages/github/dist/database/src/lib/kysely/tables/entitiesTable.d.ts.map +1 -1
- package/analyzer-template/packages/github/dist/database/src/lib/kysely/tables/labsRequestsTable.d.ts +23 -0
- package/analyzer-template/packages/github/dist/database/src/lib/kysely/tables/labsRequestsTable.d.ts.map +1 -0
- package/analyzer-template/packages/github/dist/database/src/lib/kysely/tables/labsRequestsTable.js +35 -0
- package/analyzer-template/packages/github/dist/database/src/lib/kysely/tables/labsRequestsTable.js.map +1 -0
- package/analyzer-template/packages/github/dist/database/src/lib/kysely/tables/scenariosTable.d.ts +7 -6
- package/analyzer-template/packages/github/dist/database/src/lib/kysely/tables/scenariosTable.d.ts.map +1 -1
- package/analyzer-template/packages/github/dist/database/src/lib/loadAnalyses.d.ts +2 -0
- package/analyzer-template/packages/github/dist/database/src/lib/loadAnalyses.d.ts.map +1 -1
- package/analyzer-template/packages/github/dist/database/src/lib/loadAnalyses.js +45 -2
- package/analyzer-template/packages/github/dist/database/src/lib/loadAnalyses.js.map +1 -1
- package/analyzer-template/packages/github/dist/database/src/lib/loadAnalysis.d.ts.map +1 -1
- package/analyzer-template/packages/github/dist/database/src/lib/loadAnalysis.js +8 -0
- package/analyzer-template/packages/github/dist/database/src/lib/loadAnalysis.js.map +1 -1
- package/analyzer-template/packages/github/dist/database/src/lib/loadBranch.js +11 -1
- package/analyzer-template/packages/github/dist/database/src/lib/loadBranch.js.map +1 -1
- package/analyzer-template/packages/github/dist/database/src/lib/loadCommit.d.ts.map +1 -1
- package/analyzer-template/packages/github/dist/database/src/lib/loadCommit.js +7 -0
- package/analyzer-template/packages/github/dist/database/src/lib/loadCommit.js.map +1 -1
- package/analyzer-template/packages/github/dist/database/src/lib/loadCommits.d.ts +3 -1
- package/analyzer-template/packages/github/dist/database/src/lib/loadCommits.d.ts.map +1 -1
- package/analyzer-template/packages/github/dist/database/src/lib/loadCommits.js +45 -14
- package/analyzer-template/packages/github/dist/database/src/lib/loadCommits.js.map +1 -1
- package/analyzer-template/packages/github/dist/database/src/lib/loadEntities.d.ts +3 -1
- package/analyzer-template/packages/github/dist/database/src/lib/loadEntities.d.ts.map +1 -1
- package/analyzer-template/packages/github/dist/database/src/lib/loadEntities.js +23 -10
- package/analyzer-template/packages/github/dist/database/src/lib/loadEntities.js.map +1 -1
- package/analyzer-template/packages/github/dist/database/src/lib/loadEntityBranches.d.ts.map +1 -1
- package/analyzer-template/packages/github/dist/database/src/lib/loadEntityBranches.js +9 -0
- package/analyzer-template/packages/github/dist/database/src/lib/loadEntityBranches.js.map +1 -1
- package/analyzer-template/packages/github/dist/database/src/lib/loadReadyToBeCapturedAnalyses.js +5 -3
- package/analyzer-template/packages/github/dist/database/src/lib/loadReadyToBeCapturedAnalyses.js.map +1 -1
- package/analyzer-template/packages/github/dist/database/src/lib/projectToDb.js +1 -1
- package/analyzer-template/packages/github/dist/database/src/lib/projectToDb.js.map +1 -1
- package/analyzer-template/packages/github/dist/database/src/lib/saveFiles.js +1 -1
- package/analyzer-template/packages/github/dist/database/src/lib/saveFiles.js.map +1 -1
- package/analyzer-template/packages/github/dist/database/src/lib/scenarioToDb.js +1 -1
- package/analyzer-template/packages/github/dist/database/src/lib/scenarioToDb.js.map +1 -1
- package/analyzer-template/packages/github/dist/database/src/lib/updateCommitMetadata.d.ts +2 -2
- package/analyzer-template/packages/github/dist/database/src/lib/updateCommitMetadata.d.ts.map +1 -1
- package/analyzer-template/packages/github/dist/database/src/lib/updateCommitMetadata.js +76 -89
- package/analyzer-template/packages/github/dist/database/src/lib/updateCommitMetadata.js.map +1 -1
- package/analyzer-template/packages/github/dist/database/src/lib/updateFreshAnalysisStatus.d.ts.map +1 -1
- package/analyzer-template/packages/github/dist/database/src/lib/updateFreshAnalysisStatus.js +41 -30
- package/analyzer-template/packages/github/dist/database/src/lib/updateFreshAnalysisStatus.js.map +1 -1
- package/analyzer-template/packages/github/dist/database/src/lib/updateFreshAnalysisStatusWithScenarios.d.ts.map +1 -1
- package/analyzer-template/packages/github/dist/database/src/lib/updateFreshAnalysisStatusWithScenarios.js +68 -57
- package/analyzer-template/packages/github/dist/database/src/lib/updateFreshAnalysisStatusWithScenarios.js.map +1 -1
- package/analyzer-template/packages/github/dist/generate/index.d.ts +3 -0
- package/analyzer-template/packages/github/dist/generate/index.d.ts.map +1 -1
- package/analyzer-template/packages/github/dist/generate/index.js +3 -0
- package/analyzer-template/packages/github/dist/generate/index.js.map +1 -1
- package/analyzer-template/packages/github/dist/generate/src/lib/componentScenarioPage/componentScenarioPageNext.d.ts.map +1 -1
- package/analyzer-template/packages/github/dist/generate/src/lib/componentScenarioPage/componentScenarioPageNext.js +16 -1
- package/analyzer-template/packages/github/dist/generate/src/lib/componentScenarioPage/componentScenarioPageNext.js.map +1 -1
- package/analyzer-template/packages/github/dist/generate/src/lib/componentScenarioPage/generateScenarioClientWrapper.d.ts +9 -0
- package/analyzer-template/packages/github/dist/generate/src/lib/componentScenarioPage/generateScenarioClientWrapper.d.ts.map +1 -0
- package/analyzer-template/packages/github/dist/generate/src/lib/componentScenarioPage/generateScenarioClientWrapper.js +217 -0
- package/analyzer-template/packages/github/dist/generate/src/lib/componentScenarioPage/generateScenarioClientWrapper.js.map +1 -0
- package/analyzer-template/packages/github/dist/generate/src/lib/componentScenarioPage/generateScenarioServerComponent.d.ts +20 -0
- package/analyzer-template/packages/github/dist/generate/src/lib/componentScenarioPage/generateScenarioServerComponent.d.ts.map +1 -0
- package/analyzer-template/packages/github/dist/generate/src/lib/componentScenarioPage/generateScenarioServerComponent.js +53 -0
- package/analyzer-template/packages/github/dist/generate/src/lib/componentScenarioPage/generateScenarioServerComponent.js.map +1 -0
- package/analyzer-template/packages/github/dist/generate/src/lib/componentScenarioPage/getIFrameMessageListenerCode.d.ts.map +1 -1
- package/analyzer-template/packages/github/dist/generate/src/lib/componentScenarioPage/getIFrameMessageListenerCode.js +41 -9
- package/analyzer-template/packages/github/dist/generate/src/lib/componentScenarioPage/getIFrameMessageListenerCode.js.map +1 -1
- package/analyzer-template/packages/github/dist/generate/src/lib/deepMerge.d.ts.map +1 -1
- package/analyzer-template/packages/github/dist/generate/src/lib/deepMerge.js +27 -1
- package/analyzer-template/packages/github/dist/generate/src/lib/deepMerge.js.map +1 -1
- package/analyzer-template/packages/github/dist/generate/src/lib/getComponentScenarioPath.d.ts.map +1 -1
- package/analyzer-template/packages/github/dist/generate/src/lib/getComponentScenarioPath.js +7 -3
- package/analyzer-template/packages/github/dist/generate/src/lib/getComponentScenarioPath.js.map +1 -1
- package/analyzer-template/packages/github/dist/generate/src/lib/scenarioComponentForServer.d.ts +8 -0
- package/analyzer-template/packages/github/dist/generate/src/lib/scenarioComponentForServer.d.ts.map +1 -0
- package/analyzer-template/packages/github/dist/generate/src/lib/scenarioComponentForServer.js +89 -0
- package/analyzer-template/packages/github/dist/generate/src/lib/scenarioComponentForServer.js.map +1 -0
- package/analyzer-template/packages/github/dist/github/src/lib/loadOrCreateCommit.d.ts.map +1 -1
- package/analyzer-template/packages/github/dist/github/src/lib/loadOrCreateCommit.js +10 -0
- package/analyzer-template/packages/github/dist/github/src/lib/loadOrCreateCommit.js.map +1 -1
- package/analyzer-template/packages/github/dist/github/src/lib/syncPrimaryBranch.d.ts.map +1 -1
- package/analyzer-template/packages/github/dist/github/src/lib/syncPrimaryBranch.js +3 -0
- package/analyzer-template/packages/github/dist/github/src/lib/syncPrimaryBranch.js.map +1 -1
- package/analyzer-template/packages/github/dist/types/index.d.ts +2 -2
- package/analyzer-template/packages/github/dist/types/index.d.ts.map +1 -1
- package/analyzer-template/packages/github/dist/types/index.js.map +1 -1
- package/analyzer-template/packages/github/dist/types/src/enums/ProjectFramework.d.ts +2 -0
- package/analyzer-template/packages/github/dist/types/src/enums/ProjectFramework.d.ts.map +1 -1
- package/analyzer-template/packages/github/dist/types/src/enums/ProjectFramework.js +2 -0
- package/analyzer-template/packages/github/dist/types/src/enums/ProjectFramework.js.map +1 -1
- package/analyzer-template/packages/github/dist/types/src/types/Analysis.d.ts +87 -13
- package/analyzer-template/packages/github/dist/types/src/types/Analysis.d.ts.map +1 -1
- package/analyzer-template/packages/github/dist/types/src/types/Commit.d.ts +2 -0
- package/analyzer-template/packages/github/dist/types/src/types/Commit.d.ts.map +1 -1
- package/analyzer-template/packages/github/dist/types/src/types/Entity.d.ts +2 -0
- package/analyzer-template/packages/github/dist/types/src/types/Entity.d.ts.map +1 -1
- package/analyzer-template/packages/github/dist/types/src/types/ProjectMetadata.d.ts +8 -0
- package/analyzer-template/packages/github/dist/types/src/types/ProjectMetadata.d.ts.map +1 -1
- package/analyzer-template/packages/github/dist/types/src/types/Scenario.d.ts +21 -6
- package/analyzer-template/packages/github/dist/types/src/types/Scenario.d.ts.map +1 -1
- package/analyzer-template/packages/github/dist/types/src/types/ScenariosDataStructure.d.ts +199 -3
- package/analyzer-template/packages/github/dist/types/src/types/ScenariosDataStructure.d.ts.map +1 -1
- package/analyzer-template/packages/github/dist/types/src/types/ScopeAnalysis.d.ts +6 -1
- package/analyzer-template/packages/github/dist/types/src/types/ScopeAnalysis.d.ts.map +1 -1
- package/analyzer-template/packages/github/dist/types/src/types/StatementInfo.d.ts +2 -0
- package/analyzer-template/packages/github/dist/types/src/types/StatementInfo.d.ts.map +1 -1
- package/analyzer-template/packages/github/dist/utils/src/lib/applyUniversalMocks.d.ts.map +1 -1
- package/analyzer-template/packages/github/dist/utils/src/lib/applyUniversalMocks.js +26 -2
- package/analyzer-template/packages/github/dist/utils/src/lib/applyUniversalMocks.js.map +1 -1
- package/analyzer-template/packages/github/dist/utils/src/lib/lightweightEntityExtractor.d.ts.map +1 -1
- package/analyzer-template/packages/github/dist/utils/src/lib/lightweightEntityExtractor.js +25 -0
- package/analyzer-template/packages/github/dist/utils/src/lib/lightweightEntityExtractor.js.map +1 -1
- package/analyzer-template/packages/github/dist/utils/src/lib/safeFileName.d.ts +9 -1
- package/analyzer-template/packages/github/dist/utils/src/lib/safeFileName.d.ts.map +1 -1
- package/analyzer-template/packages/github/dist/utils/src/lib/safeFileName.js +29 -3
- package/analyzer-template/packages/github/dist/utils/src/lib/safeFileName.js.map +1 -1
- package/analyzer-template/packages/github/package.json +2 -2
- package/analyzer-template/packages/github/src/lib/loadOrCreateCommit.ts +14 -0
- package/analyzer-template/packages/github/src/lib/syncPrimaryBranch.ts +2 -0
- package/analyzer-template/packages/process/index.ts +2 -0
- package/analyzer-template/packages/process/package.json +12 -0
- package/analyzer-template/packages/process/tsconfig.json +8 -0
- package/analyzer-template/packages/types/index.ts +5 -0
- package/analyzer-template/packages/types/src/enums/ProjectFramework.ts +2 -0
- package/analyzer-template/packages/types/src/types/Analysis.ts +104 -13
- package/analyzer-template/packages/types/src/types/Commit.ts +2 -0
- package/analyzer-template/packages/types/src/types/Entity.ts +2 -0
- package/analyzer-template/packages/types/src/types/ProjectMetadata.ts +8 -0
- package/analyzer-template/packages/types/src/types/Scenario.ts +21 -10
- package/analyzer-template/packages/types/src/types/ScenariosDataStructure.ts +228 -3
- package/analyzer-template/packages/types/src/types/ScopeAnalysis.ts +6 -1
- package/analyzer-template/packages/types/src/types/StatementInfo.ts +2 -0
- package/analyzer-template/packages/ui-components/package.json +5 -5
- package/analyzer-template/packages/ui-components/src/components/ScenarioDetailInteractiveView.tsx +23 -7
- package/analyzer-template/packages/utils/dist/types/index.d.ts +2 -2
- package/analyzer-template/packages/utils/dist/types/index.d.ts.map +1 -1
- package/analyzer-template/packages/utils/dist/types/index.js.map +1 -1
- package/analyzer-template/packages/utils/dist/types/src/enums/ProjectFramework.d.ts +2 -0
- package/analyzer-template/packages/utils/dist/types/src/enums/ProjectFramework.d.ts.map +1 -1
- package/analyzer-template/packages/utils/dist/types/src/enums/ProjectFramework.js +2 -0
- package/analyzer-template/packages/utils/dist/types/src/enums/ProjectFramework.js.map +1 -1
- package/analyzer-template/packages/utils/dist/types/src/types/Analysis.d.ts +87 -13
- package/analyzer-template/packages/utils/dist/types/src/types/Analysis.d.ts.map +1 -1
- package/analyzer-template/packages/utils/dist/types/src/types/Commit.d.ts +2 -0
- package/analyzer-template/packages/utils/dist/types/src/types/Commit.d.ts.map +1 -1
- package/analyzer-template/packages/utils/dist/types/src/types/Entity.d.ts +2 -0
- package/analyzer-template/packages/utils/dist/types/src/types/Entity.d.ts.map +1 -1
- package/analyzer-template/packages/utils/dist/types/src/types/ProjectMetadata.d.ts +8 -0
- package/analyzer-template/packages/utils/dist/types/src/types/ProjectMetadata.d.ts.map +1 -1
- package/analyzer-template/packages/utils/dist/types/src/types/Scenario.d.ts +21 -6
- package/analyzer-template/packages/utils/dist/types/src/types/Scenario.d.ts.map +1 -1
- package/analyzer-template/packages/utils/dist/types/src/types/ScenariosDataStructure.d.ts +199 -3
- package/analyzer-template/packages/utils/dist/types/src/types/ScenariosDataStructure.d.ts.map +1 -1
- package/analyzer-template/packages/utils/dist/types/src/types/ScopeAnalysis.d.ts +6 -1
- package/analyzer-template/packages/utils/dist/types/src/types/ScopeAnalysis.d.ts.map +1 -1
- package/analyzer-template/packages/utils/dist/types/src/types/StatementInfo.d.ts +2 -0
- package/analyzer-template/packages/utils/dist/types/src/types/StatementInfo.d.ts.map +1 -1
- package/analyzer-template/packages/utils/dist/utils/src/lib/applyUniversalMocks.d.ts.map +1 -1
- package/analyzer-template/packages/utils/dist/utils/src/lib/applyUniversalMocks.js +26 -2
- package/analyzer-template/packages/utils/dist/utils/src/lib/applyUniversalMocks.js.map +1 -1
- package/analyzer-template/packages/utils/dist/utils/src/lib/fs/rsyncCopy.d.ts.map +1 -1
- package/analyzer-template/packages/utils/dist/utils/src/lib/fs/rsyncCopy.js +98 -3
- package/analyzer-template/packages/utils/dist/utils/src/lib/fs/rsyncCopy.js.map +1 -1
- package/analyzer-template/packages/utils/dist/utils/src/lib/lightweightEntityExtractor.d.ts.map +1 -1
- package/analyzer-template/packages/utils/dist/utils/src/lib/lightweightEntityExtractor.js +25 -0
- package/analyzer-template/packages/utils/dist/utils/src/lib/lightweightEntityExtractor.js.map +1 -1
- package/analyzer-template/packages/utils/dist/utils/src/lib/safeFileName.d.ts +9 -1
- package/analyzer-template/packages/utils/dist/utils/src/lib/safeFileName.d.ts.map +1 -1
- package/analyzer-template/packages/utils/dist/utils/src/lib/safeFileName.js +29 -3
- package/analyzer-template/packages/utils/dist/utils/src/lib/safeFileName.js.map +1 -1
- package/analyzer-template/packages/utils/src/lib/applyUniversalMocks.ts +28 -2
- package/analyzer-template/packages/utils/src/lib/fs/rsyncCopy.ts +121 -3
- package/analyzer-template/packages/utils/src/lib/lightweightEntityExtractor.ts +27 -0
- package/analyzer-template/packages/utils/src/lib/safeFileName.ts +48 -3
- package/analyzer-template/playwright/capture.ts +57 -26
- package/analyzer-template/playwright/captureFromUrl.ts +89 -82
- package/analyzer-template/playwright/captureStatic.ts +1 -1
- package/analyzer-template/playwright/getCodeYamInfo.ts +12 -7
- package/analyzer-template/playwright/takeElementScreenshot.ts +26 -11
- package/analyzer-template/playwright/takeScreenshot.ts +9 -7
- package/analyzer-template/playwright/waitForServer.ts +21 -6
- package/analyzer-template/project/TESTING.md +83 -0
- package/analyzer-template/project/analyzeBaselineCommit.ts +9 -0
- package/analyzer-template/project/analyzeBranchCommit.ts +4 -0
- package/analyzer-template/project/analyzeFileEntities.ts +4 -0
- package/analyzer-template/project/analyzeRegularCommit.ts +9 -0
- package/analyzer-template/project/captureLibraryFunctionDirect.ts +29 -26
- package/analyzer-template/project/constructMockCode.ts +1453 -189
- package/analyzer-template/project/controller/startController.ts +16 -1
- package/analyzer-template/project/createEntitiesAndSortFiles.ts +83 -0
- package/analyzer-template/project/executeLibraryFunctionDirect.ts +7 -3
- package/analyzer-template/project/loadReadyToBeCaptured.ts +82 -42
- package/analyzer-template/project/mocks/analyzeFileMock.ts +8 -7
- package/analyzer-template/project/orchestrateCapture/AwsCaptureTaskRunner.ts +12 -4
- package/analyzer-template/project/orchestrateCapture/KyselyAnalysisLoader.ts +13 -9
- package/analyzer-template/project/orchestrateCapture/SequentialCaptureTaskRunner.ts +93 -42
- package/analyzer-template/project/orchestrateCapture/taskRunner.ts +4 -2
- package/analyzer-template/project/orchestrateCapture.ts +85 -10
- package/analyzer-template/project/reconcileMockDataKeys.ts +251 -3
- package/analyzer-template/project/runAnalysis.ts +11 -0
- package/analyzer-template/project/runMultiScenarioServer.ts +11 -10
- package/analyzer-template/project/serverOnlyModules.ts +413 -0
- package/analyzer-template/project/start.ts +64 -15
- package/analyzer-template/project/startScenarioCapture.ts +88 -41
- package/analyzer-template/project/writeClientLogRoute.ts +125 -0
- package/analyzer-template/project/writeMockDataTsx.ts +458 -65
- package/analyzer-template/project/writeScenarioClientWrapper.ts +21 -0
- package/analyzer-template/project/writeScenarioComponents.ts +1529 -237
- package/analyzer-template/project/writeScenarioFiles.ts +26 -0
- package/analyzer-template/project/writeSimpleRoot.ts +31 -23
- package/analyzer-template/project/writeUniversalMocks.ts +32 -11
- package/analyzer-template/scripts/comboWorkerLoop.cjs +99 -50
- package/analyzer-template/scripts/defaultCmd.sh +9 -0
- package/analyzer-template/tsconfig.json +14 -1
- package/background/src/lib/local/createLocalAnalyzer.js +2 -30
- package/background/src/lib/local/createLocalAnalyzer.js.map +1 -1
- package/background/src/lib/local/execAsync.js +1 -1
- package/background/src/lib/local/execAsync.js.map +1 -1
- package/background/src/lib/virtualized/common/execAsync.js +1 -1
- package/background/src/lib/virtualized/common/execAsync.js.map +1 -1
- package/background/src/lib/virtualized/project/analyzeBaselineCommit.js +7 -1
- package/background/src/lib/virtualized/project/analyzeBaselineCommit.js.map +1 -1
- package/background/src/lib/virtualized/project/analyzeBranchCommit.js +2 -1
- package/background/src/lib/virtualized/project/analyzeBranchCommit.js.map +1 -1
- package/background/src/lib/virtualized/project/analyzeFileEntities.js +2 -1
- package/background/src/lib/virtualized/project/analyzeFileEntities.js.map +1 -1
- package/background/src/lib/virtualized/project/analyzeRegularCommit.js +7 -1
- package/background/src/lib/virtualized/project/analyzeRegularCommit.js.map +1 -1
- package/background/src/lib/virtualized/project/captureLibraryFunctionDirect.js +3 -3
- package/background/src/lib/virtualized/project/captureLibraryFunctionDirect.js.map +1 -1
- package/background/src/lib/virtualized/project/constructMockCode.js +1283 -144
- package/background/src/lib/virtualized/project/constructMockCode.js.map +1 -1
- package/background/src/lib/virtualized/project/controller/startController.js +11 -1
- package/background/src/lib/virtualized/project/controller/startController.js.map +1 -1
- package/background/src/lib/virtualized/project/createEntitiesAndSortFiles.js +73 -1
- package/background/src/lib/virtualized/project/createEntitiesAndSortFiles.js.map +1 -1
- package/background/src/lib/virtualized/project/executeLibraryFunctionDirect.js +6 -3
- package/background/src/lib/virtualized/project/executeLibraryFunctionDirect.js.map +1 -1
- package/background/src/lib/virtualized/project/loadReadyToBeCaptured.js +34 -9
- package/background/src/lib/virtualized/project/loadReadyToBeCaptured.js.map +1 -1
- package/background/src/lib/virtualized/project/mocks/analyzeFileMock.js +7 -7
- package/background/src/lib/virtualized/project/mocks/analyzeFileMock.js.map +1 -1
- package/background/src/lib/virtualized/project/orchestrateCapture/AwsCaptureTaskRunner.js +2 -2
- package/background/src/lib/virtualized/project/orchestrateCapture/AwsCaptureTaskRunner.js.map +1 -1
- package/background/src/lib/virtualized/project/orchestrateCapture/KyselyAnalysisLoader.js +12 -6
- package/background/src/lib/virtualized/project/orchestrateCapture/KyselyAnalysisLoader.js.map +1 -1
- package/background/src/lib/virtualized/project/orchestrateCapture/SequentialCaptureTaskRunner.js +73 -36
- package/background/src/lib/virtualized/project/orchestrateCapture/SequentialCaptureTaskRunner.js.map +1 -1
- package/background/src/lib/virtualized/project/orchestrateCapture.js +69 -11
- package/background/src/lib/virtualized/project/orchestrateCapture.js.map +1 -1
- package/background/src/lib/virtualized/project/reconcileMockDataKeys.js +211 -3
- package/background/src/lib/virtualized/project/reconcileMockDataKeys.js.map +1 -1
- package/background/src/lib/virtualized/project/runAnalysis.js +9 -0
- package/background/src/lib/virtualized/project/runAnalysis.js.map +1 -1
- package/background/src/lib/virtualized/project/runMultiScenarioServer.js +11 -9
- package/background/src/lib/virtualized/project/runMultiScenarioServer.js.map +1 -1
- package/background/src/lib/virtualized/project/serverOnlyModules.js +338 -0
- package/background/src/lib/virtualized/project/serverOnlyModules.js.map +1 -0
- package/background/src/lib/virtualized/project/start.js +55 -15
- package/background/src/lib/virtualized/project/start.js.map +1 -1
- package/background/src/lib/virtualized/project/startScenarioCapture.js +66 -31
- package/background/src/lib/virtualized/project/startScenarioCapture.js.map +1 -1
- package/background/src/lib/virtualized/project/writeClientLogRoute.js +110 -0
- package/background/src/lib/virtualized/project/writeClientLogRoute.js.map +1 -0
- package/background/src/lib/virtualized/project/writeMockDataTsx.js +393 -54
- package/background/src/lib/virtualized/project/writeMockDataTsx.js.map +1 -1
- package/background/src/lib/virtualized/project/writeScenarioClientWrapper.js +15 -0
- package/background/src/lib/virtualized/project/writeScenarioClientWrapper.js.map +1 -0
- package/background/src/lib/virtualized/project/writeScenarioComponents.js +1129 -161
- package/background/src/lib/virtualized/project/writeScenarioComponents.js.map +1 -1
- package/background/src/lib/virtualized/project/writeScenarioFiles.js +19 -0
- package/background/src/lib/virtualized/project/writeScenarioFiles.js.map +1 -1
- package/background/src/lib/virtualized/project/writeSimpleRoot.js +31 -21
- package/background/src/lib/virtualized/project/writeSimpleRoot.js.map +1 -1
- package/background/src/lib/virtualized/project/writeUniversalMocks.js +27 -12
- package/background/src/lib/virtualized/project/writeUniversalMocks.js.map +1 -1
- package/codeyam-cli/scripts/apply-setup.js +386 -9
- package/codeyam-cli/scripts/apply-setup.js.map +1 -1
- package/codeyam-cli/src/__tests__/memory-scripts/filter-session.test.js +196 -0
- package/codeyam-cli/src/__tests__/memory-scripts/filter-session.test.js.map +1 -0
- package/codeyam-cli/src/__tests__/memory-scripts/read-json-field.test.js +114 -0
- package/codeyam-cli/src/__tests__/memory-scripts/read-json-field.test.js.map +1 -0
- package/codeyam-cli/src/__tests__/memory-scripts/ripgrep-fallback.test.js +149 -0
- package/codeyam-cli/src/__tests__/memory-scripts/ripgrep-fallback.test.js.map +1 -0
- package/codeyam-cli/src/cli.js +48 -22
- package/codeyam-cli/src/cli.js.map +1 -1
- package/codeyam-cli/src/codeyam-cli.js +18 -2
- package/codeyam-cli/src/codeyam-cli.js.map +1 -1
- package/codeyam-cli/src/commands/__tests__/editor.isolateArgs.test.js +51 -0
- package/codeyam-cli/src/commands/__tests__/editor.isolateArgs.test.js.map +1 -0
- package/codeyam-cli/src/commands/__tests__/editor.stepDispatch.test.js +56 -0
- package/codeyam-cli/src/commands/__tests__/editor.stepDispatch.test.js.map +1 -0
- package/codeyam-cli/src/commands/__tests__/init.gitignore.test.js +101 -47
- package/codeyam-cli/src/commands/__tests__/init.gitignore.test.js.map +1 -1
- package/codeyam-cli/src/commands/analyze.js +22 -10
- package/codeyam-cli/src/commands/analyze.js.map +1 -1
- package/codeyam-cli/src/commands/baseline.js +176 -0
- package/codeyam-cli/src/commands/baseline.js.map +1 -0
- package/codeyam-cli/src/commands/debug.js +44 -18
- package/codeyam-cli/src/commands/debug.js.map +1 -1
- package/codeyam-cli/src/commands/default.js +43 -35
- package/codeyam-cli/src/commands/default.js.map +1 -1
- package/codeyam-cli/src/commands/editor.js +4692 -0
- package/codeyam-cli/src/commands/editor.js.map +1 -0
- package/codeyam-cli/src/commands/editorIsolateArgs.js +25 -0
- package/codeyam-cli/src/commands/editorIsolateArgs.js.map +1 -0
- package/codeyam-cli/src/commands/init.js +148 -292
- package/codeyam-cli/src/commands/init.js.map +1 -1
- package/codeyam-cli/src/commands/memory.js +278 -0
- package/codeyam-cli/src/commands/memory.js.map +1 -0
- package/codeyam-cli/src/commands/recapture.js +228 -0
- package/codeyam-cli/src/commands/recapture.js.map +1 -0
- package/codeyam-cli/src/commands/report.js +72 -24
- package/codeyam-cli/src/commands/report.js.map +1 -1
- package/codeyam-cli/src/commands/setup-sandbox.js +2 -0
- package/codeyam-cli/src/commands/setup-sandbox.js.map +1 -1
- package/codeyam-cli/src/commands/setup-simulations.js +284 -0
- package/codeyam-cli/src/commands/setup-simulations.js.map +1 -0
- package/codeyam-cli/src/commands/start.js +8 -12
- package/codeyam-cli/src/commands/start.js.map +1 -1
- package/codeyam-cli/src/commands/status.js +23 -1
- package/codeyam-cli/src/commands/status.js.map +1 -1
- package/codeyam-cli/src/commands/telemetry.js +37 -0
- package/codeyam-cli/src/commands/telemetry.js.map +1 -0
- package/codeyam-cli/src/commands/test-startup.js +3 -1
- package/codeyam-cli/src/commands/test-startup.js.map +1 -1
- package/codeyam-cli/src/commands/verify.js +14 -2
- package/codeyam-cli/src/commands/verify.js.map +1 -1
- package/codeyam-cli/src/commands/wipe.js +108 -0
- package/codeyam-cli/src/commands/wipe.js.map +1 -0
- package/codeyam-cli/src/data/techStacks.js +77 -0
- package/codeyam-cli/src/data/techStacks.js.map +1 -0
- package/codeyam-cli/src/utils/__tests__/analyzerFinalization.test.js +173 -0
- package/codeyam-cli/src/utils/__tests__/analyzerFinalization.test.js.map +1 -0
- package/codeyam-cli/src/utils/__tests__/backgroundServer.test.js +46 -0
- package/codeyam-cli/src/utils/__tests__/backgroundServer.test.js.map +1 -0
- package/codeyam-cli/src/utils/__tests__/devServerState.test.js +134 -0
- package/codeyam-cli/src/utils/__tests__/devServerState.test.js.map +1 -0
- package/codeyam-cli/src/utils/__tests__/editorApi.test.js +137 -0
- package/codeyam-cli/src/utils/__tests__/editorApi.test.js.map +1 -0
- package/codeyam-cli/src/utils/__tests__/editorAudit.test.js +2520 -0
- package/codeyam-cli/src/utils/__tests__/editorAudit.test.js.map +1 -0
- package/codeyam-cli/src/utils/__tests__/editorBroadcastViewport.test.js +76 -0
- package/codeyam-cli/src/utils/__tests__/editorBroadcastViewport.test.js.map +1 -0
- package/codeyam-cli/src/utils/__tests__/editorCapture.test.js +93 -0
- package/codeyam-cli/src/utils/__tests__/editorCapture.test.js.map +1 -0
- package/codeyam-cli/src/utils/__tests__/editorCaptureScenarioSeeding.test.js +137 -0
- package/codeyam-cli/src/utils/__tests__/editorCaptureScenarioSeeding.test.js.map +1 -0
- package/codeyam-cli/src/utils/__tests__/editorDeleteScenario.test.js +100 -0
- package/codeyam-cli/src/utils/__tests__/editorDeleteScenario.test.js.map +1 -0
- package/codeyam-cli/src/utils/__tests__/editorDevServer.test.js +304 -0
- package/codeyam-cli/src/utils/__tests__/editorDevServer.test.js.map +1 -0
- package/codeyam-cli/src/utils/__tests__/editorEntityChangeStatus.test.js +194 -0
- package/codeyam-cli/src/utils/__tests__/editorEntityChangeStatus.test.js.map +1 -0
- package/codeyam-cli/src/utils/__tests__/editorEntityHelpers.test.js +315 -0
- package/codeyam-cli/src/utils/__tests__/editorEntityHelpers.test.js.map +1 -0
- package/codeyam-cli/src/utils/__tests__/editorImageVerifier.test.js +294 -0
- package/codeyam-cli/src/utils/__tests__/editorImageVerifier.test.js.map +1 -0
- package/codeyam-cli/src/utils/__tests__/editorJournal.test.js +542 -0
- package/codeyam-cli/src/utils/__tests__/editorJournal.test.js.map +1 -0
- package/codeyam-cli/src/utils/__tests__/editorLoaderHelpers.test.js +594 -0
- package/codeyam-cli/src/utils/__tests__/editorLoaderHelpers.test.js.map +1 -0
- package/codeyam-cli/src/utils/__tests__/editorMigration.test.js +435 -0
- package/codeyam-cli/src/utils/__tests__/editorMigration.test.js.map +1 -0
- package/codeyam-cli/src/utils/__tests__/editorMockState.test.js +270 -0
- package/codeyam-cli/src/utils/__tests__/editorMockState.test.js.map +1 -0
- package/codeyam-cli/src/utils/__tests__/editorPreloadHelpers.test.js +217 -0
- package/codeyam-cli/src/utils/__tests__/editorPreloadHelpers.test.js.map +1 -0
- package/codeyam-cli/src/utils/__tests__/editorPreview.test.js +353 -0
- package/codeyam-cli/src/utils/__tests__/editorPreview.test.js.map +1 -0
- package/codeyam-cli/src/utils/__tests__/editorProxySession.test.js +153 -0
- package/codeyam-cli/src/utils/__tests__/editorProxySession.test.js.map +1 -0
- package/codeyam-cli/src/utils/__tests__/editorScenarioLookup.test.js +139 -0
- package/codeyam-cli/src/utils/__tests__/editorScenarioLookup.test.js.map +1 -0
- package/codeyam-cli/src/utils/__tests__/editorScenarioSwitch.test.js +291 -0
- package/codeyam-cli/src/utils/__tests__/editorScenarioSwitch.test.js.map +1 -0
- package/codeyam-cli/src/utils/__tests__/editorScenarios.test.js +1609 -0
- package/codeyam-cli/src/utils/__tests__/editorScenarios.test.js.map +1 -0
- package/codeyam-cli/src/utils/__tests__/editorSeedAdapter.test.js +280 -0
- package/codeyam-cli/src/utils/__tests__/editorSeedAdapter.test.js.map +1 -0
- package/codeyam-cli/src/utils/__tests__/editorSeedAdapterPrismaValidation.test.js +143 -0
- package/codeyam-cli/src/utils/__tests__/editorSeedAdapterPrismaValidation.test.js.map +1 -0
- package/codeyam-cli/src/utils/__tests__/editorSessionFilter.test.js +66 -0
- package/codeyam-cli/src/utils/__tests__/editorSessionFilter.test.js.map +1 -0
- package/codeyam-cli/src/utils/__tests__/editorShouldRevalidate.test.js +53 -0
- package/codeyam-cli/src/utils/__tests__/editorShouldRevalidate.test.js.map +1 -0
- package/codeyam-cli/src/utils/__tests__/entityChangeStatus.test.js +1876 -0
- package/codeyam-cli/src/utils/__tests__/entityChangeStatus.test.js.map +1 -0
- package/codeyam-cli/src/utils/__tests__/git.editor.test.js +134 -0
- package/codeyam-cli/src/utils/__tests__/git.editor.test.js.map +1 -0
- package/codeyam-cli/src/utils/__tests__/glossaryAdd.test.js +177 -0
- package/codeyam-cli/src/utils/__tests__/glossaryAdd.test.js.map +1 -0
- package/codeyam-cli/src/utils/__tests__/journalCaptureStabilization.test.js +107 -0
- package/codeyam-cli/src/utils/__tests__/journalCaptureStabilization.test.js.map +1 -0
- package/codeyam-cli/src/utils/__tests__/npmVersionCheck.test.js +185 -0
- package/codeyam-cli/src/utils/__tests__/npmVersionCheck.test.js.map +1 -0
- package/codeyam-cli/src/utils/__tests__/parseRegisterArg.test.js +129 -0
- package/codeyam-cli/src/utils/__tests__/parseRegisterArg.test.js.map +1 -0
- package/codeyam-cli/src/utils/__tests__/pathIgnoring.test.js +9 -0
- package/codeyam-cli/src/utils/__tests__/pathIgnoring.test.js.map +1 -1
- package/codeyam-cli/src/utils/__tests__/project.test.js +65 -0
- package/codeyam-cli/src/utils/__tests__/project.test.js.map +1 -0
- package/codeyam-cli/src/utils/__tests__/routePatternMatching.test.js +118 -0
- package/codeyam-cli/src/utils/__tests__/routePatternMatching.test.js.map +1 -0
- package/codeyam-cli/src/utils/__tests__/scenarioCoverage.test.js +284 -0
- package/codeyam-cli/src/utils/__tests__/scenarioCoverage.test.js.map +1 -0
- package/codeyam-cli/src/utils/__tests__/scenarioMarkers.test.js +121 -0
- package/codeyam-cli/src/utils/__tests__/scenarioMarkers.test.js.map +1 -0
- package/codeyam-cli/src/utils/__tests__/scenariosManifest.test.js +672 -0
- package/codeyam-cli/src/utils/__tests__/scenariosManifest.test.js.map +1 -0
- package/codeyam-cli/src/utils/__tests__/serverVersionStaleness.test.js +81 -0
- package/codeyam-cli/src/utils/__tests__/serverVersionStaleness.test.js.map +1 -0
- package/codeyam-cli/src/utils/__tests__/setupClaudeCodeSettings.test.js +175 -82
- package/codeyam-cli/src/utils/__tests__/setupClaudeCodeSettings.test.js.map +1 -1
- package/codeyam-cli/src/utils/__tests__/telemetry.test.js +159 -0
- package/codeyam-cli/src/utils/__tests__/telemetry.test.js.map +1 -0
- package/codeyam-cli/src/utils/__tests__/templateConsistency.test.js +51 -0
- package/codeyam-cli/src/utils/__tests__/templateConsistency.test.js.map +1 -0
- package/codeyam-cli/src/utils/__tests__/webappDetection.test.js +142 -0
- package/codeyam-cli/src/utils/__tests__/webappDetection.test.js.map +1 -0
- package/codeyam-cli/src/utils/analysisRunner.js +32 -16
- package/codeyam-cli/src/utils/analysisRunner.js.map +1 -1
- package/codeyam-cli/src/utils/analyzer.js +16 -0
- package/codeyam-cli/src/utils/analyzer.js.map +1 -1
- package/codeyam-cli/src/utils/analyzerFinalization.js +100 -0
- package/codeyam-cli/src/utils/analyzerFinalization.js.map +1 -0
- package/codeyam-cli/src/utils/backgroundServer.js +205 -32
- package/codeyam-cli/src/utils/backgroundServer.js.map +1 -1
- package/codeyam-cli/src/utils/buildFlags.js +4 -0
- package/codeyam-cli/src/utils/buildFlags.js.map +1 -0
- package/codeyam-cli/src/utils/database.js +128 -7
- package/codeyam-cli/src/utils/database.js.map +1 -1
- package/codeyam-cli/src/utils/devModeEvents.js +40 -0
- package/codeyam-cli/src/utils/devModeEvents.js.map +1 -0
- package/codeyam-cli/src/utils/devServerState.js +71 -0
- package/codeyam-cli/src/utils/devServerState.js.map +1 -0
- package/codeyam-cli/src/utils/editorApi.js +79 -0
- package/codeyam-cli/src/utils/editorApi.js.map +1 -0
- package/codeyam-cli/src/utils/editorAudit.js +496 -0
- package/codeyam-cli/src/utils/editorAudit.js.map +1 -0
- package/codeyam-cli/src/utils/editorBroadcastViewport.js +26 -0
- package/codeyam-cli/src/utils/editorBroadcastViewport.js.map +1 -0
- package/codeyam-cli/src/utils/editorCapture.js +102 -0
- package/codeyam-cli/src/utils/editorCapture.js.map +1 -0
- package/codeyam-cli/src/utils/editorDeleteScenario.js +67 -0
- package/codeyam-cli/src/utils/editorDeleteScenario.js.map +1 -0
- package/codeyam-cli/src/utils/editorDevServer.js +197 -0
- package/codeyam-cli/src/utils/editorDevServer.js.map +1 -0
- package/codeyam-cli/src/utils/editorEntityChangeStatus.js +50 -0
- package/codeyam-cli/src/utils/editorEntityChangeStatus.js.map +1 -0
- package/codeyam-cli/src/utils/editorEntityHelpers.js +144 -0
- package/codeyam-cli/src/utils/editorEntityHelpers.js.map +1 -0
- package/codeyam-cli/src/utils/editorImageVerifier.js +155 -0
- package/codeyam-cli/src/utils/editorImageVerifier.js.map +1 -0
- package/codeyam-cli/src/utils/editorJournal.js +225 -0
- package/codeyam-cli/src/utils/editorJournal.js.map +1 -0
- package/codeyam-cli/src/utils/editorLoaderHelpers.js +152 -0
- package/codeyam-cli/src/utils/editorLoaderHelpers.js.map +1 -0
- package/codeyam-cli/src/utils/editorMigration.js +224 -0
- package/codeyam-cli/src/utils/editorMigration.js.map +1 -0
- package/codeyam-cli/src/utils/editorMockState.js +248 -0
- package/codeyam-cli/src/utils/editorMockState.js.map +1 -0
- package/codeyam-cli/src/utils/editorPreloadHelpers.js +135 -0
- package/codeyam-cli/src/utils/editorPreloadHelpers.js.map +1 -0
- package/codeyam-cli/src/utils/editorPreview.js +137 -0
- package/codeyam-cli/src/utils/editorPreview.js.map +1 -0
- package/codeyam-cli/src/utils/editorScenarioSwitch.js +134 -0
- package/codeyam-cli/src/utils/editorScenarioSwitch.js.map +1 -0
- package/codeyam-cli/src/utils/editorScenarios.js +584 -0
- package/codeyam-cli/src/utils/editorScenarios.js.map +1 -0
- package/codeyam-cli/src/utils/editorSeedAdapter.js +422 -0
- package/codeyam-cli/src/utils/editorSeedAdapter.js.map +1 -0
- package/codeyam-cli/src/utils/editorShouldRevalidate.js +21 -0
- package/codeyam-cli/src/utils/editorShouldRevalidate.js.map +1 -0
- package/codeyam-cli/src/utils/entityChangeStatus.js +366 -0
- package/codeyam-cli/src/utils/entityChangeStatus.js.map +1 -0
- package/codeyam-cli/src/utils/entityChangeStatus.server.js +196 -0
- package/codeyam-cli/src/utils/entityChangeStatus.server.js.map +1 -0
- package/codeyam-cli/src/utils/fileMetadata.js +5 -0
- package/codeyam-cli/src/utils/fileMetadata.js.map +1 -1
- package/codeyam-cli/src/utils/fileWatcher.js +63 -9
- package/codeyam-cli/src/utils/fileWatcher.js.map +1 -1
- package/codeyam-cli/src/utils/generateReport.js +253 -106
- package/codeyam-cli/src/utils/generateReport.js.map +1 -1
- package/codeyam-cli/src/utils/git.js +182 -0
- package/codeyam-cli/src/utils/git.js.map +1 -0
- package/codeyam-cli/src/utils/glossaryAdd.js +74 -0
- package/codeyam-cli/src/utils/glossaryAdd.js.map +1 -0
- package/codeyam-cli/src/utils/install-skills.js +134 -44
- package/codeyam-cli/src/utils/install-skills.js.map +1 -1
- package/codeyam-cli/src/utils/interactiveSyncWatcher.js +126 -0
- package/codeyam-cli/src/utils/interactiveSyncWatcher.js.map +1 -0
- package/codeyam-cli/src/utils/labsAutoCheck.js +19 -0
- package/codeyam-cli/src/utils/labsAutoCheck.js.map +1 -0
- package/codeyam-cli/src/utils/npmVersionCheck.js +76 -0
- package/codeyam-cli/src/utils/npmVersionCheck.js.map +1 -0
- package/codeyam-cli/src/utils/parseRegisterArg.js +31 -0
- package/codeyam-cli/src/utils/parseRegisterArg.js.map +1 -0
- package/codeyam-cli/src/utils/pathIgnoring.js +19 -7
- package/codeyam-cli/src/utils/pathIgnoring.js.map +1 -1
- package/codeyam-cli/src/utils/progress.js +8 -1
- package/codeyam-cli/src/utils/progress.js.map +1 -1
- package/codeyam-cli/src/utils/project.js +15 -5
- package/codeyam-cli/src/utils/project.js.map +1 -1
- package/codeyam-cli/src/utils/queue/__tests__/heartbeat.test.js +11 -11
- package/codeyam-cli/src/utils/queue/__tests__/heartbeat.test.js.map +1 -1
- package/codeyam-cli/src/utils/queue/__tests__/manager.test.js +60 -0
- package/codeyam-cli/src/utils/queue/__tests__/manager.test.js.map +1 -1
- package/codeyam-cli/src/utils/queue/heartbeat.js +13 -5
- package/codeyam-cli/src/utils/queue/heartbeat.js.map +1 -1
- package/codeyam-cli/src/utils/queue/job.js +319 -17
- package/codeyam-cli/src/utils/queue/job.js.map +1 -1
- package/codeyam-cli/src/utils/queue/manager.js +26 -7
- package/codeyam-cli/src/utils/queue/manager.js.map +1 -1
- package/codeyam-cli/src/utils/queue/persistence.js.map +1 -1
- package/codeyam-cli/src/utils/requireSimulations.js +10 -0
- package/codeyam-cli/src/utils/requireSimulations.js.map +1 -0
- package/codeyam-cli/src/utils/routePatternMatching.js +129 -0
- package/codeyam-cli/src/utils/routePatternMatching.js.map +1 -0
- package/codeyam-cli/src/utils/ruleReflection/__tests__/confusionDetector.test.js +82 -0
- package/codeyam-cli/src/utils/ruleReflection/__tests__/confusionDetector.test.js.map +1 -0
- package/codeyam-cli/src/utils/ruleReflection/__tests__/contextBuilder.test.js +229 -0
- package/codeyam-cli/src/utils/ruleReflection/__tests__/contextBuilder.test.js.map +1 -0
- package/codeyam-cli/src/utils/ruleReflection/__tests__/integration/helpers/assertRules.js +67 -0
- package/codeyam-cli/src/utils/ruleReflection/__tests__/integration/helpers/assertRules.js.map +1 -0
- package/codeyam-cli/src/utils/ruleReflection/__tests__/integration/helpers/captureFixture.js +105 -0
- package/codeyam-cli/src/utils/ruleReflection/__tests__/integration/helpers/captureFixture.js.map +1 -0
- package/codeyam-cli/src/utils/ruleReflection/__tests__/integration/helpers/loadCapturedFixture.js +34 -0
- package/codeyam-cli/src/utils/ruleReflection/__tests__/integration/helpers/loadCapturedFixture.js.map +1 -0
- package/codeyam-cli/src/utils/ruleReflection/__tests__/integration/helpers/runClaude.js +162 -0
- package/codeyam-cli/src/utils/ruleReflection/__tests__/integration/helpers/runClaude.js.map +1 -0
- package/codeyam-cli/src/utils/ruleReflection/__tests__/integration/helpers/setupTempProject.js +74 -0
- package/codeyam-cli/src/utils/ruleReflection/__tests__/integration/helpers/setupTempProject.js.map +1 -0
- package/codeyam-cli/src/utils/ruleReflection/__tests__/integration/ruleReflectionE2E.test.js +376 -0
- package/codeyam-cli/src/utils/ruleReflection/__tests__/integration/ruleReflectionE2E.test.js.map +1 -0
- package/codeyam-cli/src/utils/ruleReflection/__tests__/promptBuilder.test.js +113 -0
- package/codeyam-cli/src/utils/ruleReflection/__tests__/promptBuilder.test.js.map +1 -0
- package/codeyam-cli/src/utils/ruleReflection/__tests__/transcriptParser.test.js +127 -0
- package/codeyam-cli/src/utils/ruleReflection/__tests__/transcriptParser.test.js.map +1 -0
- package/codeyam-cli/src/utils/ruleReflection/confusionDetector.js +50 -0
- package/codeyam-cli/src/utils/ruleReflection/confusionDetector.js.map +1 -0
- package/codeyam-cli/src/utils/ruleReflection/contextBuilder.js +116 -0
- package/codeyam-cli/src/utils/ruleReflection/contextBuilder.js.map +1 -0
- package/codeyam-cli/src/utils/ruleReflection/index.js +5 -0
- package/codeyam-cli/src/utils/ruleReflection/index.js.map +1 -0
- package/codeyam-cli/src/utils/ruleReflection/promptBuilder.js +44 -0
- package/codeyam-cli/src/utils/ruleReflection/promptBuilder.js.map +1 -0
- package/codeyam-cli/src/utils/ruleReflection/transcriptParser.js +85 -0
- package/codeyam-cli/src/utils/ruleReflection/transcriptParser.js.map +1 -0
- package/codeyam-cli/src/utils/ruleReflection/types.js +5 -0
- package/codeyam-cli/src/utils/ruleReflection/types.js.map +1 -0
- package/codeyam-cli/src/utils/rules/__tests__/parser.test.js +83 -0
- package/codeyam-cli/src/utils/rules/__tests__/parser.test.js.map +1 -0
- package/codeyam-cli/src/utils/rules/__tests__/pathMatcher.test.js +118 -0
- package/codeyam-cli/src/utils/rules/__tests__/pathMatcher.test.js.map +1 -0
- package/codeyam-cli/src/utils/rules/__tests__/rulePlacement.test.js +72 -0
- package/codeyam-cli/src/utils/rules/__tests__/rulePlacement.test.js.map +1 -0
- package/codeyam-cli/src/utils/rules/__tests__/ruleState.test.js +293 -0
- package/codeyam-cli/src/utils/rules/__tests__/ruleState.test.js.map +1 -0
- package/codeyam-cli/src/utils/rules/__tests__/sourceFiles.test.js +76 -0
- package/codeyam-cli/src/utils/rules/__tests__/sourceFiles.test.js.map +1 -0
- package/codeyam-cli/src/utils/rules/index.js +7 -0
- package/codeyam-cli/src/utils/rules/index.js.map +1 -0
- package/codeyam-cli/src/utils/rules/parser.js +93 -0
- package/codeyam-cli/src/utils/rules/parser.js.map +1 -0
- package/codeyam-cli/src/utils/rules/pathMatcher.js +49 -0
- package/codeyam-cli/src/utils/rules/pathMatcher.js.map +1 -0
- package/codeyam-cli/src/utils/rules/rulePlacement.js +65 -0
- package/codeyam-cli/src/utils/rules/rulePlacement.js.map +1 -0
- package/codeyam-cli/src/utils/rules/ruleState.js +150 -0
- package/codeyam-cli/src/utils/rules/ruleState.js.map +1 -0
- package/codeyam-cli/src/utils/rules/sourceFiles.js +43 -0
- package/codeyam-cli/src/utils/rules/sourceFiles.js.map +1 -0
- package/codeyam-cli/src/utils/rules/staleness.js +137 -0
- package/codeyam-cli/src/utils/rules/staleness.js.map +1 -0
- package/codeyam-cli/src/utils/scenarioCoverage.js +77 -0
- package/codeyam-cli/src/utils/scenarioCoverage.js.map +1 -0
- package/codeyam-cli/src/utils/scenarioMarkers.js +134 -0
- package/codeyam-cli/src/utils/scenarioMarkers.js.map +1 -0
- package/codeyam-cli/src/utils/scenariosManifest.js +285 -0
- package/codeyam-cli/src/utils/scenariosManifest.js.map +1 -0
- package/codeyam-cli/src/utils/serverState.js +94 -12
- package/codeyam-cli/src/utils/serverState.js.map +1 -1
- package/codeyam-cli/src/utils/setupClaudeCodeSettings.js +96 -45
- package/codeyam-cli/src/utils/setupClaudeCodeSettings.js.map +1 -1
- package/codeyam-cli/src/utils/simulationGateMiddleware.js +166 -0
- package/codeyam-cli/src/utils/simulationGateMiddleware.js.map +1 -0
- package/codeyam-cli/src/utils/slugUtils.js +25 -0
- package/codeyam-cli/src/utils/slugUtils.js.map +1 -0
- package/codeyam-cli/src/utils/syncMocksMiddleware.js +7 -26
- package/codeyam-cli/src/utils/syncMocksMiddleware.js.map +1 -1
- package/codeyam-cli/src/utils/telemetry.js +106 -0
- package/codeyam-cli/src/utils/telemetry.js.map +1 -0
- package/codeyam-cli/src/utils/telemetryMiddleware.js +22 -0
- package/codeyam-cli/src/utils/telemetryMiddleware.js.map +1 -0
- package/codeyam-cli/src/utils/testRunner.js +158 -0
- package/codeyam-cli/src/utils/testRunner.js.map +1 -0
- package/codeyam-cli/src/utils/transcriptPruning.js +67 -0
- package/codeyam-cli/src/utils/transcriptPruning.js.map +1 -0
- package/codeyam-cli/src/utils/versionInfo.js +67 -15
- package/codeyam-cli/src/utils/versionInfo.js.map +1 -1
- package/codeyam-cli/src/utils/webappDetection.js +35 -2
- package/codeyam-cli/src/utils/webappDetection.js.map +1 -1
- package/codeyam-cli/src/utils/wipe.js +128 -0
- package/codeyam-cli/src/utils/wipe.js.map +1 -0
- package/codeyam-cli/src/webserver/__tests__/buildPtyEnv.test.js +35 -0
- package/codeyam-cli/src/webserver/__tests__/buildPtyEnv.test.js.map +1 -0
- package/codeyam-cli/src/webserver/__tests__/clientErrors.test.js +80 -0
- package/codeyam-cli/src/webserver/__tests__/clientErrors.test.js.map +1 -0
- package/codeyam-cli/src/webserver/__tests__/dependency-smoke.test.js +66 -0
- package/codeyam-cli/src/webserver/__tests__/dependency-smoke.test.js.map +1 -0
- package/codeyam-cli/src/webserver/__tests__/editorProxy.test.js +628 -0
- package/codeyam-cli/src/webserver/__tests__/editorProxy.test.js.map +1 -0
- package/codeyam-cli/src/webserver/__tests__/idleDetector.test.js +217 -0
- package/codeyam-cli/src/webserver/__tests__/idleDetector.test.js.map +1 -0
- package/codeyam-cli/src/webserver/app/lib/clientErrors.js +71 -0
- package/codeyam-cli/src/webserver/app/lib/clientErrors.js.map +1 -0
- package/codeyam-cli/src/webserver/app/lib/database.js +159 -33
- package/codeyam-cli/src/webserver/app/lib/database.js.map +1 -1
- package/codeyam-cli/src/webserver/app/lib/dbNotifier.js.map +1 -1
- package/codeyam-cli/src/webserver/app/lib/git.js +397 -0
- package/codeyam-cli/src/webserver/app/lib/git.js.map +1 -0
- package/codeyam-cli/src/webserver/app/types/editor.js +8 -0
- package/codeyam-cli/src/webserver/app/types/editor.js.map +1 -0
- package/codeyam-cli/src/webserver/backgroundServer.js +191 -47
- package/codeyam-cli/src/webserver/backgroundServer.js.map +1 -1
- package/codeyam-cli/src/webserver/bootstrap.js +60 -0
- package/codeyam-cli/src/webserver/bootstrap.js.map +1 -0
- package/codeyam-cli/src/webserver/build/client/assets/CopyButton-CLe80MMu.js +1 -0
- package/codeyam-cli/src/webserver/build/client/assets/EntityItem-Crt_KN_U.js +11 -0
- package/codeyam-cli/src/webserver/build/client/assets/EntityTypeBadge-CQgyEGV-.js +1 -0
- package/codeyam-cli/src/webserver/build/client/assets/EntityTypeIcon-CD7lGABo.js +41 -0
- package/codeyam-cli/src/webserver/build/client/assets/InlineSpinner-CgTNOhnu.js +1 -0
- package/codeyam-cli/src/webserver/build/client/assets/InteractivePreview-CKeQT5Ty.js +25 -0
- package/codeyam-cli/src/webserver/build/client/assets/LibraryFunctionPreview-D3s1MFkb.js +3 -0
- package/codeyam-cli/src/webserver/build/client/assets/LoadingDots-By5zI316.js +6 -0
- package/codeyam-cli/src/webserver/build/client/assets/LogViewer-CM5zg40N.js +3 -0
- package/codeyam-cli/src/webserver/build/client/assets/ReportIssueModal-C2PLkej3.js +11 -0
- package/codeyam-cli/src/webserver/build/client/assets/SafeScreenshot-DanvyBPb.js +1 -0
- package/codeyam-cli/src/webserver/build/client/assets/ScenarioViewer-DUMfcNVK.js +10 -0
- package/codeyam-cli/src/webserver/build/client/assets/Spinner-D0LgAaSa.js +34 -0
- package/codeyam-cli/src/webserver/build/client/assets/TruncatedFilePath-CK7-NaPZ.js +1 -0
- package/codeyam-cli/src/webserver/build/client/assets/ViewportInspectBar-BA_Ry-rs.js +1 -0
- package/codeyam-cli/src/webserver/build/client/assets/_index-BAWd-Xjf.js +11 -0
- package/codeyam-cli/src/webserver/build/client/assets/activity.(_tab)-BOARiB-g.js +27 -0
- package/codeyam-cli/src/webserver/build/client/assets/addon-canvas-DpzMmAy5.js +1 -0
- package/codeyam-cli/src/webserver/build/client/assets/addon-fit-YJmn1quW.js +12 -0
- package/codeyam-cli/src/webserver/build/client/assets/addon-web-links-CHx25PAe.js +1 -0
- package/codeyam-cli/src/webserver/build/client/assets/addon-webgl-DI8QOUvO.js +58 -0
- package/codeyam-cli/src/webserver/build/client/assets/agent-transcripts-Bg3e7q4S.js +22 -0
- package/codeyam-cli/src/webserver/build/client/assets/api.agent-transcripts-l0sNRNKZ.js +1 -0
- package/codeyam-cli/src/webserver/build/client/assets/api.dev-mode-events-l0sNRNKZ.js +1 -0
- package/codeyam-cli/src/webserver/build/client/assets/api.editor-audit-l0sNRNKZ.js +1 -0
- package/codeyam-cli/src/webserver/build/client/assets/api.editor-capture-scenario-l0sNRNKZ.js +1 -0
- package/codeyam-cli/src/webserver/build/client/assets/api.editor-client-errors-l0sNRNKZ.js +1 -0
- package/codeyam-cli/src/webserver/build/client/assets/api.editor-commit-l0sNRNKZ.js +1 -0
- package/codeyam-cli/src/webserver/build/client/assets/api.editor-dev-server-l0sNRNKZ.js +1 -0
- package/codeyam-cli/src/webserver/build/client/assets/api.editor-entity-status-l0sNRNKZ.js +1 -0
- package/codeyam-cli/src/webserver/build/client/assets/api.editor-file-diff-l0sNRNKZ.js +1 -0
- package/codeyam-cli/src/webserver/build/client/assets/api.editor-file-l0sNRNKZ.js +1 -0
- package/codeyam-cli/src/webserver/build/client/assets/api.editor-journal-entry-l0sNRNKZ.js +1 -0
- package/codeyam-cli/src/webserver/build/client/assets/api.editor-journal-image._-l0sNRNKZ.js +1 -0
- package/codeyam-cli/src/webserver/build/client/assets/api.editor-journal-l0sNRNKZ.js +1 -0
- package/codeyam-cli/src/webserver/build/client/assets/api.editor-journal-screenshot-l0sNRNKZ.js +1 -0
- package/codeyam-cli/src/webserver/build/client/assets/api.editor-journal-update-l0sNRNKZ.js +1 -0
- package/codeyam-cli/src/webserver/build/client/assets/api.editor-load-commit-l0sNRNKZ.js +1 -0
- package/codeyam-cli/src/webserver/build/client/assets/api.editor-project-info-l0sNRNKZ.js +1 -0
- package/codeyam-cli/src/webserver/build/client/assets/api.editor-refresh-l0sNRNKZ.js +1 -0
- package/codeyam-cli/src/webserver/build/client/assets/api.editor-register-scenario-l0sNRNKZ.js +1 -0
- package/codeyam-cli/src/webserver/build/client/assets/api.editor-rename-scenario-l0sNRNKZ.js +1 -0
- package/codeyam-cli/src/webserver/build/client/assets/api.editor-save-seed-state-l0sNRNKZ.js +1 -0
- package/codeyam-cli/src/webserver/build/client/assets/api.editor-scenario-coverage-l0sNRNKZ.js +1 -0
- package/codeyam-cli/src/webserver/build/client/assets/api.editor-scenario-data-l0sNRNKZ.js +1 -0
- package/codeyam-cli/src/webserver/build/client/assets/api.editor-scenario-image._-l0sNRNKZ.js +1 -0
- package/codeyam-cli/src/webserver/build/client/assets/api.editor-scenario-prompt-l0sNRNKZ.js +1 -0
- package/codeyam-cli/src/webserver/build/client/assets/api.editor-scenarios-l0sNRNKZ.js +1 -0
- package/codeyam-cli/src/webserver/build/client/assets/api.editor-session-l0sNRNKZ.js +1 -0
- package/codeyam-cli/src/webserver/build/client/assets/api.editor-switch-scenario-l0sNRNKZ.js +1 -0
- package/codeyam-cli/src/webserver/build/client/assets/api.editor-test-results-l0sNRNKZ.js +1 -0
- package/codeyam-cli/src/webserver/build/client/assets/api.health-l0sNRNKZ.js +1 -0
- package/codeyam-cli/src/webserver/build/client/assets/api.labs-unlock-l0sNRNKZ.js +1 -0
- package/codeyam-cli/src/webserver/build/client/assets/api.memory-profile-l0sNRNKZ.js +1 -0
- package/codeyam-cli/src/webserver/build/client/assets/api.restart-server-l0sNRNKZ.js +1 -0
- package/codeyam-cli/src/webserver/build/client/assets/api.rule-path-l0sNRNKZ.js +1 -0
- package/codeyam-cli/src/webserver/build/client/assets/api.save-fixture-l0sNRNKZ.js +1 -0
- package/codeyam-cli/src/webserver/build/client/assets/book-open-CL-lMgHh.js +6 -0
- package/codeyam-cli/src/webserver/build/client/assets/chevron-down-GmAjGS9-.js +6 -0
- package/codeyam-cli/src/webserver/build/client/assets/chunk-JZWAC4HX-BAdwhyCx.js +43 -0
- package/codeyam-cli/src/webserver/build/client/assets/circle-check-DFcQkN5j.js +6 -0
- package/codeyam-cli/src/webserver/build/client/assets/copy-C6iF61Xs.js +11 -0
- package/codeyam-cli/src/webserver/build/client/assets/createLucideIcon-4ImjHTVC.js +41 -0
- package/codeyam-cli/src/webserver/build/client/assets/{cy-logo-cli-C1gnJVOL.svg → cy-logo-cli-CCKUIm0S.svg} +2 -2
- package/codeyam-cli/src/webserver/build/client/assets/cy-logo-cli-DcX-ZS3p.js +1 -0
- package/codeyam-cli/src/webserver/build/client/assets/{dev.empty-CwLmCS0J.js → dev.empty-C8y4mmyv.js} +1 -1
- package/codeyam-cli/src/webserver/build/client/assets/editor._tab-Gbk_i5Js.js +1 -0
- package/codeyam-cli/src/webserver/build/client/assets/editor.entity.(_sha)-Bnx7yUP0.js +58 -0
- package/codeyam-cli/src/webserver/build/client/assets/editorPreview-oepecPae.js +41 -0
- package/codeyam-cli/src/webserver/build/client/assets/{entity._sha._-FHOVOgFN.js → entity._sha._-Blfy9UlN.js} +22 -15
- package/codeyam-cli/src/webserver/build/client/assets/entity._sha.scenarios._scenarioId.dev-KTQuL0aj.js +6 -0
- package/codeyam-cli/src/webserver/build/client/assets/entity._sha.scenarios._scenarioId.fullscreen-C6eeL24i.js +6 -0
- package/codeyam-cli/src/webserver/build/client/assets/entity._sha_.create-scenario-DQM8E7L4.js +6 -0
- package/codeyam-cli/src/webserver/build/client/assets/entity._sha_.edit._scenarioId-CAoXLsQr.js +5 -0
- package/codeyam-cli/src/webserver/build/client/assets/entry.client-SuW9syRS.js +29 -0
- package/codeyam-cli/src/webserver/build/client/assets/executionFlowCoverage-BWhdfn70.js +1 -0
- package/codeyam-cli/src/webserver/build/client/assets/fileTableUtils-Daa96Fr1.js +1 -0
- package/codeyam-cli/src/webserver/build/client/assets/files-D-xGrg29.js +1 -0
- package/codeyam-cli/src/webserver/build/client/assets/git-Bq_fbXP5.js +1 -0
- package/codeyam-cli/src/webserver/build/client/assets/globals-fAqOD9ex.css +1 -0
- package/codeyam-cli/src/webserver/build/client/assets/html2canvas-pro.esm-fmIEn3Bc.js +9 -0
- package/codeyam-cli/src/webserver/build/client/assets/index-Bp1l4hSv.js +3 -0
- package/codeyam-cli/src/webserver/build/client/assets/index-CWV9XZiG.js +9 -0
- package/codeyam-cli/src/webserver/build/client/assets/index-DE3jI_dv.js +15 -0
- package/codeyam-cli/src/webserver/build/client/assets/jsx-runtime-D_zvdyIk.js +9 -0
- package/codeyam-cli/src/webserver/build/client/assets/labs-B_IX45ih.js +1 -0
- package/codeyam-cli/src/webserver/build/client/assets/loader-circle-De-7qQ2u.js +6 -0
- package/codeyam-cli/src/webserver/build/client/assets/manifest-3157d6b8.js +1 -0
- package/codeyam-cli/src/webserver/build/client/assets/memory-Cx2xEx7s.js +101 -0
- package/codeyam-cli/src/webserver/build/client/assets/pause-CFxEKL1u.js +11 -0
- package/codeyam-cli/src/webserver/build/client/assets/preload-helper-ckwbz45p.js +1 -0
- package/codeyam-cli/src/webserver/build/client/assets/root-DB3O9_9j.js +67 -0
- package/codeyam-cli/src/webserver/build/client/assets/scenarioStatus-B_8jpV3e.js +1 -0
- package/codeyam-cli/src/webserver/build/client/assets/search-BdBb5aqc.js +6 -0
- package/codeyam-cli/src/webserver/build/client/assets/settings-DdE-Untf.js +1 -0
- package/codeyam-cli/src/webserver/build/client/assets/simulations-DSCdE99u.js +1 -0
- package/codeyam-cli/src/webserver/build/client/assets/terminal-CrplD4b1.js +11 -0
- package/codeyam-cli/src/webserver/build/client/assets/triangle-alert-DqJ0j69l.js +6 -0
- package/codeyam-cli/src/webserver/build/client/assets/useCustomSizes-DhXHbEjP.js +1 -0
- package/codeyam-cli/src/webserver/build/client/assets/useLastLogLine-BNd5hYuW.js +2 -0
- package/codeyam-cli/src/webserver/build/client/assets/useReportContext-Cy5Qg_UR.js +1 -0
- package/codeyam-cli/src/webserver/build/client/assets/useToast-5HR2j9ZE.js +1 -0
- package/codeyam-cli/src/webserver/build/client/assets/xterm-BqvuqXEL.js +27 -0
- package/codeyam-cli/src/webserver/build/client/sound-test.html +98 -0
- package/codeyam-cli/src/webserver/build/server/assets/analysisRunner-BMmkgAkg.js +13 -0
- package/codeyam-cli/src/webserver/build/server/assets/index-DxB0pOSt.js +1 -0
- package/codeyam-cli/src/webserver/build/server/assets/init-DLYLaqqP.js +10 -0
- package/codeyam-cli/src/webserver/build/server/assets/progress-CHTtrxFG.js +1 -0
- package/codeyam-cli/src/webserver/build/server/assets/server-build-CcyitQLQ.js +551 -0
- package/codeyam-cli/src/webserver/build/server/index.js +1 -1
- package/codeyam-cli/src/webserver/build-info.json +5 -5
- package/codeyam-cli/src/webserver/devServer.js +40 -8
- package/codeyam-cli/src/webserver/devServer.js.map +1 -1
- package/codeyam-cli/src/webserver/editorProxy.js +976 -0
- package/codeyam-cli/src/webserver/editorProxy.js.map +1 -0
- package/codeyam-cli/src/webserver/idleDetector.js +106 -0
- package/codeyam-cli/src/webserver/idleDetector.js.map +1 -0
- package/codeyam-cli/src/webserver/mockStateEvents.js +28 -0
- package/codeyam-cli/src/webserver/mockStateEvents.js.map +1 -0
- package/codeyam-cli/src/webserver/public/sound-test.html +98 -0
- package/codeyam-cli/src/webserver/scripts/codeyam-preload.mjs +414 -0
- package/codeyam-cli/src/webserver/scripts/journalCapture.ts +266 -0
- package/codeyam-cli/src/webserver/server.js +376 -26
- package/codeyam-cli/src/webserver/server.js.map +1 -1
- package/codeyam-cli/src/webserver/terminalServer.js +831 -0
- package/codeyam-cli/src/webserver/terminalServer.js.map +1 -0
- package/codeyam-cli/templates/chrome-extension-react/EXTENSION_SETUP.md +75 -0
- package/codeyam-cli/templates/chrome-extension-react/README.md +46 -0
- package/codeyam-cli/templates/chrome-extension-react/gitignore +15 -0
- package/codeyam-cli/templates/chrome-extension-react/index.html +12 -0
- package/codeyam-cli/templates/chrome-extension-react/package.json +27 -0
- package/codeyam-cli/templates/chrome-extension-react/popup.html +12 -0
- package/codeyam-cli/templates/chrome-extension-react/public/manifest.json +15 -0
- package/codeyam-cli/templates/chrome-extension-react/src/background/service-worker.ts +7 -0
- package/codeyam-cli/templates/chrome-extension-react/src/globals.css +6 -0
- package/codeyam-cli/templates/chrome-extension-react/src/lib/storage.ts +37 -0
- package/codeyam-cli/templates/chrome-extension-react/src/popup/App.tsx +12 -0
- package/codeyam-cli/templates/chrome-extension-react/src/popup/main.tsx +10 -0
- package/codeyam-cli/templates/chrome-extension-react/tsconfig.json +24 -0
- package/codeyam-cli/templates/chrome-extension-react/vite.config.ts +41 -0
- package/codeyam-cli/templates/codeyam-editor-claude.md +147 -0
- package/codeyam-cli/templates/codeyam-editor-reference.md +214 -0
- package/codeyam-cli/templates/codeyam-memory-hook.sh +199 -0
- package/codeyam-cli/templates/commands/codeyam-diagnose.md +481 -0
- package/codeyam-cli/templates/editor-step-hook.py +321 -0
- package/codeyam-cli/templates/expo-react-native/MOBILE_SETUP.md +89 -0
- package/codeyam-cli/templates/expo-react-native/README.md +41 -0
- package/codeyam-cli/templates/expo-react-native/app/(tabs)/_layout.tsx +33 -0
- package/codeyam-cli/templates/expo-react-native/app/(tabs)/index.tsx +12 -0
- package/codeyam-cli/templates/expo-react-native/app/(tabs)/settings.tsx +12 -0
- package/codeyam-cli/templates/expo-react-native/app/_layout.tsx +12 -0
- package/codeyam-cli/templates/expo-react-native/app.json +18 -0
- package/codeyam-cli/templates/expo-react-native/babel.config.js +9 -0
- package/codeyam-cli/templates/expo-react-native/gitignore +12 -0
- package/codeyam-cli/templates/expo-react-native/global.css +3 -0
- package/codeyam-cli/templates/expo-react-native/lib/storage.ts +32 -0
- package/codeyam-cli/templates/expo-react-native/metro.config.js +6 -0
- package/codeyam-cli/templates/expo-react-native/nativewind-env.d.ts +1 -0
- package/codeyam-cli/templates/expo-react-native/package.json +38 -0
- package/codeyam-cli/templates/expo-react-native/tailwind.config.js +10 -0
- package/codeyam-cli/templates/expo-react-native/tsconfig.json +10 -0
- package/codeyam-cli/templates/hooks/staleness-check.sh +43 -0
- package/codeyam-cli/templates/isolation-route/next-app.tsx.template +80 -0
- package/codeyam-cli/templates/isolation-route/next-pages.tsx.template +79 -0
- package/codeyam-cli/templates/isolation-route/vite-react.tsx.template +78 -0
- package/codeyam-cli/templates/msw/browser-setup.ts.template +47 -0
- package/codeyam-cli/templates/msw/handler-router.ts.template +47 -0
- package/codeyam-cli/templates/msw/server-setup.ts.template +52 -0
- package/codeyam-cli/templates/nextjs-prisma-sqlite/AUTH_PATTERNS.md +308 -0
- package/codeyam-cli/templates/nextjs-prisma-sqlite/AUTH_UPGRADE.md +304 -0
- package/codeyam-cli/templates/nextjs-prisma-sqlite/DATABASE.md +126 -0
- package/codeyam-cli/templates/nextjs-prisma-sqlite/FEATURE_PATTERNS.md +37 -0
- package/codeyam-cli/templates/nextjs-prisma-sqlite/README.md +53 -0
- package/codeyam-cli/templates/nextjs-prisma-sqlite/app/api/todos/route.ts +17 -0
- package/codeyam-cli/templates/nextjs-prisma-sqlite/app/codeyam-isolate/layout.tsx +12 -0
- package/codeyam-cli/templates/nextjs-prisma-sqlite/app/globals.css +26 -0
- package/codeyam-cli/templates/nextjs-prisma-sqlite/app/layout.tsx +34 -0
- package/codeyam-cli/templates/nextjs-prisma-sqlite/app/lib/prisma.ts +24 -0
- package/codeyam-cli/templates/nextjs-prisma-sqlite/app/page.tsx +10 -0
- package/codeyam-cli/templates/nextjs-prisma-sqlite/env +4 -0
- package/codeyam-cli/templates/nextjs-prisma-sqlite/eslint.config.mjs +11 -0
- package/codeyam-cli/templates/nextjs-prisma-sqlite/gitignore +64 -0
- package/codeyam-cli/templates/nextjs-prisma-sqlite/next.config.ts +14 -0
- package/codeyam-cli/templates/nextjs-prisma-sqlite/package.json +39 -0
- package/codeyam-cli/templates/nextjs-prisma-sqlite/postcss.config.mjs +7 -0
- package/codeyam-cli/templates/nextjs-prisma-sqlite/prisma/schema.prisma +27 -0
- package/codeyam-cli/templates/nextjs-prisma-sqlite/prisma/seed.ts +40 -0
- package/codeyam-cli/templates/nextjs-prisma-sqlite/prisma.config.ts +12 -0
- package/codeyam-cli/templates/nextjs-prisma-sqlite/seed-adapter.ts +127 -0
- package/codeyam-cli/templates/nextjs-prisma-sqlite/tsconfig.json +34 -0
- package/codeyam-cli/templates/nextjs-prisma-sqlite/vitest.config.ts +13 -0
- package/codeyam-cli/templates/nextjs-prisma-supabase/README.md +52 -0
- package/codeyam-cli/templates/nextjs-prisma-supabase/SUPABASE_SETUP.md +104 -0
- package/codeyam-cli/templates/nextjs-prisma-supabase/app/api/todos/route.ts +17 -0
- package/codeyam-cli/templates/nextjs-prisma-supabase/app/globals.css +26 -0
- package/codeyam-cli/templates/nextjs-prisma-supabase/app/layout.tsx +34 -0
- package/codeyam-cli/templates/nextjs-prisma-supabase/app/lib/prisma.ts +20 -0
- package/codeyam-cli/templates/nextjs-prisma-supabase/app/lib/supabase.ts +12 -0
- package/codeyam-cli/templates/nextjs-prisma-supabase/app/page.tsx +10 -0
- package/codeyam-cli/templates/nextjs-prisma-supabase/env +9 -0
- package/codeyam-cli/templates/nextjs-prisma-supabase/eslint.config.mjs +11 -0
- package/codeyam-cli/templates/nextjs-prisma-supabase/gitignore +40 -0
- package/codeyam-cli/templates/nextjs-prisma-supabase/next.config.ts +11 -0
- package/codeyam-cli/templates/nextjs-prisma-supabase/package.json +37 -0
- package/codeyam-cli/templates/nextjs-prisma-supabase/postcss.config.mjs +7 -0
- package/codeyam-cli/templates/nextjs-prisma-supabase/prisma/schema.prisma +27 -0
- package/codeyam-cli/templates/nextjs-prisma-supabase/prisma/seed.ts +39 -0
- package/codeyam-cli/templates/nextjs-prisma-supabase/prisma.config.ts +12 -0
- package/codeyam-cli/templates/nextjs-prisma-supabase/tsconfig.json +34 -0
- package/codeyam-cli/templates/prompts/conversation-guidance.txt +44 -0
- package/codeyam-cli/templates/prompts/conversation-prompt.txt +28 -0
- package/codeyam-cli/templates/prompts/interruption-prompt.txt +31 -0
- package/codeyam-cli/templates/prompts/stale-rules-prompt.txt +24 -0
- package/codeyam-cli/templates/rule-notification-hook.py +83 -0
- package/codeyam-cli/templates/rule-reflection-hook.py +647 -0
- package/codeyam-cli/templates/rules-instructions.md +78 -0
- package/codeyam-cli/templates/seed-adapters/supabase.ts +282 -0
- package/codeyam-cli/templates/{codeyam-debug-skill.md → skills/codeyam-debug/SKILL.md} +48 -4
- package/codeyam-cli/templates/skills/codeyam-dev-mode/SKILL.md +237 -0
- package/codeyam-cli/templates/skills/codeyam-editor/SKILL.md +211 -0
- package/codeyam-cli/templates/skills/codeyam-memory/SKILL.md +611 -0
- package/codeyam-cli/templates/skills/codeyam-memory/scripts/holistic-analysis/deprecated-prompt.md +100 -0
- package/codeyam-cli/templates/skills/codeyam-memory/scripts/holistic-analysis/detect-deprecated-patterns.mjs +139 -0
- package/codeyam-cli/templates/skills/codeyam-memory/scripts/holistic-analysis/find-exports.mjs +52 -0
- package/codeyam-cli/templates/skills/codeyam-memory/scripts/holistic-analysis/misleading-api-prompt.md +117 -0
- package/codeyam-cli/templates/skills/codeyam-memory/scripts/lib/read-json-field.mjs +61 -0
- package/codeyam-cli/templates/skills/codeyam-memory/scripts/lib/ripgrep-fallback.mjs +155 -0
- package/codeyam-cli/templates/skills/codeyam-memory/scripts/session-mining/analyze-prompt.md +46 -0
- package/codeyam-cli/templates/skills/codeyam-memory/scripts/session-mining/cleanup.mjs +13 -0
- package/codeyam-cli/templates/skills/codeyam-memory/scripts/session-mining/filter-session.mjs +95 -0
- package/codeyam-cli/templates/skills/codeyam-memory/scripts/session-mining/preprocess.mjs +160 -0
- package/codeyam-cli/templates/skills/codeyam-new-rule/SKILL.md +11 -0
- package/codeyam-cli/templates/{codeyam-setup-skill.md → skills/codeyam-setup/SKILL.md} +151 -4
- package/codeyam-cli/templates/{codeyam-sim-skill.md → skills/codeyam-sim/SKILL.md} +1 -1
- package/codeyam-cli/templates/{codeyam-test-skill.md → skills/codeyam-test/SKILL.md} +1 -1
- package/codeyam-cli/templates/{codeyam-verify-skill.md → skills/codeyam-verify/SKILL.md} +1 -1
- package/package.json +40 -29
- package/packages/ai/index.js +8 -6
- package/packages/ai/index.js.map +1 -1
- package/packages/ai/src/lib/analyzeScope.js +181 -13
- package/packages/ai/src/lib/analyzeScope.js.map +1 -1
- package/packages/ai/src/lib/astScopes/arrayDerivationDetector.js +150 -0
- package/packages/ai/src/lib/astScopes/arrayDerivationDetector.js.map +1 -0
- package/packages/ai/src/lib/astScopes/astScopeAnalyzer.js +176 -13
- package/packages/ai/src/lib/astScopes/astScopeAnalyzer.js.map +1 -1
- package/packages/ai/src/lib/astScopes/conditionalEffectsExtractor.js +435 -0
- package/packages/ai/src/lib/astScopes/conditionalEffectsExtractor.js.map +1 -0
- package/packages/ai/src/lib/astScopes/methodSemantics.js +138 -23
- package/packages/ai/src/lib/astScopes/methodSemantics.js.map +1 -1
- package/packages/ai/src/lib/astScopes/patterns/forInStatementHandler.js +10 -14
- package/packages/ai/src/lib/astScopes/patterns/forInStatementHandler.js.map +1 -1
- package/packages/ai/src/lib/astScopes/patterns/ifStatementHandler.js +8 -0
- package/packages/ai/src/lib/astScopes/patterns/ifStatementHandler.js.map +1 -1
- package/packages/ai/src/lib/astScopes/patterns/switchStatementHandler.js +23 -0
- package/packages/ai/src/lib/astScopes/patterns/switchStatementHandler.js.map +1 -1
- package/packages/ai/src/lib/astScopes/patterns/variableDeclarationHandler.js +138 -1
- package/packages/ai/src/lib/astScopes/patterns/variableDeclarationHandler.js.map +1 -1
- package/packages/ai/src/lib/astScopes/processExpression.js +1235 -104
- package/packages/ai/src/lib/astScopes/processExpression.js.map +1 -1
- package/packages/ai/src/lib/astScopes/sharedPatterns.js +25 -0
- package/packages/ai/src/lib/astScopes/sharedPatterns.js.map +1 -1
- package/packages/ai/src/lib/checkAllAttributes.js +24 -9
- package/packages/ai/src/lib/checkAllAttributes.js.map +1 -1
- package/packages/ai/src/lib/completionCall.js +188 -38
- package/packages/ai/src/lib/completionCall.js.map +1 -1
- package/packages/ai/src/lib/dataStructure/ScopeDataStructure.js +2192 -224
- package/packages/ai/src/lib/dataStructure/ScopeDataStructure.js.map +1 -1
- package/packages/ai/src/lib/dataStructure/equivalencyManagers/frameworks/JavascriptFrameworkManager.js +19 -4
- package/packages/ai/src/lib/dataStructure/equivalencyManagers/frameworks/JavascriptFrameworkManager.js.map +1 -1
- package/packages/ai/src/lib/dataStructure/equivalencyManagers/frameworks/MuiManager.js +661 -0
- package/packages/ai/src/lib/dataStructure/equivalencyManagers/frameworks/MuiManager.js.map +1 -0
- package/packages/ai/src/lib/dataStructure/equivalencyManagers/frameworks/ReactFrameworkManager.js +180 -56
- package/packages/ai/src/lib/dataStructure/equivalencyManagers/frameworks/ReactFrameworkManager.js.map +1 -1
- package/packages/ai/src/lib/dataStructure/helpers/BatchSchemaProcessor.js +13 -3
- package/packages/ai/src/lib/dataStructure/helpers/BatchSchemaProcessor.js.map +1 -1
- package/packages/ai/src/lib/dataStructure/helpers/ScopeTreeManager.js +6 -4
- package/packages/ai/src/lib/dataStructure/helpers/ScopeTreeManager.js.map +1 -1
- package/packages/ai/src/lib/dataStructure/helpers/cleanKnownObjectFunctions.js +66 -2
- package/packages/ai/src/lib/dataStructure/helpers/cleanKnownObjectFunctions.js.map +1 -1
- package/packages/ai/src/lib/dataStructure/helpers/cleanNonObjectFunctions.js +139 -13
- package/packages/ai/src/lib/dataStructure/helpers/cleanNonObjectFunctions.js.map +1 -1
- package/packages/ai/src/lib/dataStructure/helpers/coerceObjectsToPrimitivesBySchema.js +63 -0
- package/packages/ai/src/lib/dataStructure/helpers/coerceObjectsToPrimitivesBySchema.js.map +1 -0
- package/packages/ai/src/lib/dataStructure/helpers/coercePrimitivesToArraysBySchema.js +54 -0
- package/packages/ai/src/lib/dataStructure/helpers/coercePrimitivesToArraysBySchema.js.map +1 -0
- package/packages/ai/src/lib/dataStructure/helpers/convertDotNotation.js +142 -12
- package/packages/ai/src/lib/dataStructure/helpers/convertDotNotation.js.map +1 -1
- package/packages/ai/src/lib/dataStructure/helpers/convertNullToUndefinedBySchema.js +86 -0
- package/packages/ai/src/lib/dataStructure/helpers/convertNullToUndefinedBySchema.js.map +1 -0
- package/packages/ai/src/lib/dataStructure/helpers/convertTypeAnnotationsToValues.js +173 -0
- package/packages/ai/src/lib/dataStructure/helpers/convertTypeAnnotationsToValues.js.map +1 -0
- package/packages/ai/src/lib/dataStructure/helpers/deduplicateFunctionSchemas.js +37 -20
- package/packages/ai/src/lib/dataStructure/helpers/deduplicateFunctionSchemas.js.map +1 -1
- package/packages/ai/src/lib/dataStructure/helpers/fillInSchemaGapsAndUnknowns.js +355 -77
- package/packages/ai/src/lib/dataStructure/helpers/fillInSchemaGapsAndUnknowns.js.map +1 -1
- package/packages/ai/src/lib/dataStructure/helpers/fixNullIdsBySchema.js +107 -0
- package/packages/ai/src/lib/dataStructure/helpers/fixNullIdsBySchema.js.map +1 -0
- package/packages/ai/src/lib/dataStructure/helpers/stripNullableMarkers.js +34 -0
- package/packages/ai/src/lib/dataStructure/helpers/stripNullableMarkers.js.map +1 -0
- package/packages/ai/src/lib/dataStructureChunking.js +130 -0
- package/packages/ai/src/lib/dataStructureChunking.js.map +1 -0
- package/packages/ai/src/lib/deepEqual.js +32 -0
- package/packages/ai/src/lib/deepEqual.js.map +1 -0
- package/packages/ai/src/lib/e2eDataTracking.js +241 -0
- package/packages/ai/src/lib/e2eDataTracking.js.map +1 -0
- package/packages/ai/src/lib/extractCriticalDataKeys.js +96 -0
- package/packages/ai/src/lib/extractCriticalDataKeys.js.map +1 -0
- package/packages/ai/src/lib/generateChangesEntityScenarioData.js +62 -5
- package/packages/ai/src/lib/generateChangesEntityScenarioData.js.map +1 -1
- package/packages/ai/src/lib/generateChangesEntityScenarios.js +81 -90
- package/packages/ai/src/lib/generateChangesEntityScenarios.js.map +1 -1
- package/packages/ai/src/lib/generateEntityDataStructure.js +50 -1
- package/packages/ai/src/lib/generateEntityDataStructure.js.map +1 -1
- package/packages/ai/src/lib/generateEntityScenarioData.js +1183 -85
- package/packages/ai/src/lib/generateEntityScenarioData.js.map +1 -1
- package/packages/ai/src/lib/generateEntityScenarios.js +193 -83
- package/packages/ai/src/lib/generateEntityScenarios.js.map +1 -1
- package/packages/ai/src/lib/generateExecutionFlows.js +484 -0
- package/packages/ai/src/lib/generateExecutionFlows.js.map +1 -0
- package/packages/ai/src/lib/generateExecutionFlowsFromConditionalEffects.js +380 -0
- package/packages/ai/src/lib/generateExecutionFlowsFromConditionalEffects.js.map +1 -0
- package/packages/ai/src/lib/generateExecutionFlowsFromConditionals.js +1807 -0
- package/packages/ai/src/lib/generateExecutionFlowsFromConditionals.js.map +1 -0
- package/packages/ai/src/lib/generateExecutionFlowsFromJsxUsages.js +194 -0
- package/packages/ai/src/lib/generateExecutionFlowsFromJsxUsages.js.map +1 -0
- package/packages/ai/src/lib/getConditionalUsagesFromCode.js +84 -14
- package/packages/ai/src/lib/getConditionalUsagesFromCode.js.map +1 -1
- package/packages/ai/src/lib/guessScenarioDataFromDescription.js +2 -1
- package/packages/ai/src/lib/guessScenarioDataFromDescription.js.map +1 -1
- package/packages/ai/src/lib/isolateScopes.js +270 -7
- package/packages/ai/src/lib/isolateScopes.js.map +1 -1
- package/packages/ai/src/lib/mergeJsonTypeDefinitions.js +5 -0
- package/packages/ai/src/lib/mergeJsonTypeDefinitions.js.map +1 -1
- package/packages/ai/src/lib/mergeStatements.js +88 -46
- package/packages/ai/src/lib/mergeStatements.js.map +1 -1
- package/packages/ai/src/lib/promptGenerators/collapseNullableObjects.js +97 -0
- package/packages/ai/src/lib/promptGenerators/collapseNullableObjects.js.map +1 -0
- package/packages/ai/src/lib/promptGenerators/gatherAttributesMap.js +16 -4
- package/packages/ai/src/lib/promptGenerators/gatherAttributesMap.js.map +1 -1
- package/packages/ai/src/lib/promptGenerators/generateChangesEntityScenarioDataGenerator.js +1 -1
- package/packages/ai/src/lib/promptGenerators/generateChangesEntityScenarioDataGenerator.js.map +1 -1
- package/packages/ai/src/lib/promptGenerators/generateChangesEntityScenariosGenerator.js +21 -64
- package/packages/ai/src/lib/promptGenerators/generateChangesEntityScenariosGenerator.js.map +1 -1
- package/packages/ai/src/lib/promptGenerators/generateChunkPrompt.js +54 -0
- package/packages/ai/src/lib/promptGenerators/generateChunkPrompt.js.map +1 -0
- package/packages/ai/src/lib/promptGenerators/generateEntityScenarioDataGenerator.js +83 -6
- package/packages/ai/src/lib/promptGenerators/generateEntityScenarioDataGenerator.js.map +1 -1
- package/packages/ai/src/lib/promptGenerators/generateEntityScenariosGenerator.js +10 -34
- package/packages/ai/src/lib/promptGenerators/generateEntityScenariosGenerator.js.map +1 -1
- package/packages/ai/src/lib/promptGenerators/generateMissingKeysPrompt.js +45 -0
- package/packages/ai/src/lib/promptGenerators/generateMissingKeysPrompt.js.map +1 -0
- package/packages/ai/src/lib/promptGenerators/guessNewScenarioDataFromDescriptionGenerator.js +16 -3
- package/packages/ai/src/lib/promptGenerators/guessNewScenarioDataFromDescriptionGenerator.js.map +1 -1
- package/packages/ai/src/lib/promptGenerators/simplifyKeysForLLM.js +335 -0
- package/packages/ai/src/lib/promptGenerators/simplifyKeysForLLM.js.map +1 -0
- package/packages/ai/src/lib/resolvePathToControllable.js +677 -0
- package/packages/ai/src/lib/resolvePathToControllable.js.map +1 -0
- package/packages/ai/src/lib/splitOutsideParentheses.js +3 -1
- package/packages/ai/src/lib/splitOutsideParentheses.js.map +1 -1
- package/packages/ai/src/lib/worker/SerializableDataStructure.js +29 -0
- package/packages/ai/src/lib/worker/SerializableDataStructure.js.map +1 -1
- package/packages/ai/src/lib/worker/analyzeScopeWorker.js +98 -1
- package/packages/ai/src/lib/worker/analyzeScopeWorker.js.map +1 -1
- package/packages/analyze/index.js +1 -0
- package/packages/analyze/index.js.map +1 -1
- package/packages/analyze/src/lib/FileAnalyzer.js +75 -36
- package/packages/analyze/src/lib/FileAnalyzer.js.map +1 -1
- package/packages/analyze/src/lib/ProjectAnalyzer.js +109 -30
- package/packages/analyze/src/lib/ProjectAnalyzer.js.map +1 -1
- package/packages/analyze/src/lib/analysisContext.js +30 -5
- package/packages/analyze/src/lib/analysisContext.js.map +1 -1
- package/packages/analyze/src/lib/asts/index.js +4 -2
- package/packages/analyze/src/lib/asts/index.js.map +1 -1
- package/packages/analyze/src/lib/asts/nodes/getNodeType.js +1 -0
- package/packages/analyze/src/lib/asts/nodes/getNodeType.js.map +1 -1
- package/packages/analyze/src/lib/asts/nodes/index.js +1 -0
- package/packages/analyze/src/lib/asts/nodes/index.js.map +1 -1
- package/packages/analyze/src/lib/asts/nodes/isAsyncFunction.js +52 -0
- package/packages/analyze/src/lib/asts/nodes/isAsyncFunction.js.map +1 -0
- package/packages/analyze/src/lib/asts/sourceFiles/getAllDeclaredEntityNodes.js +14 -0
- package/packages/analyze/src/lib/asts/sourceFiles/getAllDeclaredEntityNodes.js.map +1 -1
- package/packages/analyze/src/lib/asts/sourceFiles/getAllEntityNodes.js +14 -0
- package/packages/analyze/src/lib/asts/sourceFiles/getAllEntityNodes.js.map +1 -1
- package/packages/analyze/src/lib/asts/sourceFiles/getAllExports.js +6 -0
- package/packages/analyze/src/lib/asts/sourceFiles/getAllExports.js.map +1 -1
- package/packages/analyze/src/lib/asts/sourceFiles/getImportsAnalysis.js +6 -0
- package/packages/analyze/src/lib/asts/sourceFiles/getImportsAnalysis.js.map +1 -1
- package/packages/analyze/src/lib/asts/sourceFiles/getResolvedModule.js +39 -1
- package/packages/analyze/src/lib/asts/sourceFiles/getResolvedModule.js.map +1 -1
- package/packages/analyze/src/lib/asts/sourceFiles/getSourceFilesForAllImports.js +2 -1
- package/packages/analyze/src/lib/asts/sourceFiles/getSourceFilesForAllImports.js.map +1 -1
- package/packages/analyze/src/lib/files/analyze/analyzeEntities/prepareDataStructures.js +428 -123
- package/packages/analyze/src/lib/files/analyze/analyzeEntities/prepareDataStructures.js.map +1 -1
- package/packages/analyze/src/lib/files/analyze/analyzeEntities.js +49 -1
- package/packages/analyze/src/lib/files/analyze/analyzeEntities.js.map +1 -1
- package/packages/analyze/src/lib/files/analyze/findOrCreateEntity.js +11 -0
- package/packages/analyze/src/lib/files/analyze/findOrCreateEntity.js.map +1 -1
- package/packages/analyze/src/lib/files/analyze/gatherEntityMap.js +2 -1
- package/packages/analyze/src/lib/files/analyze/gatherEntityMap.js.map +1 -1
- package/packages/analyze/src/lib/files/analyze/validateDependencyAnalyses.js +31 -10
- package/packages/analyze/src/lib/files/analyze/validateDependencyAnalyses.js.map +1 -1
- package/packages/analyze/src/lib/files/analyzeChange.js +21 -11
- package/packages/analyze/src/lib/files/analyzeChange.js.map +1 -1
- package/packages/analyze/src/lib/files/analyzeEntity.js +9 -8
- package/packages/analyze/src/lib/files/analyzeEntity.js.map +1 -1
- package/packages/analyze/src/lib/files/analyzeInitial.js +9 -10
- package/packages/analyze/src/lib/files/analyzeInitial.js.map +1 -1
- package/packages/analyze/src/lib/files/analyzeRemixRoute.js +3 -2
- package/packages/analyze/src/lib/files/analyzeRemixRoute.js.map +1 -1
- package/packages/analyze/src/lib/files/enums/steps.js +1 -1
- package/packages/analyze/src/lib/files/enums/steps.js.map +1 -1
- package/packages/analyze/src/lib/files/getImportedExports.js +17 -8
- package/packages/analyze/src/lib/files/getImportedExports.js.map +1 -1
- package/packages/analyze/src/lib/files/scenarios/TransformationTracer.js +907 -0
- package/packages/analyze/src/lib/files/scenarios/TransformationTracer.js.map +1 -0
- package/packages/analyze/src/lib/files/scenarios/enrichArrayTypesFromChildSignatures.js +255 -0
- package/packages/analyze/src/lib/files/scenarios/enrichArrayTypesFromChildSignatures.js.map +1 -0
- package/packages/analyze/src/lib/files/scenarios/enrichUnknownTypesFromSourceEquivalencies.js +85 -0
- package/packages/analyze/src/lib/files/scenarios/enrichUnknownTypesFromSourceEquivalencies.js.map +1 -0
- package/packages/analyze/src/lib/files/scenarios/gatherDataForMocks.js +525 -61
- package/packages/analyze/src/lib/files/scenarios/gatherDataForMocks.js.map +1 -1
- package/packages/analyze/src/lib/files/scenarios/generateChangesScenarioData.js +1 -1
- package/packages/analyze/src/lib/files/scenarios/generateChangesScenarioData.js.map +1 -1
- package/packages/analyze/src/lib/files/scenarios/generateChangesScenarios.js +29 -34
- package/packages/analyze/src/lib/files/scenarios/generateChangesScenarios.js.map +1 -1
- package/packages/analyze/src/lib/files/scenarios/generateDataStructure.js +469 -85
- package/packages/analyze/src/lib/files/scenarios/generateDataStructure.js.map +1 -1
- package/packages/analyze/src/lib/files/scenarios/generateExecutionFlows.js +104 -0
- package/packages/analyze/src/lib/files/scenarios/generateExecutionFlows.js.map +1 -0
- package/packages/analyze/src/lib/files/scenarios/generateScenarioData.js +56 -69
- package/packages/analyze/src/lib/files/scenarios/generateScenarioData.js.map +1 -1
- package/packages/analyze/src/lib/files/scenarios/generateScenarios.js +4 -8
- package/packages/analyze/src/lib/files/scenarios/generateScenarios.js.map +1 -1
- package/packages/analyze/src/lib/files/scenarios/mergeInDependentDataStructure.js +891 -143
- package/packages/analyze/src/lib/files/scenarios/mergeInDependentDataStructure.js.map +1 -1
- package/packages/analyze/src/lib/files/scenarios/mergeValidatedDataStructures.js +46 -9
- package/packages/analyze/src/lib/files/scenarios/mergeValidatedDataStructures.js.map +1 -1
- package/packages/analyze/src/lib/files/setImportedExports.js +2 -1
- package/packages/analyze/src/lib/files/setImportedExports.js.map +1 -1
- package/packages/analyze/src/lib/index.js +1 -0
- package/packages/analyze/src/lib/index.js.map +1 -1
- package/packages/analyze/src/lib/utils/getFileByPath.js +12 -0
- package/packages/analyze/src/lib/utils/getFileByPath.js.map +1 -0
- package/packages/aws/src/lib/ecs/ecsDefineContainer.js +2 -2
- package/packages/aws/src/lib/ecs/ecsDefineContainer.js.map +1 -1
- package/packages/aws/src/lib/ecs/ecsTaskFactory.js +17 -61
- package/packages/aws/src/lib/ecs/ecsTaskFactory.js.map +1 -1
- package/packages/database/index.js +1 -0
- package/packages/database/index.js.map +1 -1
- package/packages/database/src/lib/analysisBranchToDb.js +1 -1
- package/packages/database/src/lib/analysisBranchToDb.js.map +1 -1
- package/packages/database/src/lib/analysisToDb.js +1 -1
- package/packages/database/src/lib/analysisToDb.js.map +1 -1
- package/packages/database/src/lib/branchToDb.js +1 -1
- package/packages/database/src/lib/branchToDb.js.map +1 -1
- package/packages/database/src/lib/commitBranchToDb.js +1 -1
- package/packages/database/src/lib/commitBranchToDb.js.map +1 -1
- package/packages/database/src/lib/commitToDb.js +1 -1
- package/packages/database/src/lib/commitToDb.js.map +1 -1
- package/packages/database/src/lib/fileToDb.js +1 -1
- package/packages/database/src/lib/fileToDb.js.map +1 -1
- package/packages/database/src/lib/kysely/db.js +18 -3
- package/packages/database/src/lib/kysely/db.js.map +1 -1
- package/packages/database/src/lib/kysely/tables/commitsTable.js +3 -0
- package/packages/database/src/lib/kysely/tables/commitsTable.js.map +1 -1
- package/packages/database/src/lib/kysely/tables/debugReportsTable.js +9 -3
- package/packages/database/src/lib/kysely/tables/debugReportsTable.js.map +1 -1
- package/packages/database/src/lib/kysely/tables/editorScenariosTable.js +149 -0
- package/packages/database/src/lib/kysely/tables/editorScenariosTable.js.map +1 -0
- package/packages/database/src/lib/kysely/tables/labsRequestsTable.js +35 -0
- package/packages/database/src/lib/kysely/tables/labsRequestsTable.js.map +1 -0
- package/packages/database/src/lib/loadAnalyses.js +45 -2
- package/packages/database/src/lib/loadAnalyses.js.map +1 -1
- package/packages/database/src/lib/loadAnalysis.js +8 -0
- package/packages/database/src/lib/loadAnalysis.js.map +1 -1
- package/packages/database/src/lib/loadBranch.js +11 -1
- package/packages/database/src/lib/loadBranch.js.map +1 -1
- package/packages/database/src/lib/loadCommit.js +7 -0
- package/packages/database/src/lib/loadCommit.js.map +1 -1
- package/packages/database/src/lib/loadCommits.js +45 -14
- package/packages/database/src/lib/loadCommits.js.map +1 -1
- package/packages/database/src/lib/loadEntities.js +23 -10
- package/packages/database/src/lib/loadEntities.js.map +1 -1
- package/packages/database/src/lib/loadEntityBranches.js +9 -0
- package/packages/database/src/lib/loadEntityBranches.js.map +1 -1
- package/packages/database/src/lib/loadReadyToBeCapturedAnalyses.js +5 -3
- package/packages/database/src/lib/loadReadyToBeCapturedAnalyses.js.map +1 -1
- package/packages/database/src/lib/projectToDb.js +1 -1
- package/packages/database/src/lib/projectToDb.js.map +1 -1
- package/packages/database/src/lib/saveFiles.js +1 -1
- package/packages/database/src/lib/saveFiles.js.map +1 -1
- package/packages/database/src/lib/scenarioToDb.js +1 -1
- package/packages/database/src/lib/scenarioToDb.js.map +1 -1
- package/packages/database/src/lib/updateCommitMetadata.js +76 -89
- package/packages/database/src/lib/updateCommitMetadata.js.map +1 -1
- package/packages/database/src/lib/updateFreshAnalysisStatus.js +41 -30
- package/packages/database/src/lib/updateFreshAnalysisStatus.js.map +1 -1
- package/packages/database/src/lib/updateFreshAnalysisStatusWithScenarios.js +68 -57
- package/packages/database/src/lib/updateFreshAnalysisStatusWithScenarios.js.map +1 -1
- package/packages/generate/index.js +3 -0
- package/packages/generate/index.js.map +1 -1
- package/packages/generate/src/lib/componentScenarioPage/componentScenarioPageNext.js +16 -1
- package/packages/generate/src/lib/componentScenarioPage/componentScenarioPageNext.js.map +1 -1
- package/packages/generate/src/lib/componentScenarioPage/generateScenarioClientWrapper.js +217 -0
- package/packages/generate/src/lib/componentScenarioPage/generateScenarioClientWrapper.js.map +1 -0
- package/packages/generate/src/lib/componentScenarioPage/generateScenarioServerComponent.js +53 -0
- package/packages/generate/src/lib/componentScenarioPage/generateScenarioServerComponent.js.map +1 -0
- package/packages/generate/src/lib/componentScenarioPage/getIFrameMessageListenerCode.js +41 -9
- package/packages/generate/src/lib/componentScenarioPage/getIFrameMessageListenerCode.js.map +1 -1
- package/packages/generate/src/lib/deepMerge.js +27 -1
- package/packages/generate/src/lib/deepMerge.js.map +1 -1
- package/packages/generate/src/lib/getComponentScenarioPath.js +7 -3
- package/packages/generate/src/lib/getComponentScenarioPath.js.map +1 -1
- package/packages/generate/src/lib/scenarioComponentForServer.js +89 -0
- package/packages/generate/src/lib/scenarioComponentForServer.js.map +1 -0
- package/packages/github/src/lib/loadOrCreateCommit.js +10 -0
- package/packages/github/src/lib/loadOrCreateCommit.js.map +1 -1
- package/packages/github/src/lib/syncPrimaryBranch.js +3 -0
- package/packages/github/src/lib/syncPrimaryBranch.js.map +1 -1
- package/packages/process/index.js +3 -0
- package/packages/process/index.js.map +1 -0
- package/packages/process/src/GlobalProcessManager.js.map +1 -0
- package/{background/src/lib/process → packages/process/src}/ProcessManager.js +1 -1
- package/packages/process/src/ProcessManager.js.map +1 -0
- package/packages/process/src/index.js.map +1 -0
- package/packages/process/src/managedExecAsync.js.map +1 -0
- package/packages/types/index.js.map +1 -1
- package/packages/types/src/enums/ProjectFramework.js +2 -0
- package/packages/types/src/enums/ProjectFramework.js.map +1 -1
- package/packages/utils/src/lib/applyUniversalMocks.js +26 -2
- package/packages/utils/src/lib/applyUniversalMocks.js.map +1 -1
- package/packages/utils/src/lib/fs/rsyncCopy.js +98 -3
- package/packages/utils/src/lib/fs/rsyncCopy.js.map +1 -1
- package/packages/utils/src/lib/lightweightEntityExtractor.js +25 -0
- package/packages/utils/src/lib/lightweightEntityExtractor.js.map +1 -1
- package/packages/utils/src/lib/safeFileName.js +29 -3
- package/packages/utils/src/lib/safeFileName.js.map +1 -1
- package/scripts/npm-post-install.cjs +34 -0
- package/analyzer-template/packages/ai/src/lib/findMatchingAttribute.ts +0 -102
- package/analyzer-template/packages/ai/src/lib/gatherRelevantDependentKeyAttributes.ts +0 -197
- package/analyzer-template/packages/ai/src/lib/generateChangesEntityKeyAttributes.ts +0 -271
- package/analyzer-template/packages/ai/src/lib/generateEntityKeyAttributes.ts +0 -294
- package/analyzer-template/packages/ai/src/lib/promptGenerators/generateEntityKeyAttributesGenerator.ts +0 -67
- package/analyzer-template/packages/analyze/src/lib/files/scenarios/generateKeyAttributes.ts +0 -115
- package/analyzer-template/process/INTEGRATION_COMPLETE.md +0 -333
- package/analyzer-template/process/INTEGRATION_EXAMPLE.md +0 -525
- package/analyzer-template/process/README.md +0 -507
- package/background/src/lib/process/GlobalProcessManager.js.map +0 -1
- package/background/src/lib/process/ProcessManager.js.map +0 -1
- package/background/src/lib/process/index.js.map +0 -1
- package/background/src/lib/process/managedExecAsync.js.map +0 -1
- package/codeyam-cli/scripts/fixtures/cal.com/universal-mocks/packages/prisma/index.js +0 -238
- package/codeyam-cli/scripts/fixtures/cal.com/universal-mocks/packages/prisma/index.js.map +0 -1
- package/codeyam-cli/src/commands/detect-universal-mocks.js +0 -118
- package/codeyam-cli/src/commands/detect-universal-mocks.js.map +0 -1
- package/codeyam-cli/src/commands/list.js +0 -31
- package/codeyam-cli/src/commands/list.js.map +0 -1
- package/codeyam-cli/src/commands/webapp-info.js +0 -146
- package/codeyam-cli/src/commands/webapp-info.js.map +0 -1
- package/codeyam-cli/src/utils/universal-mocks.js +0 -152
- package/codeyam-cli/src/utils/universal-mocks.js.map +0 -1
- package/codeyam-cli/src/webserver/build/client/assets/EntityItem-CWKV2GEz.js +0 -1
- package/codeyam-cli/src/webserver/build/client/assets/EntityTypeBadge-DQeyk25_.js +0 -1
- package/codeyam-cli/src/webserver/build/client/assets/EntityTypeIcon-D2hFeDeg.js +0 -1
- package/codeyam-cli/src/webserver/build/client/assets/InteractivePreview-C8K-4kKP.js +0 -26
- package/codeyam-cli/src/webserver/build/client/assets/LibraryFunctionPreview-DgXLv61M.js +0 -3
- package/codeyam-cli/src/webserver/build/client/assets/LogViewer-DFdLQbPS.js +0 -3
- package/codeyam-cli/src/webserver/build/client/assets/ReportIssueModal-DlRDjT4h.js +0 -1
- package/codeyam-cli/src/webserver/build/client/assets/SafeScreenshot-7UkVL-UI.js +0 -1
- package/codeyam-cli/src/webserver/build/client/assets/ScenarioViewer-XjtsGuPo.js +0 -5
- package/codeyam-cli/src/webserver/build/client/assets/TruncatedFilePath-ayCJdUAc.js +0 -1
- package/codeyam-cli/src/webserver/build/client/assets/_index-D2eJjWLf.js +0 -1
- package/codeyam-cli/src/webserver/build/client/assets/activity.(_tab)-w6sbwlOd.js +0 -7
- package/codeyam-cli/src/webserver/build/client/assets/chevron-down-BBNQ8hup.js +0 -1
- package/codeyam-cli/src/webserver/build/client/assets/chunk-WWGJGFF6-Bex4RrGs.js +0 -26
- package/codeyam-cli/src/webserver/build/client/assets/circle-check-cdhjVtom.js +0 -1
- package/codeyam-cli/src/webserver/build/client/assets/createLucideIcon-DkgmwwRC.js +0 -1
- package/codeyam-cli/src/webserver/build/client/assets/entity._sha_.create-scenario-YZ-kM3ZG.js +0 -1
- package/codeyam-cli/src/webserver/build/client/assets/entity._sha_.edit._scenarioId-BeQlz94_.js +0 -5
- package/codeyam-cli/src/webserver/build/client/assets/entry.client-DN2XXM7Z.js +0 -5
- package/codeyam-cli/src/webserver/build/client/assets/fileTableUtils-CUeAIQNI.js +0 -1
- package/codeyam-cli/src/webserver/build/client/assets/files-ccMQfhGf.js +0 -1
- package/codeyam-cli/src/webserver/build/client/assets/git-JmESAHx5.js +0 -12
- package/codeyam-cli/src/webserver/build/client/assets/globals-CO-U8Bpo.css +0 -1
- package/codeyam-cli/src/webserver/build/client/assets/html2canvas-pro.esm-XQCGvadH.js +0 -5
- package/codeyam-cli/src/webserver/build/client/assets/index-DsL9BiOc.js +0 -8
- package/codeyam-cli/src/webserver/build/client/assets/loader-circle-COYCR2oZ.js +0 -1
- package/codeyam-cli/src/webserver/build/client/assets/manifest-90adba57.js +0 -1
- package/codeyam-cli/src/webserver/build/client/assets/root-DfbVEEjF.js +0 -16
- package/codeyam-cli/src/webserver/build/client/assets/search-DvK9iMBu.js +0 -1
- package/codeyam-cli/src/webserver/build/client/assets/server-build-CMKNK2uU.css +0 -1
- package/codeyam-cli/src/webserver/build/client/assets/settings-9LTbit4Z.js +0 -1
- package/codeyam-cli/src/webserver/build/client/assets/simulations-BrxN5ZtV.js +0 -1
- package/codeyam-cli/src/webserver/build/client/assets/triangle-alert-Iv0p8T-1.js +0 -1
- package/codeyam-cli/src/webserver/build/client/assets/useLastLogLine-DOGXmJcI.js +0 -2
- package/codeyam-cli/src/webserver/build/client/assets/useReportContext-BWmSRPH6.js +0 -1
- package/codeyam-cli/src/webserver/build/client/assets/useToast-C07gRg7Z.js +0 -1
- package/codeyam-cli/src/webserver/build/server/assets/index-CE_1qXCG.js +0 -1
- package/codeyam-cli/src/webserver/build/server/assets/server-build-BY_VDhiD.js +0 -166
- package/codeyam-cli/templates/codeyam-stop-hook.sh +0 -284
- package/codeyam-cli/templates/debug-command.md +0 -141
- package/packages/ai/src/lib/findMatchingAttribute.js +0 -77
- package/packages/ai/src/lib/findMatchingAttribute.js.map +0 -1
- package/packages/ai/src/lib/gatherRelevantDependentKeyAttributes.js +0 -136
- package/packages/ai/src/lib/gatherRelevantDependentKeyAttributes.js.map +0 -1
- package/packages/ai/src/lib/generateChangesEntityKeyAttributes.js +0 -220
- package/packages/ai/src/lib/generateChangesEntityKeyAttributes.js.map +0 -1
- package/packages/ai/src/lib/generateEntityKeyAttributes.js +0 -241
- package/packages/ai/src/lib/generateEntityKeyAttributes.js.map +0 -1
- package/packages/ai/src/lib/isFrontend.js +0 -5
- package/packages/ai/src/lib/isFrontend.js.map +0 -1
- package/packages/ai/src/lib/promptGenerators/generateEntityKeyAttributesGenerator.js +0 -40
- package/packages/ai/src/lib/promptGenerators/generateEntityKeyAttributesGenerator.js.map +0 -1
- package/packages/analyze/src/lib/files/scenarios/generateKeyAttributes.js +0 -72
- package/packages/analyze/src/lib/files/scenarios/generateKeyAttributes.js.map +0 -1
- package/scripts/finalize-analyzer.cjs +0 -79
- /package/analyzer-template/{process → packages/process/src}/GlobalProcessManager.ts +0 -0
- /package/analyzer-template/{process → packages/process/src}/ProcessManager.ts +0 -0
- /package/analyzer-template/{process → packages/process/src}/index.ts +0 -0
- /package/analyzer-template/{process → packages/process/src}/managedExecAsync.ts +0 -0
- /package/codeyam-cli/src/webserver/build/client/assets/{InteractivePreview-CMKNK2uU.css → styles-CMKNK2uU.css} +0 -0
- /package/{background/src/lib/process → packages/process/src}/GlobalProcessManager.js +0 -0
- /package/{background/src/lib/process → packages/process/src}/index.js +0 -0
- /package/{background/src/lib/process → packages/process/src}/managedExecAsync.js +0 -0
|
@@ -0,0 +1,551 @@
|
|
|
1
|
+
var au=Object.defineProperty;var ui=e=>{throw TypeError(e)};var ou=(e,t,r)=>t in e?au(e,t,{enumerable:!0,configurable:!0,writable:!0,value:r}):e[t]=r;var Ft=(e,t,r)=>ou(e,typeof t!="symbol"?t+"":t,r),iu=(e,t,r)=>t.has(e)||ui("Cannot "+r);var pi=(e,t,r)=>(iu(e,t,"read from private field"),r?r.call(e):t.get(e)),hi=(e,t,r)=>t.has(e)?ui("Cannot add the same private member more than once"):t instanceof WeakSet?t.add(e):t.set(e,r);import{jsx as n,jsxs as d,Fragment as ye}from"react/jsx-runtime";import{PassThrough as lu}from"node:stream";import{createReadableStreamFromReadable as cu}from"@react-router/node";import{ServerRouter as du,useFetcher as Je,useLocation as Cr,useNavigate as Mt,Link as ve,UNSAFE_withComponentProps as Qe,Meta as uu,Links as pu,ScrollRestoration as hu,Scripts as mu,UNSAFE_withErrorBoundaryProps as fu,useRouteError as gu,isRouteErrorResponse as da,useLoaderData as tt,useRevalidator as Yt,Outlet as Dl,data as X,useSearchParams as Bn,useRouteLoaderData as yu,useParams as Ol,useActionData as xu,redirect as mi}from"react-router";import{isbot as bu}from"isbot";import{renderToPipeableStream as wu}from"react-dom/server";import{useState as M,useEffect as se,useCallback as ie,createContext as oo,useContext as ks,useRef as fe,useMemo as ae,forwardRef as vu,useImperativeHandle as Nu,Component as Cu}from"react";import{Settings as fi,CheckCircle2 as io,Bug as Fl,AlertTriangle as ls,Check as Ct,Copy as Pt,Loader2 as At,PencilRuler as Su,HomeIcon as _u,GitCommitIcon as gi,File as ku,RefreshCw as Eu,BookOpen as cs,FlaskConical as Au,SettingsIcon as Pu,PanelsTopLeftIcon as ju,ComponentIcon as Tu,FileText as yi,Code as xi,Box as Mu,List as $u,BarChart3 as Iu,Tag as Ru,Image as yr,Code2 as Ll,Activity as ua,ChevronDown as Nt,CircleEqual as Du,ArrowLeft as Ou,Terminal as ds,Search as Sr,ChevronLeft as Fu,ChevronRight as en,Save as Lu,MessageSquare as zu,Pause as zl,ListTodo as Bu,PauseCircle as Yu,FileCode as us,GripVertical as Uu,Ban as Wu,CheckCircle as Ju,FolderOpen as Hu,CodeXml as Vu,Zap as Gu,Pencil as Ku,Trash2 as qu,X as Yn,Folder as Bl,Info as Ia,Plus as lo,Eye as Qu,FolderTree as Zu,ChevronsUpDown as Yl,ChevronsDownUp as Ul}from"lucide-react";import"fetch-retry";import Xu from"better-sqlite3";import{Pool as ep}from"pg";import*as K from"fs";import ce,{existsSync as wt,readdirSync as tp,rmSync as pa,readFileSync as bi}from"fs";import*as L from"path";import ee,{join as xr}from"path";import{OperationNodeTransformer as np,sql as dt,Kysely as Wl,ParseJSONResultsPlugin as rp,SqliteDialect as sp,PostgresDialect as ap}from"kysely";import*as op from"kysely/helpers/sqlite";import*as ip from"kysely/helpers/postgres";import qe from"typescript";import*as Pe from"fs/promises";import Ee,{writeFile as dr,readFile as Ra,mkdir as lp}from"fs/promises";import*as co from"os";import Da,{homedir as cp}from"os";import dp from"prompts";import ps from"chalk";import*as Jl from"crypto";import Un,{randomUUID as uo,createHmac as up}from"crypto";import{execSync as Ie,spawn as St,exec as po}from"child_process";import{fileURLToPath as Es}from"url";import{promisify as ho}from"util";import pp from"dotenv";import hp,{EventEmitter as _r}from"events";import{v4 as mp}from"uuid";import mo from"http";import Hl from"net";import{WebSocket as fo}from"ws";import"node-pty";import fp from"openai";import gp from"p-queue";import wi from"p-retry";import{DynamoDBClient as As,PutItemCommand as yp}from"@aws-sdk/client-dynamodb";import{LRUCache as go}from"lru-cache";import"pluralize";import"piscina";import xp from"json5";import{marshall as bp}from"@aws-sdk/util-dynamodb";import wp from"v8";import{Prism as vp}from"react-syntax-highlighter";import{vscDarkPlus as Np}from"react-syntax-highlighter/dist/cjs/styles/prism/index.js";import{randomUUID as Cp}from"node:crypto";import{minimatch as Oa}from"minimatch";import Sp from"react-markdown";import _p from"remark-gfm";import kp from"react-diff-viewer-continued";const Vl=5e3;function Ep(e,t,r,s,a){return e.method.toUpperCase()==="HEAD"?new Response(null,{status:t,headers:r}):new Promise((o,i)=>{let l=!1,c=e.headers.get("user-agent"),p=c&&bu(c)||s.isSpaMode?"onAllReady":"onShellReady",u=setTimeout(()=>m(),Vl+1e3);const{pipe:h,abort:m}=wu(n(du,{context:s,url:e.url}),{[p](){l=!0;const f=new lu({final(y){clearTimeout(u),u=void 0,y()}}),g=cu(f);r.set("Content-Type","text/html"),h(f),o(new Response(g,{headers:r,status:t}))},onShellError(f){i(f)},onError(f){t=500,l&&console.error(f)}})})}const Ap=Object.freeze(Object.defineProperty({__proto__:null,default:Ep,streamTimeout:Vl},Symbol.toStringTag,{value:"Module"})),Pp=2e3,jp=5e3;function Tp(e){return e.startsWith("/editor")?jp:Pp}function Mp(e){const{now:t,lastRevalidation:r,throttleMs:s}=e;if(r===0)return"immediate";const a=t-r;return a>=s?"immediate":{action:"deferred",delayMs:s-a}}function $p({id:e,selected:t,onClick:r,icon:s,name:a}){const[o,i]=M(!1);se(()=>{i(!0)},[]);const l=ie(()=>{r==null||r(e)},[r,e]);return d("button",{className:`
|
|
2
|
+
w-full px-1.5 py-2 cursor-pointer focus:outline-none
|
|
3
|
+
flex flex-col items-center justify-center gap-1 transition-colors
|
|
4
|
+
${t?"text-[#CBF3FA]":"text-[#568B94] hover:text-[#CBF3FA]"}
|
|
5
|
+
`,onClick:l,children:[n("div",{className:`${t?"bg-[#CBF3FA] text-[#022A35]":""} w-9 h-9 rounded-lg flex items-center justify-center transition-colors`,children:o&&s}),n("span",{className:`text-[10px] font-normal text-center leading-tight ${t?"text-[#CBF3FA]":""}`,style:t?{color:"#CBF3FA !important"}:void 0,children:a})]})}const Ps="/assets/cy-logo-cli-CCKUIm0S.svg";function Ip(e){return e.scenarioName&&e.entityName?`${e.entityName} → "${e.scenarioName}"`:e.entityName?e.entityName:e.scenarioId?`Scenario: ${e.scenarioId.slice(0,8)}...`:e.entitySha?`Entity: ${e.entitySha.slice(0,8)}...`:"General feedback"}function Rp({content:e,className:t=""}){const[r,s]=M(!1),a=ie(()=>{navigator.clipboard.writeText(e).then(()=>{s(!0),setTimeout(()=>s(!1),2e3)}).catch(o=>{console.error("Failed to copy:",o)})},[e]);return n("button",{onClick:a,className:`cursor-pointer flex items-center gap-1 ${t}`,disabled:r,"aria-label":r?"Copied to clipboard":"Copy to clipboard",children:r?d(ye,{children:[n(Ct,{size:14}),"Copied"]}):d(ye,{children:[n(Pt,{size:14}),"Copy"]})})}function Gl({isOpen:e,onClose:t,context:r,defaultEmail:s="",screenshotDataUrl:a}){const[o,i]=M(""),[l,c]=M(s),[p,u]=M(!1),[h,m]=M(!1),[f,g]=M(null),[y,x]=M(null),w=Je(),b=w.state!=="idle",v=!!(r.scenarioId||r.analysisId),N=r.analysisId||r.scenarioId||"",k=()=>{const _=`/codeyam-diagnose ${N}`;return o.trim()?`${_} ${o.trim()}`:_};if(w.data&&!h&&!y){const _=w.data;_.success&&_.reportId?(m(!0),g(_.reportId)):_.error&&x(_.error)}const E=async()=>{x(null);const _=new FormData;if(_.append("issueType","other"),_.append("description",o),_.append("email",l),_.append("source",r.source),_.append("entitySha",r.entitySha||""),_.append("scenarioId",r.scenarioId||""),_.append("analysisId",r.analysisId||""),_.append("currentUrl",r.currentUrl),_.append("entityName",r.entityName||""),_.append("entityType",r.entityType||""),_.append("scenarioName",r.scenarioName||""),_.append("errorMessage",r.errorMessage||""),a)try{const $=await(await fetch(a)).blob();_.append("screenshot",$,"screenshot.jpg")}catch(j){console.error("Failed to convert screenshot:",j)}w.submit(_,{method:"post",action:"/api/generate-report",encType:"multipart/form-data"})},C=()=>{i(""),u(!1),m(!1),g(null),x(null),t()},S=_=>{_.key==="Escape"&&C()};return e?n("div",{className:"fixed inset-0 bg-black/50 flex items-center justify-center p-4 z-50",onKeyDown:S,children:d("div",{className:"bg-white rounded-lg max-w-lg w-full p-6 shadow-xl max-h-[90vh] overflow-y-auto",children:[d("div",{className:"flex items-center justify-between mb-6",children:[d("div",{className:"flex items-center gap-3",children:[b?n("div",{className:"animate-spin",children:n(fi,{size:24,style:{strokeWidth:1.5}})}):h?n(io,{size:24,style:{color:"#10B981",strokeWidth:1.5}}):n(Fl,{size:24,style:{color:"#005C75",strokeWidth:1.5}}),n("h2",{className:"text-xl font-semibold text-gray-900",children:h?"Report Submitted":"Report Issue"})]}),n("button",{onClick:C,className:"text-gray-400 hover:text-gray-600 transition-colors cursor-pointer","aria-label":"Close",children:n("svg",{className:"w-5 h-5",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",children:n("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M6 18L18 6M6 6l12 12"})})})]}),h?d("div",{children:[d("div",{className:"mb-6 p-4 bg-green-50 rounded-lg border border-green-200",children:[n("p",{className:"text-sm text-green-800 font-medium mb-1",children:"Thank you for your feedback!"}),d("p",{className:"text-xs text-green-700",children:["Report ID:"," ",n("code",{className:"bg-green-100 px-1 rounded",children:f})]})]}),n("p",{className:"text-sm text-gray-600 mb-6",children:"The CodeYam team will investigate and may reach out if you provided an email address."}),n("div",{className:"flex justify-end",children:n("button",{onClick:C,className:"px-4 py-2 bg-[#005c75] text-white text-sm font-medium rounded-md hover:bg-[#004a5c] transition-colors cursor-pointer",children:"Done"})})]}):d("div",{children:[d("div",{className:"mb-4 p-3 bg-gray-50 rounded-lg border border-gray-200",children:[d("div",{className:"flex items-center justify-between",children:[n("div",{className:"text-sm font-medium text-gray-900",title:`${r.source}${r.entitySha?` • Entity: ${r.entitySha}`:""}${r.scenarioId?` • Scenario: ${r.scenarioId}`:""}${r.analysisId?` • Analysis: ${r.analysisId}`:""}`,children:Ip(r)}),n("button",{type:"button",onClick:()=>u(!p),className:"text-xs text-gray-500 hover:text-gray-700 underline cursor-pointer",children:p?"Hide":"Details"})]}),p&&d("div",{className:"mt-2 pt-2 border-t border-gray-200 text-xs text-gray-600 space-y-1 break-all",children:[d("div",{children:[n("span",{className:"text-gray-400",children:"Source:"})," ",r.source]}),d("div",{children:[n("span",{className:"text-gray-400",children:"URL:"})," ",r.currentUrl]}),r.entitySha&&d("div",{children:[n("span",{className:"text-gray-400",children:"Entity:"})," ",n("code",{className:"bg-gray-100 px-1 rounded",children:r.entitySha})]}),r.scenarioId&&d("div",{children:[n("span",{className:"text-gray-400",children:"Scenario:"})," ",n("code",{className:"bg-gray-100 px-1 rounded",children:r.scenarioId})]}),r.analysisId&&d("div",{children:[n("span",{className:"text-gray-400",children:"Analysis:"})," ",n("code",{className:"bg-gray-100 px-1 rounded",children:r.analysisId})]})]})]}),a&&d("div",{className:"mb-4 p-3 bg-gray-50 rounded-lg border border-gray-200",children:[n("div",{className:"text-xs text-gray-500 mb-2",children:"Screenshot (will be included in report)"}),n("img",{src:a,alt:"Page screenshot",className:"w-full max-h-[150px] object-contain rounded border border-gray-300"})]}),d("div",{className:"mb-4",children:[n("label",{htmlFor:"description",className:"block text-sm font-medium text-gray-700 mb-2",children:"What happened?"}),n("textarea",{id:"description",value:o,onChange:_=>i(_.target.value),placeholder:"Optional: Describe what you expected vs what happened...",rows:3,className:"w-full px-3 py-2 border border-gray-300 rounded-md text-sm focus:outline-none focus:ring-2 focus:ring-[#005c75] focus:border-[#005c75] resize-none"})]}),v&&d(ye,{children:[d("div",{className:"mb-4 p-4 bg-purple-50 rounded-lg border border-purple-200",children:[d("div",{className:"flex items-center gap-2 mb-2",children:[n("span",{className:"text-lg",children:"🔧"}),n("h3",{className:"text-sm font-semibold text-purple-900",children:"Diagnose & Fix (Recommended)"})]}),n("p",{className:"text-xs text-purple-700 mb-3",children:"Run this command in Claude Code to investigate the issue locally and potentially fix it. A detailed report will also be uploaded."}),d("div",{className:"relative",children:[n("div",{className:"bg-gray-800 text-gray-50 px-3 py-2.5 pr-20 rounded-md text-xs font-mono overflow-x-auto whitespace-nowrap",children:k()}),n(Rp,{content:k(),className:"absolute top-1.5 right-2 px-2 py-1 bg-purple-600 text-white border-none rounded text-[11px] font-medium hover:bg-purple-700 transition-colors"})]})]}),d("div",{className:"relative my-5",children:[n("div",{className:"absolute inset-0 flex items-center",children:n("div",{className:"w-full border-t border-gray-300"})}),n("div",{className:"relative flex justify-center",children:n("span",{className:"bg-white px-3 text-xs text-gray-500 uppercase",children:"or"})})]})]}),d("div",{className:v?"opacity-75":"",children:[v&&d("div",{className:"flex items-center gap-2 mb-3",children:[n("span",{className:"text-lg",children:"📤"}),n("h3",{className:"text-sm font-semibold text-gray-700",children:"Quick Report"}),n("span",{className:"text-xs text-gray-500",children:"(won't investigate locally)"})]}),d("div",{className:"mb-4",children:[n("label",{htmlFor:"email",className:"block text-sm font-medium text-gray-700 mb-2",children:"Your email"}),n("input",{id:"email",type:"email",value:l,onChange:_=>c(_.target.value),placeholder:"you@example.com",className:"w-full px-3 py-2 border border-gray-300 rounded-md text-sm focus:outline-none focus:ring-2 focus:ring-[#005c75] focus:border-[#005c75]"})]}),d("div",{className:"mb-4 p-3 bg-amber-50 rounded-lg border border-amber-200 flex gap-2",children:[n(ls,{size:16,className:"flex-shrink-0 mt-0.5",style:{color:"#D97706"}}),d("div",{className:"text-xs text-amber-800",children:[n("p",{className:"font-medium mb-1",children:"Source code will be uploaded"}),n("p",{children:"This report includes your project source code, git history, and CodeYam logs. Only submit if you're comfortable sharing this with the CodeYam team."})]})]}),b&&n("div",{className:"mb-4 text-center",children:n("p",{className:"text-sm text-gray-600",children:w.formData?"Uploading report...":"Creating archive..."})}),y&&d("div",{className:"mb-4 p-3 bg-red-50 rounded-lg border border-red-200 flex gap-2",children:[n(ls,{size:16,className:"flex-shrink-0 mt-0.5",style:{color:"#DC2626"}}),d("div",{className:"text-xs text-red-800",children:[n("p",{className:"font-medium mb-1",children:"Upload failed"}),n("p",{children:y})]})]}),d("div",{className:"flex gap-3 justify-end",children:[n("button",{onClick:C,disabled:b,className:"px-4 py-2 bg-gray-100 text-gray-700 text-sm font-medium rounded-md hover:bg-gray-200 focus:outline-none focus:ring-2 focus:ring-gray-300 transition-colors disabled:opacity-50 cursor-pointer",children:"Cancel"}),n("button",{onClick:()=>void E(),disabled:b,className:"px-4 py-2 bg-[#005c75] text-white text-sm font-medium rounded-md hover:bg-[#004a5c] focus:outline-none focus:ring-2 focus:ring-[#005c75] focus:ring-offset-1 transition-colors disabled:bg-gray-300 disabled:cursor-not-allowed flex items-center gap-2 cursor-pointer",children:b?d(ye,{children:[n("div",{className:"animate-spin",children:n(fi,{size:16,style:{strokeWidth:1.5}})}),"Submitting..."]}):y?"Try Again":"Submit Report"})]})]})]})]})}):null}const vi={source:"navbar"},yo=oo(void 0);function Dp({children:e}){const[t,r]=M(vi),s=ie(o=>{r(o)},[]),a=ie(()=>{r(vi)},[]);return n(yo.Provider,{value:{contextData:t,setContextData:s,resetContextData:a},children:e})}function $t(e){const t=ks(yo),r=fe(t);se(()=>{if(r.current)return r.current.setContextData(e),()=>{var s;(s=r.current)==null||s.resetContextData()}},[e.source,e.entitySha,e.scenarioId,e.analysisId,e.entityName,e.entityType,e.scenarioName,e.errorMessage])}function Op(){const e=ks(yo),t=Cr();return e?{source:e.contextData.source,entitySha:e.contextData.entitySha,scenarioId:e.contextData.scenarioId,analysisId:e.contextData.analysisId,currentUrl:t.pathname,entityName:e.contextData.entityName,entityType:e.contextData.entityType,scenarioName:e.contextData.scenarioName,errorMessage:e.contextData.errorMessage}:{source:"navbar",currentUrl:t.pathname}}function Fp({labs:e,isAdmin:t,editorMode:r}){var E;const s=Cr(),a=Mt(),[o,i]=M(),[l,c]=M(!1),[p,u]=M(!1),[h,m]=M(null),f=Je();se(()=>{f.state==="idle"&&!f.data&&f.load("/api/generate-report")},[f]);const g=((E=f.data)==null?void 0:E.defaultEmail)||"",y={width:"20px",height:"20px",strokeWidth:1.5},x=(e==null?void 0:e.simulations)??!1,w=[{id:"editor",icon:n(Su,{style:y}),link:"/editor",name:"Editor",hidden:!r},{id:"dashboard",icon:n(_u,{style:y}),link:"/",name:"Dashboard",hidden:!x},{id:"simulations",icon:d("svg",{width:"20",height:"20",viewBox:"0 0 18 18",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:y,children:[n("path",{d:"M9 12.75V15.75",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),n("path",{d:"M6 15.75H12",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),n("path",{d:"M6.75 12.7498L11.325 8.17483C11.6067 7.89873 11.9858 7.7447 12.3803 7.7461C12.7747 7.74751 13.1528 7.90423 13.4325 8.18233L16.5 11.2498",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),n("path",{d:"M6 8.25C6.82843 8.25 7.5 7.57843 7.5 6.75C7.5 5.92157 6.82843 5.25 6 5.25C5.17157 5.25 4.5 5.92157 4.5 6.75C4.5 7.57843 5.17157 8.25 6 8.25Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),n("path",{d:"M15 2.25H3C2.17157 2.25 1.5 2.92157 1.5 3.75V11.25C1.5 12.0784 2.17157 12.75 3 12.75H15C15.8284 12.75 16.5 12.0784 16.5 11.25V3.75C16.5 2.92157 15.8284 2.25 15 2.25Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})]}),link:"/simulations",name:"Simulations",hidden:!x},{id:"git",icon:n(gi,{style:y}),link:"/git",name:"Git",hidden:!x},{id:"files",icon:n(ku,{style:y}),link:"/files",name:"Files",hidden:!x},{id:"activity",icon:n(Eu,{style:y}),link:"/activity",name:"Activity",hidden:!x},{id:"memory",icon:n(cs,{style:y}),link:"/memory",name:"Memory"},{id:"labs",icon:n(Au,{style:y}),link:"/labs",name:"Labs"},{id:"settings",icon:n(Pu,{style:y}),link:"/settings",name:"Settings"},{id:"commits",icon:n(gi,{style:y}),link:"/commits",name:"Commits",hidden:!0},{id:"pages",icon:n(ju,{style:y}),link:"/pages",name:"Pages",hidden:!0},{id:"components",icon:n(Tu,{style:y}),link:"/components",name:"Components",hidden:!0}],b=ie(C=>{const S=w.find(_=>_.id===C);S!=null&&S.link&&a(S.link),i(_=>_===C?void 0:C)},[w,a]);se(()=>{const C={editor:["editor"],dashboard:["/","/home"],git:["git"],commits:["commits"],simulations:["simulations"],activity:["activity"],memory:["memory","agent-transcripts"],files:["files"],labs:["labs"],settings:["settings"],pages:["pages"],components:["components"]};for(const[S,_]of Object.entries(C))if(_.some(j=>j==="/"?s.pathname==="/":s.pathname.includes(j))){i(S);return}i(void 0)},[s]);const v=async()=>{u(!0);try{const{default:C}=await import("html2canvas-pro"),_=(await C(document.body)).toDataURL("image/jpeg",.8);m(_),c(!0)}catch(C){console.error("Screenshot capture failed:",C),c(!0)}finally{u(!1)}},N=()=>{c(!1),m(null)},k=Op();return d(ye,{children:[d("div",{id:"sidebar",className:"sticky top-0 w-full h-screen bg-[#051C22] flex flex-col justify-between py-3",children:[d("div",{className:"w-full flex flex-col items-center",children:[n("div",{className:"py-3 mt-2 mb-4",children:n(ve,{to:"/",className:"flex items-center justify-center cursor-pointer",children:n("img",{src:Ps,alt:"CodeYam",className:"h-6"})})}),w.filter(C=>!C.hidden).map(C=>n($p,{id:C.id,selected:C.id===o,onClick:b,icon:C.icon,name:C.name},`sidebar-button-${C.id}`))]}),t&&n("div",{className:"w-full flex flex-col items-center pb-2",children:d("button",{onClick:()=>void v(),disabled:p,className:"w-full px-1.5 py-2 flex flex-col items-center justify-center gap-1 text-[#568B94] hover:text-[#CBF3FA] transition-colors cursor-pointer disabled:opacity-50 disabled:cursor-wait",children:[n("div",{className:"w-9 h-9 rounded-lg flex items-center justify-center",children:p?n(At,{style:{width:"20px",height:"20px",strokeWidth:1.5},className:"animate-spin"}):n(Fl,{style:{width:"20px",height:"20px",strokeWidth:1.5}})}),n("span",{className:"text-[9px] font-normal text-center leading-tight whitespace-pre-line",children:p?"Capturing...":`Report
|
|
6
|
+
Bug`})]})})]}),l&&n(Gl,{isOpen:!0,onClose:N,context:k,defaultEmail:g,screenshotDataUrl:h??void 0})]})}const Kl=oo(void 0);function Lp({children:e}){const[t,r]=M([]),s=ie((o,i="info",l=5e3)=>{const p={id:`toast-${Date.now()}-${Math.random()}`,message:o,type:i,duration:l};r(u=>[...u,p])},[]),a=ie(o=>{r(i=>i.filter(l=>l.id!==o))},[]);return n(Kl.Provider,{value:{toasts:t,showToast:s,closeToast:a},children:e})}function xo(){const e=ks(Kl);if(!e)throw new Error("useToast must be used within a ToastProvider");return e}function zp({toast:e,onClose:t}){se(()=>{const a=e.duration||5e3;if(a>0){const o=setTimeout(()=>{t(e.id)},a);return()=>clearTimeout(o)}},[e.id,e.duration,t]);const r={success:"✅",error:"❌",info:"ℹ️",warning:"⚠️"};return d("div",{className:`flex items-center gap-3 px-4 py-3 rounded-lg border-2 shadow-lg min-w-[320px] max-w-[500px] animate-[slideIn_0.3s_ease-out] ${{success:"bg-emerald-50 border-emerald-200 text-emerald-900",error:"bg-red-50 border-red-200 text-red-900",info:"bg-blue-50 border-blue-200 text-blue-900",warning:"bg-amber-50 border-amber-200 text-amber-900"}[e.type]}`,children:[n("span",{className:"text-2xl",children:r[e.type]}),n("p",{className:"flex-1 text-sm font-medium m-0",children:e.message}),n("button",{onClick:()=>t(e.id),className:"text-gray-500 hover:text-gray-700 text-xl leading-none bg-transparent border-none cursor-pointer p-0 w-6 h-6 flex items-center justify-center rounded transition-colors hover:bg-black/10",children:"×"})]})}function Bp({toasts:e,onClose:t}){return e.length===0?null:d("div",{className:"fixed top-4 right-4 z-10000 flex flex-col gap-2",children:[n("style",{children:`
|
|
7
|
+
@keyframes slideIn {
|
|
8
|
+
from {
|
|
9
|
+
transform: translateX(400px);
|
|
10
|
+
opacity: 0;
|
|
11
|
+
}
|
|
12
|
+
to {
|
|
13
|
+
transform: translateX(0);
|
|
14
|
+
opacity: 1;
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
`}),e.map(r=>n(zp,{toast:r,onClose:t},r.id))]})}function Ut(e,t){const[r,s]=M(""),[a,o]=M(!1),[i,l]=M(null),[c,p]=M(!1);se(()=>{t&&(p(!1),o(!1),l(null))},[t]),se(()=>{if(!e||!t){t||s("");return}const h=async()=>{if(!c)try{const f=await fetch(`/api/logs/${e}`);if(f.ok){const y=(await f.text()).trim().split(`
|
|
18
|
+
`).filter(b=>b.length>0);if(y.length<3){o(!1),p(!1),l(null),s("");return}const x=y.filter(b=>b.includes("CodeYam Log Level 1"));if(x.length>0){const b=x[x.length-1];s(b.replace(/.*CodeYam Log Level 1: /,""))}const w=y.find(b=>b.includes("$$INTERACTIVE_SERVER_URL$$:"));if(w){const b=w.split("$$INTERACTIVE_SERVER_URL$$:")[1].trim();l(b),p(!0)}y.some(b=>b.includes("CodeYam: Exiting start.js"))&&o(!0)}}catch{}};h().catch(()=>{});const m=setInterval(()=>{h().catch(()=>{})},500);return()=>clearInterval(m)},[e,t,c]);const u=ie(()=>{s(""),o(!1),l(null),p(!1)},[]);return{lastLine:r,interactiveUrl:i,isCompleted:a,resetLogs:u}}function Qt({projectSlug:e,onClose:t}){const[r,s]=M("Loading logs..."),[a,o]=M(!0),[i,l]=M(!0),[c,p]=M("all"),u=fe(null);return se(()=>{const h=async()=>{try{const m=await fetch(`/api/logs/${e}`);if(m.ok){const f=await m.text();if(c==="all")s(f);else{const g=f.trim().split(`
|
|
19
|
+
`).filter(y=>{if(y.length===0)return!1;const x=y.match(/^.*CodeYam Log Level (\d+):/);return!!x&&Number(x[1])<=c});s(g.map(y=>y.replace(/^.*CodeYam Log Level \d+:\s*/,"")).join(`
|
|
20
|
+
`))}i&&u.current&&setTimeout(()=>{var g;(g=u.current)==null||g.scrollTo({top:u.current.scrollHeight,behavior:"smooth"})},100)}else s(`Error: ${m.status} - ${await m.text()}`)}catch(m){s(`Error fetching logs: ${m.message}`)}};if(h().catch(()=>{}),a){const m=setInterval(()=>{h().catch(()=>{})},2e3);return()=>clearInterval(m)}},[e,a,i,c]),se(()=>{const h=m=>{m.key==="Escape"&&t()};return window.addEventListener("keydown",h),()=>window.removeEventListener("keydown",h)},[t]),n("div",{className:"fixed inset-0 bg-black/70 flex items-center justify-center z-9999 p-5",onClick:t,children:d("div",{className:"bg-[#1e1e1e] rounded-lg shadow-2xl flex flex-col max-w-[1200px] w-full max-h-[90vh] overflow-hidden",onClick:h=>h.stopPropagation(),children:[d("div",{className:"flex justify-between items-center px-5 py-4 border-b border-[#333] bg-[#252525]",children:[d("h3",{className:"m-0 text-lg font-semibold text-white",children:["Analysis Logs - ",e]}),d("div",{className:"flex items-center gap-4",children:[d("label",{className:"flex items-center gap-2 text-sm text-[#ccc] select-none",children:[n("span",{children:"Log Level:"}),d("select",{value:c,onChange:h=>p(h.target.value==="all"?"all":Number(h.target.value)),className:"bg-[#333] text-white border border-[#555] rounded px-2 py-1 text-sm cursor-pointer outline-none transition-all hover:border-[#777] hover:bg-[#3a3a3a] focus:border-blue-600",children:[n("option",{value:"1",children:"1"}),n("option",{value:"2",children:"2"}),n("option",{value:"3",children:"3"}),n("option",{value:"4",children:"4"}),n("option",{value:"all",children:"All"})]})]}),d("label",{className:"flex items-center gap-1.5 text-sm text-[#ccc] cursor-pointer select-none group",children:[n("input",{type:"checkbox",checked:a,onChange:h=>o(h.target.checked),className:"cursor-pointer"}),n("span",{className:"group-hover:text-white",children:"Auto-refresh"})]}),d("label",{className:"flex items-center gap-1.5 text-sm text-[#ccc] cursor-pointer select-none group",children:[n("input",{type:"checkbox",checked:i,onChange:h=>l(h.target.checked),className:"cursor-pointer"}),n("span",{className:"group-hover:text-white",children:"Auto-scroll"})]}),n("button",{onClick:t,className:"bg-transparent border-none text-[#999] text-2xl cursor-pointer p-0 w-8 h-8 flex items-center justify-center rounded transition-all hover:bg-[#333] hover:text-white",title:"Close (Esc)",children:"✕"})]})]}),n("pre",{className:"flex-1 m-0 px-5 py-4 overflow-auto font-mono text-[13px] leading-relaxed text-[#d4d4d4] bg-[#1e1e1e] whitespace-pre-wrap wrap-break-word scrollbar-thin scrollbar-thumb-[#424242] scrollbar-track-[#1e1e1e] hover:scrollbar-thumb-[#4f4f4f]",ref:u,children:r})]})})}function ut({type:e,size:t="default"}){const r={visual:{iconColor:"#7c3aed",bgColor:"bg-purple-100",bgHex:"#f3e8ff"},library:{iconColor:"#06b6d5",bgColor:"bg-[#e6fbff]",bgHex:"#e6fbff"},type:{iconColor:"#db2627",bgColor:"bg-[#ffe1e1]",bgHex:"#ffe1e1"},data:{iconColor:"#2563eb",bgColor:"bg-blue-100",bgHex:"#dbeafe"},index:{iconColor:"#ea580c",bgColor:"bg-orange-100",bgHex:"#ffedd5"},functionCall:{iconColor:"#7c3aed",bgColor:"bg-purple-100",bgHex:"#f3e8ff"},class:{iconColor:"#059669",bgColor:"bg-emerald-100",bgHex:"#d1fae5"},method:{iconColor:"#0891b2",bgColor:"bg-cyan-100",bgHex:"#cffafe"},other:{iconColor:"#6b7280",bgColor:"bg-gray-100",bgHex:"#f3f4f6"}},s=r[e]||r.other,a=t==="large"?18:14,o=t==="large"?32:18,i=()=>{switch(e){case"library":return n(Ll,{size:a,color:s.iconColor});case"visual":return n(yr,{size:a,color:s.iconColor});case"type":return n(Ru,{size:a,color:s.iconColor});case"data":return n(Iu,{size:a,color:s.iconColor});case"index":return n($u,{size:a,color:s.iconColor});case"functionCall":return n(xi,{size:a,color:s.iconColor});case"class":return n(Mu,{size:a,color:s.iconColor});case"method":return n(xi,{size:a,color:s.iconColor});case"other":return n(yi,{size:a,color:s.iconColor});default:return n(yi,{size:a,color:s.iconColor})}};return n("span",{className:`flex items-center justify-center rounded ${s.bgColor}`,style:{width:`${o}px`,height:`${o}px`},children:i()})}function ql({filePath:e,maxLength:t=60,className:r,style:s}){const o=((l,c)=>{if(l.length<=c)return l;const p="...",u=c-p.length,h=Math.ceil(u*.4),m=Math.floor(u*.6),f=l.slice(0,h),g=l.slice(-m),y=f.lastIndexOf("/"),x=g.indexOf("/"),w=y>h*.5?f.slice(0,y+1):f,b=x!==-1&&x<m*.5?g.slice(x):g;return`${w}${p}${b}`})(e,t),i=o!==e;return n("span",{className:r||"font-normal text-gray-900 text-[14px] select-text cursor-text",style:{...s,display:"inline-block",maxWidth:"100%",overflow:"hidden",textOverflow:"ellipsis",whiteSpace:"nowrap"},title:i?e:void 0,children:o})}function ha({entity:e,nameSize:t="11px",pathSize:r="10px",pathMaxLength:s=50,showScenarioCount:a=!1,scenarioCount:o=0,additionalContent:i}){return d("div",{className:"flex flex-col gap-1",children:[d("div",{className:"flex items-center gap-1",children:[n(ut,{type:e.entityType||"other"}),d(ve,{to:`/entity/${e.sha}`,className:"hover:underline shrink-0 cursor-pointer",style:{fontSize:t,fontWeight:500,color:"#000",whiteSpace:"nowrap"},children:[e.name,a&&o>0&&` (${o})`]}),n(ql,{filePath:e.filePath,maxLength:s,style:{fontSize:r,color:"#8E8E8E"}})]}),i]})}const ma={fontSize:"9px",color:"#005C75",fontStyle:"italic"};function Yp({currentRun:e,projectSlug:t,currentEntities:r=[],isAnalysisStarting:s=!1,queuedJobCount:a=0,queueJobs:o=[],currentlyExecuting:i=null,historicalRuns:l=[]}){var J,F,H;const[c,p]=M(!1),[u,h]=M(!1),[m,f]=M(null),[g,y]=M(new Set),[x,w]=M(new Set),[b,v]=M(!1),N=!!i||o.length>0,k=!!i,E=(i==null?void 0:i.entities)||r,C=!!(e!=null&&e.analysisCompletedAt),S=(e==null?void 0:e.readyToBeCaptured)??0,_=(e==null?void 0:e.capturesCompleted)??0;e!=null&&e.captureCompletedAt||C&&(S===0||_>=S);const j=(e==null?void 0:e.currentEntityShas)&&e.currentEntityShas.length>0,$=N,{lastLine:P}=Ut(t,$),I=k||o.length>0,R=new Set(((J=i==null?void 0:i.entities)==null?void 0:J.map(U=>U.sha))||[]),T=l.filter(U=>!(U.currentEntityShas||[]).some(A=>R.has(A))),G=(()=>{const z=Date.now()-1440*60*1e3;if(e!=null&&e.createdAt&&j){const A=e.analysisCompletedAt||e.createdAt;if(new Date(A).getTime()>z)return!0}if(T.length>0){const A=T[0],Y=A.analysisCompletedAt||A.archivedAt||A.createdAt;if(Y&&new Date(Y).getTime()>z)return!0}return!1})();return se(()=>{const U=(i==null?void 0:i.id)||null;N&&!u&&U!==m&&h(!0),!N&&m!==null&&f(null)},[N,i==null?void 0:i.id,u,m]),d(ye,{children:[d("div",{className:`fixed bottom-4 right-4 z-9998 bg-white rounded shadow-lg border-2 border-primary-100 transition-all duration-200 ${u?"min-w-[350px] max-w-[500px]":"w-auto"}`,children:[!u&&d("div",{onClick:()=>{h(!0),f(null)},className:"flex items-center gap-2 px-3 py-2 cursor-pointer hover:bg-gray-50 transition-colors",title:"Click to expand",children:[I?n(At,{size:16,className:"animate-spin",style:{color:"#005C75"}}):n("div",{className:"flex items-center justify-center rounded",style:{backgroundColor:"#E0E9EC",width:"20px",height:"20px"},children:n(ua,{size:16,style:{color:"#005C75"}})}),n("span",{style:{fontSize:"12px",fontWeight:500,color:"#343434"},children:I?"Analyzing...":"Activity: No Activity Yet"}),I&&n("button",{onClick:U=>{U.stopPropagation(),p(!0)},className:"ml-auto px-2 py-1 rounded transition-colors cursor-pointer",style:{backgroundColor:"#E0E9EC",color:"#005C75",fontSize:"10px",fontWeight:600},children:"View Logs"})]}),u&&d("div",{children:[d("div",{className:"flex items-center justify-between px-3 py-2",children:[d("div",{className:"flex items-center gap-2",children:[I?n(At,{size:16,className:"animate-spin",style:{color:"#005C75"}}):n("div",{className:"flex items-center justify-center rounded",style:{backgroundColor:"#E0E9EC",width:"20px",height:"20px"},children:n(ua,{size:16,style:{color:"#005C75"}})}),n("span",{style:{fontSize:"12px",fontWeight:500,color:"#343434"},children:I?"Analyzing...":"Activity"})]}),d("div",{className:"flex items-center gap-2",children:[n("button",{onClick:()=>p(!0),className:"px-2 py-1 rounded transition-colors cursor-pointer",style:{backgroundColor:"#E0E9EC",color:"#005C75",fontSize:"10px",fontWeight:600},children:"View Logs"}),n("button",{onClick:()=>{h(!1),f((i==null?void 0:i.id)||null)},className:"p-1 rounded transition-colors cursor-pointer",style:{backgroundColor:"#E0E9EC"},title:"Collapse","aria-label":"Collapse",children:n(Nt,{size:16,style:{color:"#646464"}})})]})]}),n("div",{style:{height:"1px",backgroundColor:"#E0E9EC",margin:"0 12px"}}),d("div",{className:"px-3 pt-2 pb-3 space-y-3",children:[I&&i&&d("div",{children:[d("div",{className:"flex items-center gap-1.5 mb-2",children:[n(ua,{size:12,style:{color:"#005C75"}}),n("h4",{style:{fontSize:"11px",fontWeight:600,color:"#343434"},children:"Current Activity"})]}),n("div",{className:"rounded p-2",style:{backgroundColor:"#f5f5f5"},children:E.length>0?d("div",{className:"space-y-1.5",children:[(b?E:E.slice(0,3)).map(U=>n(ha,{entity:U,nameSize:"11px",pathSize:"10px",pathMaxLength:150},U.sha)),E.length>3&&n("button",{onClick:()=>v(U=>!U),className:"cursor-pointer bg-transparent border-none p-0 hover:underline",style:ma,"aria-label":b?"Show fewer entities":`Show ${E.length-3} more entities`,children:b?"Show less":`+${E.length-3} more`}),P&&n("div",{style:{fontSize:"10px",color:"#005C75",marginTop:"4px"},children:P})]}):d("div",{children:[i.entityNames&&i.entityNames.length>0?d("div",{className:"space-y-0.5",children:[i.entityNames.slice(0,5).map((U,z)=>n("div",{style:{fontSize:"11px",color:"#343434"},children:U},z)),i.entityNames.length>5&&d("div",{className:"italic",style:{fontSize:"10px",color:"#666"},children:["+",i.entityNames.length-5," ","more"]})]}):d("div",{style:{fontSize:"11px",color:"#343434"},children:["Analyzing"," ",((F=i.entityShas)==null?void 0:F.length)||0," ",((H=i.entityShas)==null?void 0:H.length)===1?"entity":"entities","..."]}),P&&n("div",{style:{fontSize:"10px",color:"#005C75",marginTop:"4px"},children:P})]})})]}),o.length>0&&d("div",{children:[d("div",{className:"flex items-center gap-1.5 mb-2",children:[n(Du,{size:12,style:{color:"#005C75"}}),n("h4",{style:{fontSize:"11px",fontWeight:600,color:"#343434"},children:"Queued Activity"})]}),n("div",{className:"space-y-2 max-h-[200px] overflow-y-auto",children:o.map(U=>{var Y,V;const z=g.has(U.id),A=z?U.entities:U.entities.slice(0,3);return n("div",{className:"rounded p-2",style:{backgroundColor:"#f5f5f5"},children:U.entities.length>0?d("div",{className:"space-y-1.5",children:[A.map(W=>n(ha,{entity:W,nameSize:"10px",pathSize:"9px",pathMaxLength:120},W.sha)),U.entities.length>3&&n("button",{onClick:()=>{y(W=>{const Q=new Set(W);return Q.has(U.id)?Q.delete(U.id):Q.add(U.id),Q})},className:"cursor-pointer bg-transparent border-none p-0 hover:underline",style:ma,"aria-label":z?"Show fewer entities":`Show ${U.entities.length-3} more entities`,children:z?"Show less":`+${U.entities.length-3} more`})]}):d("div",{style:{fontSize:"10px",color:"#343434"},children:[U.type==="analysis"&&n(ye,{children:U.entityNames&&U.entityNames.length>0?d("div",{className:"space-y-0.5",children:[U.entityNames.slice(0,5).map((W,Q)=>n("div",{children:W},Q)),U.entityNames.length>5&&d("div",{className:"italic",children:["+",U.entityNames.length-5," more"]})]}):`Analyzing ${((Y=U.entityShas)==null?void 0:Y.length)||0} ${((V=U.entityShas)==null?void 0:V.length)===1?"entity":"entities"}`}),U.type==="recapture"&&"Recapturing scenario",U.type==="debug-setup"&&"Setting up debug environment"]})},U.id)})})]}),G&&T.length>0&&d("div",{children:[d("div",{className:"flex items-center gap-1.5 mb-2",children:[n(io,{size:12,style:{color:"#005C75"}}),n("h4",{style:{fontSize:"11px",fontWeight:600,color:"#343434"},children:"Recently Completed"})]}),n("div",{className:"space-y-2 max-h-[200px] overflow-y-auto",children:T.slice(0,3).map((U,z)=>{const A=U.entities||[],Y=U.analysisCompletedAt||U.archivedAt||U.createdAt||"",V=(()=>{if(!Y)return"";const D=Date.now()-new Date(Y).getTime(),O=Math.floor(D/6e4),q=Math.floor(D/36e5);return q>0?`${q}h ago`:O>0?`${O}m ago`:"just now"})(),W=x.has(z),B=(W?A:A.slice(0,3)).map(D=>{var O,q,re;return{...D,scenarioCount:((re=(q=(O=D.analyses)==null?void 0:O[0])==null?void 0:q.scenarios)==null?void 0:re.length)||0}});return n("div",{className:"rounded p-2",style:{backgroundColor:"#f5f5f5"},children:A.length>0&&d("div",{className:"space-y-1.5",children:[B.map((D,O)=>d("div",{className:"flex items-start justify-between gap-2",children:[n("div",{className:"flex-1 min-w-0",children:n(ha,{entity:D,nameSize:"10px",pathSize:"9px",pathMaxLength:100,showScenarioCount:!0,scenarioCount:D.scenarioCount})}),O===0&&V&&n("div",{style:{fontSize:"9px",color:"#8E8E8E",whiteSpace:"nowrap",paddingTop:"2px"},children:V})]},D.sha)),A.length>3&&n("button",{onClick:()=>{w(D=>{const O=new Set(D);return O.has(z)?O.delete(z):O.add(z),O})},className:"cursor-pointer bg-transparent border-none p-0 hover:underline",style:ma,"aria-label":W?"Show fewer entities":`Show ${A.length-3} more entities`,children:W?"Show less":`+${A.length-3} more`})]})},z)})})]})]}),n("div",{style:{height:"1px",backgroundColor:"#E0E9EC",margin:"0 12px"}}),n("div",{className:"px-3 pb-2",children:n(ve,{to:"/activity",className:"text-xs font-medium hover:underline cursor-pointer",style:{color:"#005C75"},children:"View All Activity →"})})]})]}),c&&t&&n(Qt,{projectSlug:t,onClose:()=>p(!1)})]})}function pt(e){return Object.fromEntries(Object.entries(e).map(([t,r])=>[t,r===null?void 0:r]))}function kr(e){const{file_id:t,project_id:r,commit_id:s,file_path:a,entity_type:o,entity_branches:i,analyses:l,commit:c,created_at:p,updated_at:u,...h}=e,m=(i??[]).map(y=>y.branch_id),f=l?l.map(Wt):void 0,g=c?fn(c):void 0;return pt({...h,fileId:t,projectId:r,commitId:s,filePath:a,entityType:o,commit:g,analyses:f,branchIds:m,createdAt:p,updatedAt:u})}function bo(e){return pt({id:e.id,projectId:e.project_id,name:e.name,path:e.path,deleted:!!e.deleted,metadata:e.metadata??void 0,createdAt:e.created_at,updatedAt:e.updated_at??void 0})}function js(e){const{branches:t,files:r,analyzed_at:s,content_changed_at:a,created_at:o,updated_at:i,github_token:l,configuration:c,team_id:p,...u}=e;return pt({...u,branches:t?t.map(gn):void 0,files:r?r.map(bo):void 0,analyzedAt:s,contentChangedAt:a,createdAt:o,updatedAt:i})}function Up(e){const{id:t,project_id:r,user_id:s,scenario_id:a,thumbs_up:o,user:i}=e,l=i?{username:i.github_username,avatarUrl:i.github_user.avatar_url}:void 0;return pt({id:t,projectId:r,userId:s,scenarioId:a,thumbsUp:!!o,user:l})}function Wp(e){const{id:t,project_id:r,user_id:s,scenario_id:a,text:o,created_at:i,updated_at:l,user:c}=e,p=c?{username:c.github_username,avatarUrl:c.github_user.avatar_url}:void 0;return pt({id:t,projectId:r,userId:s,scenarioId:a,text:o,createdAt:i,updatedAt:l,user:p})}function Ql(e){const{project_id:t,analysis_id:r,previous_version_id:s,analysis:a,user_scenarios:o,scenario_comments:i,approved:l,...c}=e,p=a?Wt(a):void 0,u=o?o.map(Up):void 0,h=i?i.map(Wp):void 0;return pt({...c,projectId:t,analysisId:r,previousVersionId:s,analysis:p,userScenarios:u,comments:h})}function Jp(e){return pt({id:e.id,analysisId:e.analysis_id,entitySha:e.entity_sha,branchId:e.branch_id,active:!!e.active,analysis:e.analysis?Wt(e.analysis):void 0,entity:e.entity?kr(e.entity):void 0,branch:e.branch?gn(e.branch):void 0,createdAt:e.created_at})}function Wt(e){const{project_id:t,commit_id:r,file_id:s,file_path:a,entity_sha:o,entity_type:i,entity_name:l,previous_analysis_id:c,file:p,entity:u,commit:h,project:m,scenarios:f,analysis_branches:g,dependency_analyzed_tree_sha:y,analyzed_tree_sha:x,branch_commit_sha:w,committed_at:b,completed_at:v,created_at:N,updated_at:k,indirect:E,...C}=e,S=u?kr(u):void 0,_=p?bo(p):void 0,j=m?js(m):void 0,$=h?fn(h):void 0,P=f?f.map(Ql):void 0,I=g?g.map(Jp):void 0,R=I?I.map(T=>T.branch):void 0;return pt({...C,projectId:t,commitId:r,fileId:s,filePath:a,entitySha:o,entityType:i,entityName:l,previousAnalysisId:c,entity:S,file:_,commit:$,project:j,scenarios:P,analysisBranches:I,branches:R,dependencyAnalyzedTreeSha:y,analyzedTreeSha:x,branchCommitSha:w,committedAt:b,completedAt:v,createdAt:N,updatedAt:k,indirect:!!E})}function wo(e){return pt({id:e.id,commitId:e.commit_id,branchId:e.branch_id,active:!!e.active,commit:e.commit?fn(e.commit):void 0,branch:e.branch?gn(e.branch):void 0})}function Hp(e){const{project_id:t,commit_id:r,created_at:s,updated_at:a,success:o,...i}=e;return pt({...i,projectId:t,commitId:r,createdAt:s,updatedAt:a,success:!!o})}function fn(e){const{project_id:t,branch_id:r,branch:s,background_jobs:a,merged_branch_id:o,mergedBranch:i,ai_message:l,html_url:c,author:p,analyses:u,entities:h,commit_branches:m,committed_at:f,analyzed_at:g,...y}=e,x=s?gn(s):void 0,w=i?gn(i):void 0,b=(a==null?void 0:a.length)>0?Hp(a[a.length-1]):void 0,v=(u??[]).map(Wt),N=(h??[]).map(kr),k=(m==null?void 0:m.length)>0?m.map(wo):void 0;return p&&(p.username=p.preferredUsername??p.username),pt({...y,projectId:t,branchId:r,branch:x,backgroundJob:b,mergedBranchId:o,mergedBranch:w,aiMessage:l,htmlUrl:c,author:p,analyses:v,entities:N,commitBranches:k,committedAt:f,analyzedAt:g})}function gn(e){const{project_id:t,content_changed_at:r,commits:s,analysis_branches:a,active_at:o,created_at:i,updated_at:l,primary:c,...p}=e,u=s?s.map(fn):void 0,h=a?a.flatMap(m=>Wt(m.analysis)):void 0;return pt({...p,projectId:t,contentChangedAt:r,commits:u,analyses:h,activeAt:o,createdAt:i,updatedAt:l,primary:!!c})}var Ss;class Vp{constructor(){hi(this,Ss,new Gp)}transformQuery(t){return pi(this,Ss).transformNode(t.node)}transformResult(t){return Promise.resolve(t.result)}}Ss=new WeakMap;class Gp extends np{transformValue(t){return{...super.transformValue(t),value:typeof t.value=="boolean"?t.value?1:0:t.value}}transformPrimitiveValueList(t){return{...t,values:t.values.map(r=>typeof r=="boolean"?r?1:0:r)}}}const ue=()=>null;function Le(e=!1){return t=>(t=t.defaultTo(dt`CURRENT_TIMESTAMP`),e&&(t=t.notNull()),t)}const Kp={analyzed_at:ue(),configuration:ue(),content_changed_at:ue(),created_at:ue(),description:ue(),github_token:ue(),id:ue(),metadata:ue(),name:ue(),path:ue(),slug:ue(),team_id:ue(),updated_at:ue()},qp=Object.keys(Kp);async function Qp(e){await e.schema.createTable("projects").addColumn("id","uuid",t=>t.primaryKey()).addColumn("name","text").addColumn("slug","text",t=>t.notNull()).addColumn("github_token","text").addColumn("description","text").addColumn("path","text").addColumn("configuration","text").addColumn("metadata","text").addColumn("content_changed_at","datetime").addColumn("analyzed_at","datetime").addColumn("created_at","datetime",Le(!0)).addColumn("updated_at","datetime",Le()).addColumn("team_id","integer").ifNotExists().execute()}async function Zp(e){await e.schema.createTable("analyses").addColumn("id","uuid",t=>t.primaryKey()).addColumn("project_id","uuid").addColumn("file_id","uuid").addColumn("commit_id","uuid").addColumn("entity_sha","varchar").addColumn("entity_name","varchar").addColumn("status","text").addColumn("metadata","text").addColumn("created_at","datetime",Le(!0)).addColumn("updated_at","datetime",Le(!0)).addColumn("tree_sha","text").addColumn("analyzed_tree_sha","text").addColumn("dependency_analyzed_tree_sha","text").addColumn("previous_analysis_id","uuid").addColumn("branch_commit_sha","varchar").addColumn("indirect","boolean").addColumn("committed_at","datetime").addColumn("completed_at","datetime").addColumn("file_path","varchar").addColumn("entity_type","varchar").ifNotExists().execute()}const Xp={active:ue(),analysis_id:ue(),branch_id:ue(),created_at:ue(),entity_sha:ue(),id:ue()},eh=Object.keys(Xp);async function th(e){await e.schema.createTable("analysis_branches").addColumn("id","uuid",t=>t.primaryKey()).addColumn("analysis_id","uuid",t=>t.notNull()).addColumn("branch_id","uuid",t=>t.notNull()).addColumn("entity_sha","varchar",t=>t.notNull()).addColumn("active","boolean",t=>t.defaultTo(!0)).addColumn("created_at","datetime",Le()).ifNotExists().execute()}async function nh(e){await e.schema.createTable("background_jobs").addColumn("commit_id","uuid",t=>t.notNull()).addColumn("project_id","uuid",t=>t.notNull()).addColumn("progress","text").addColumn("success","boolean").addColumn("created_at","datetime",Le(!0)).addColumn("updated_at","datetime").addPrimaryKeyConstraint("background_jobs_pkey",["project_id","commit_id"]).ifNotExists().execute()}const rh={active_at:ue(),content_changed_at:ue(),created_at:ue(),id:ue(),metadata:ue(),name:ue(),primary:ue(),project_id:ue(),ref:ue(),sha:ue(),updated_at:ue()},Zl=Object.keys(rh);async function sh(e){await e.schema.createTable("branches").addColumn("id","uuid",t=>t.primaryKey()).addColumn("project_id","uuid").addColumn("ref","text").addColumn("name","text").addColumn("sha","text").addColumn("primary","boolean",t=>t.notNull().defaultTo(!1)).addColumn("metadata","text").addColumn("content_changed_at","datetime",Le()).addColumn("active_at","datetime").addColumn("created_at","datetime",Le(!0)).addColumn("updated_at","datetime",Le()).ifNotExists().execute()}async function ah(e){await e.schema.createTable("commit_branches").addColumn("id","uuid",t=>t.primaryKey()).addColumn("branch_id","uuid").addColumn("commit_id","uuid").addColumn("active","boolean").addColumn("created_at","datetime",Le(!0)).ifNotExists().execute()}const oh={ai_message:ue(),analyzed_at:ue(),author_github_username:ue(),branch_id:ue(),committed_at:ue(),created_at:ue(),files:ue(),html_url:ue(),id:ue(),merged_branch_id:ue(),message:ue(),metadata:ue(),project_id:ue(),sha:ue(),title:ue(),url:ue()},Xl=Object.keys(oh),ih=Xl.filter(e=>e!=="files");async function lh(e){await e.schema.createTable("commits").addColumn("id","uuid",t=>t.primaryKey()).addColumn("project_id","uuid",t=>t.notNull()).addColumn("branch_id","uuid").addColumn("merged_branch_id","uuid").addColumn("message","text").addColumn("ai_message","text").addColumn("title","varchar").addColumn("author_github_username","varchar").addColumn("url","varchar").addColumn("html_url","varchar").addColumn("sha","varchar",t=>t.notNull()).addColumn("files","text").addColumn("metadata","text").addColumn("committed_at","datetime").addColumn("analyzed_at","datetime").addColumn("created_at","datetime",Le(!0)).ifNotExists().execute()}async function ch(e){await e.schema.createTable("debug_reports").addColumn("id","uuid",t=>t.primaryKey()).addColumn("project_slug","varchar",t=>t.notNull()).addColumn("s3_key","varchar",t=>t.notNull()).addColumn("file_size_bytes","bigint").addColumn("metadata","text").addColumn("status","varchar").addColumn("created_at","datetime",Le(!0)).addColumn("uploaded_at","datetime").addColumn("base_sha","varchar").addColumn("delta_size_bytes","bigint").ifNotExists().execute()}async function dh(e){await e.schema.createTable("labs_requests").addColumn("id","uuid",t=>t.primaryKey()).addColumn("project_slug","varchar",t=>t.notNull().unique()).addColumn("name","varchar",t=>t.notNull()).addColumn("email","varchar",t=>t.notNull()).addColumn("org_name","varchar").addColumn("org_size","varchar").addColumn("project_size","varchar").addColumn("tech_stack","varchar").addColumn("status","varchar").addColumn("unlock_code","varchar").addColumn("created_at","datetime",Le(!0)).addColumn("approved_at","datetime").ifNotExists().execute()}const uh={commit_id:ue(),created_at:ue(),description:ue(),documentation:ue(),entity_type:ue(),file_id:ue(),file_path:ue(),metadata:ue(),name:ue(),project_id:ue(),quality:ue(),sha:ue(),updated_at:ue()},ec=Object.keys(uh);async function ph(e){await e.schema.createTable("entities").addColumn("project_id","uuid",t=>t.notNull()).addColumn("file_id","uuid").addColumn("commit_id","uuid").addColumn("name","varchar").addColumn("sha","varchar",t=>t.primaryKey()).addColumn("entity_type","varchar").addColumn("file_path","varchar").addColumn("description","text").addColumn("documentation","text").addColumn("metadata","text").addColumn("quality","text").addColumn("created_at","datetime",Le(!0)).addColumn("updated_at","datetime").ifNotExists().execute()}const hh={active:ue(),branch_id:ue(),entity_sha:ue()},mh=Object.keys(hh);async function fh(e){await e.schema.createTable("entity_branches").addColumn("branch_id","uuid",t=>t.notNull()).addColumn("entity_sha","varchar",t=>t.notNull()).addColumn("active","boolean",t=>t.defaultTo(!0)).addPrimaryKeyConstraint("entity_branches_pkey",["branch_id","entity_sha"]).ifNotExists().execute()}async function gh(e){await e.schema.createTable("entity_statements").addColumn("id","integer",t=>t.autoIncrement().primaryKey()).addColumn("project_id","uuid",t=>t.notNull()).addColumn("entity_sha","varchar",t=>t.notNull()).addColumn("statement_sha","varchar",t=>t.notNull()).addColumn("created_at","datetime",Le(!0)).ifNotExists().execute()}const yh={created_at:ue(),deleted:ue(),id:ue(),metadata:ue(),name:ue(),path:ue(),project_id:ue(),updated_at:ue()},xh=Object.keys(yh);async function bh(e){await e.schema.createTable("files").addColumn("id","uuid",t=>t.primaryKey()).addColumn("project_id","uuid",t=>t.notNull()).addColumn("name","varchar").addColumn("path","varchar",t=>t.notNull()).addColumn("deleted","boolean",t=>t.defaultTo(!1)).addColumn("created_at","datetime",Le(!0)).addColumn("updated_at","datetime",Le()).addColumn("metadata","text").ifNotExists().execute()}async function wh(e){await e.schema.createTable("github_payloads").addColumn("id","uuid",t=>t.primaryKey()).addColumn("project_id","uuid",t=>t.notNull()).addColumn("payload_type","varchar").addColumn("payload","text").addColumn("after","varchar").addColumn("commit_sha","varchar").addColumn("ref","varchar").addColumn("committed_at","datetime").addColumn("error","text").addColumn("created_at","datetime",Le(!0)).ifNotExists().execute()}async function vh(e){await e.schema.createTable("github_users").addColumn("username","varchar",t=>t.primaryKey()).addColumn("preferred_username","varchar").addColumn("avatar_url","varchar").addColumn("created_at","datetime",Le(!0)).addColumn("updated_at","datetime",Le()).ifNotExists().execute()}async function Nh(e){await e.schema.createTable("scenario_comments").addColumn("id","serial",t=>t.primaryKey()).addColumn("project_id","uuid").addColumn("scenario_id","uuid").addColumn("user_id","uuid").addColumn("text","text").addColumn("metadata","text").addColumn("created_at","datetime",Le(!0)).addColumn("updated_at","datetime",Le(!0)).ifNotExists().execute()}async function Ch(e){await e.schema.createTable("editor_scenarios").addColumn("id","uuid",t=>t.primaryKey()).addColumn("project_id","uuid",t=>t.notNull()).addColumn("name","varchar",t=>t.notNull()).addColumn("description","text").addColumn("component_name","varchar").addColumn("component_path","varchar").addColumn("url","varchar").addColumn("type","varchar").addColumn("screenshot_path","varchar").addColumn("created_at","datetime",Le(!0)).addColumn("updated_at","datetime",Le(!0)).ifNotExists().execute();for(const t of["component_name","component_path","url","type","screenshot_path"])try{await e.schema.alterTable("editor_scenarios").addColumn(t,"varchar").execute()}catch{}for(const t of["viewport_width","viewport_height"])try{await e.schema.alterTable("editor_scenarios").addColumn(t,"integer").execute()}catch{}for(const t of["dimensions","screenshot_paths"])try{await e.schema.alterTable("editor_scenarios").addColumn(t,"text").execute()}catch{}for(const t of["page_file_path","entity_sha","display_name"])try{await e.schema.alterTable("editor_scenarios").addColumn(t,"varchar").execute()}catch{}try{const t=await e.selectFrom("editor_scenarios").select(["id","dimension","dimensions"]).execute();for(const r of t){const s=r;s.dimension&&!s.dimensions&&await e.updateTable("editor_scenarios").set({dimensions:JSON.stringify([s.dimension])}).where("id","=",s.id).execute()}}catch{}try{const t=await e.selectFrom("editor_scenarios").select(["id","screenshot_path","screenshot_paths","dimensions"]).execute();for(const r of t){const s=r;if(s.screenshot_path&&!s.screenshot_paths){let a="Default";try{const o=s.dimensions?JSON.parse(s.dimensions):null;Array.isArray(o)&&o.length>0&&(a=o[0])}catch{}await e.updateTable("editor_scenarios").set({screenshot_paths:JSON.stringify({[a]:s.screenshot_path})}).where("id","=",s.id).execute()}}}catch{}}const Sh={analysis_id:ue(),approved:ue(),created_at:ue(),description:ue(),id:ue(),metadata:ue(),name:ue(),previous_version_id:ue(),project_id:ue()},hs=Object.keys(Sh);async function _h(e){await e.schema.createTable("scenarios").addColumn("id","uuid",t=>t.primaryKey()).addColumn("project_id","uuid").addColumn("analysis_id","uuid").addColumn("name","varchar").addColumn("description","text").addColumn("metadata","text").addColumn("approved","boolean").addColumn("previous_version_id","uuid").addColumn("created_at","datetime",Le(!0)).ifNotExists().execute()}async function kh(e){await e.schema.createTable("statements").addColumn("sha","varchar",t=>t.primaryKey()).addColumn("text","text",t=>t.notNull()).addColumn("llm_call_id","varchar").addColumn("results","text").addColumn("issues","text").addColumn("created_at","datetime",Le(!0)).ifNotExists().execute()}async function Eh(e){await e.schema.createTable("teams").addColumn("id","serial",t=>t.primaryKey()).addColumn("name","varchar",t=>t.notNull()).addColumn("created_at","datetime",Le(!0)).ifNotExists().execute()}async function Ah(e){await e.schema.createTable("user_scenarios").addColumn("id","uuid",t=>t.primaryKey()).addColumn("project_id","uuid",t=>t.notNull()).addColumn("scenario_id","uuid",t=>t.notNull()).addColumn("user_id","uuid",t=>t.notNull()).addColumn("thumbs_up","boolean",t=>t.defaultTo(!1)).addColumn("created_at","datetime",Le(!0)).ifNotExists().execute()}async function Ph(e){await e.schema.createTable("user_teams").addColumn("team_id","integer",t=>t.notNull()).addColumn("user_auth_id","uuid",t=>t.notNull()).addPrimaryKeyConstraint("user_teams_pkey",["team_id","user_auth_id"]).ifNotExists().execute()}async function jh(e){await e.schema.createTable("users").addColumn("auth_id","uuid",t=>t.primaryKey()).addColumn("email","varchar").addColumn("github_username","varchar").addColumn("github_token","varchar").addColumn("verified","boolean",t=>t.defaultTo(!1)).addColumn("created_at","datetime",Le(!0)).addColumn("updated_at","datetime",Le()).ifNotExists().execute()}const Th=!!yn("ENABLE_QUERY_LOGGING"),Mh=!!yn("ENABLE_QUERY_ERROR_LOGGING");yn("USE_LOCAL_POSTGRESQL_FOR_TESTING");let Wr;function Te(){if(!Wr){const e=nc();if(e==="sqlite")Wr=$h();else if(e==="postgresql")Wr=Ih();else throw new Error(`Unknown database type: ${e}`)}return Wr}function $h(e){if(e||(e=yn("SQLITE_PATH")),e===":memory:"||e==="memory")throw new Error("In-memory SQLite not supported in getDatabase(). Use getDatabaseForTesting() instead.");const t=K.existsSync(e),r=L.dirname(e);if(!K.existsSync(r))K.mkdirSync(r,{recursive:!0,mode:493});else try{K.chmodSync(r,493)}catch(a){console.warn(`Warning: Could not set permissions on database directory: ${a.message}`)}const s=new Xu(e,{readonly:!1,fileMustExist:!1});if(s.pragma("journal_mode = WAL"),s.pragma("busy_timeout = 5000"),s.pragma("synchronous = FULL"),!process.env.CLAUDE_CODE_MODE)try{const a=s.prepare("SELECT COUNT(*) as count FROM sqlite_master WHERE type='table' AND name='projects'").get();t&&a.count===0&&(console.error("CodeYam DB ERROR: Database file existed but projects table is missing!"),console.error("This likely means SQLite created a new empty database instead of opening the existing one."),console.error("Possible causes: corruption, WAL file issues, or file locking problems."))}catch(a){console.error("CodeYam DB ERROR: Failed to verify database schema:",a)}return new Wl({dialect:new sp({database:s}),plugins:[new rp,new Vp],log:tc})}function Ih(){const e=Dh();console.log(`CodeYam: Using PostgreSQL database at: ${e}`);const t=new ep({connectionString:e,max:3,idleTimeoutMillis:1e4});return t.on("error",(r,s)=>{console.error("CodeYam: Unexpected error on idle PostgreSQL client",r)}),new Wl({dialect:new ap({pool:t}),log:tc})}let fa=null;function bn(){return fa||(fa=Rh(nc())),fa}function tc(e){e.level==="error"?Mh&&console.error("Query failed : ",{durationMs:e.queryDurationMillis,error:e.error,sql:e.query.sql,params:e.query.parameters}):Th&&console.log("Query executed : ",{durationMs:e.queryDurationMillis,sql:e.query.sql,params:e.query.parameters})}function Rh(e){if(e==="sqlite")return op;if(e==="postgresql")return ip;throw new Error(`Unknown database type: ${e}`)}function nc(){if(yn("SQLITE_PATH"))return"sqlite";if(yn("POSTGRESQL_URL"))return"postgresql";throw new Error("No database configuration found. Set SQLITE_PATH for SQLite or POSTGRESQL_URL for PostgreSQL")}async function b2(e){await Qp(e),await Zp(e),await th(e),await nh(e),await sh(e),await ah(e),await lh(e),await ch(e),await Ch(e),await ph(e),await fh(e),await gh(e),await bh(e),await wh(e),await vh(e),await dh(e),await Nh(e),await _h(e),await kh(e),await Eh(e),await Ah(e),await Ph(e),await jh(e)}function Dh(){const e=yn("POSTGRESQL_URL");if(!e)throw new Error("No PostgreSQL connection string found. Set POSTGRESQL_URL environment variable.");return e}function yn(e){var t;return typeof window<"u"?(t=window.env)==null?void 0:t[e]:process.env[e]}const Oh=()=>crypto.randomUUID();function Fh(e){const{id:t,projectId:r,activeAt:s,contentChangedAt:a,metadata:o,...i}=e;return delete i.commits,delete i.files,delete i.analyses,delete i.createdAt,delete i.updatedAt,{...i,id:t??Oh(),project_id:r,active_at:s,content_changed_at:a,metadata:o?JSON.stringify(o):null}}var et=(e=>(e.Remix="Remix",e.CodeYam="CodeYam",e.CRA="CRA",e.Next="Next",e.NextPages="NextPages",e.Vite="Vite",e.Expo="Expo",e.Unknown="Unknown",e))(et||{});const Ts="Default Scenario";let Lh="<main>";function zh(){return Lh}function Ni(e,...t){De(`CodeYam Log Level ${e}: ${t[0]}`,...t.slice(1))}function De(...e){const t=zh(),r=e.map(a=>{if(a)return typeof a=="string"?a:a instanceof Error?`${a.name}: ${a.message}
|
|
21
|
+
${a.stack}`:typeof a=="object"?Bh(a):String(a)}).filter(Boolean).join(`
|
|
22
|
+
`),s=`${t} ${r}`;if(!process.env.CODEYAM_ECS_TASK_ARN){console.log(s+`
|
|
23
|
+
`);return}console.log(s.replace(/\n/g,"\r"))}function Bh(e,t=2){function r(s,a=new WeakMap){return s===null||typeof s!="object"?s:a.has(s)?`"[Circular: ${s.constructor.name}]"`:(a.set(s,!0),Array.isArray(s)?`[${s.map(l=>{const c=r(l,a);return typeof l=="string"?`"${c}"`:c}).join(",")}]`:`{${Object.entries(s).map(([i,l])=>{let c;return typeof l>"u"?null:(typeof l=="function"?c=`"(function: ${l.name||"anonymous"})"`:l instanceof Date?c=`"${l.toISOString()}"`:typeof l=="object"&&l!==null?c=r(l,a):typeof l=="string"?c=`"${l.replace(/"/g,'\\"')}"`:c=JSON.stringify(l),`"${i.replace(/"/g,'\\"')}":${c}`)}).filter(Boolean).join(",")}}`)}try{return JSON.stringify(e,null,t)}catch(s){const a=r(e);if(!t)return a;try{return JSON.stringify(JSON.parse(r(e)),null,t)}catch(o){return console.log("CodeYam Error: error stringifying object to provide proper spacing",{error:o,pureStringifyError:s,serialized:a}),a}}}function ms(e,t){try{let r=function(o){var i,l;if(qe.isFunctionDeclaration(o)&&sr(o)){const c=((i=o.name)==null?void 0:i.text)||"default",p=o.getText(s),u=ga(o);a.push({name:c,code:p,sha:sn(t,c,p),entityType:"function",isDefault:u})}else if(qe.isClassDeclaration(o)&&sr(o)){const c=((l=o.name)==null?void 0:l.text)||"default",p=o.getText(s),u=ga(o),h=p.includes("React.")||p.includes("jsx")||p.includes("tsx");a.push({name:c,code:p,sha:sn(t,c,p),entityType:h?"component":"class",isDefault:u})}else if(qe.isInterfaceDeclaration(o)&&sr(o)){const c=o.name.text,p=o.getText(s);a.push({name:c,code:p,sha:sn(t,c,p),entityType:"interface",isDefault:!1})}else if(qe.isTypeAliasDeclaration(o)&&sr(o)){const c=o.name.text,p=o.getText(s);a.push({name:c,code:p,sha:sn(t,c,p),entityType:"type",isDefault:!1})}else if(qe.isVariableStatement(o)&&sr(o)){const c=ga(o);o.declarationList.declarations.forEach(p=>{var u;if(qe.isIdentifier(p.name)){const h=p.name.text,m=o.getText(s),f=((u=p.initializer)==null?void 0:u.getText(s))||"",g=(t.endsWith(".tsx")||t.endsWith(".jsx"))&&f.includes("=>")&&(f.includes("<")||f.includes("React."));a.push({name:h,code:m,sha:sn(t,h,m),entityType:g?"component":"variable",isDefault:c})}})}else if(qe.isExportAssignment(o)){const c=o.getText(s);a.push({name:"default",code:c,sha:sn(t,"default",c),entityType:"unknown",isDefault:!0})}else if(qe.isExportDeclaration(o)&&o.exportClause&&qe.isNamedExports(o.exportClause)){const c=o.getText(s);for(const p of o.exportClause.elements){const u=p.name.text;a.push({name:u,code:c,sha:sn(t,u,c),entityType:"unknown",isDefault:!1})}}qe.forEachChild(o,r)};const s=qe.createSourceFile(t,e,qe.ScriptTarget.Latest,!0),a=[];return r(s),a}catch(r){return console.error(`Failed to extract entities from ${t}:`,r),[]}}function sr(e){if(!qe.canHaveModifiers(e))return!1;const t=qe.getModifiers(e);return t?t.some(r=>r.kind===qe.SyntaxKind.ExportKeyword):!1}function ga(e){if(!qe.canHaveModifiers(e))return!1;const t=qe.getModifiers(e);return t?t.some(r=>r.kind===qe.SyntaxKind.DefaultKeyword):!1}function sn(e,t,r){const s=Un.createHash("sha256");return s.update(`${e}:${t}:${r}`),s.digest("hex").substring(0,40)}function Yh(e){var p;const{webapp:t,port:r,environmentVariables:s,packageManager:a}=e,o=t==null?void 0:t.startCommand;if(!o)return`${a} ${a==="npm"?"run ":""}dev`;const i=((p=o.args)==null?void 0:p.map(u=>u.replace(/\$PORT/g,String(r))))??[],l=[];for(const u of s)if(u.key&&u.value!==void 0){const h=String(u.value).replace(/'/g,"'\\''");l.push(`${u.key}='${h}'`)}if(o.env)for(const[u,h]of Object.entries(o.env)){const f=String(h).replace(/\$PORT/g,String(r)).replace(/'/g,"'\\''");l.push(`${u}='${f}'`)}const c=l.length>0?l.join(" ")+" ":"";return o.command==="sh"&&i[0]==="-c"&&i[1]?`${c}sh -c "${i[1]}"`:`${c}${o.command} ${i.join(" ")}`}function Uh(e,t){if(!t||t.length===0)return;if(t.length===1)return t[0];const r=L.normalize(e),s=[...t].sort((a,o)=>{var i,l;return(((i=o.path)==null?void 0:i.length)??0)-(((l=a.path)==null?void 0:l.length)??0)});for(const a of s){const o=L.normalize(a.path??".");if(o==="."||r.startsWith(o+L.sep)||r===o)return a}return t[0]}function Wh(e){const{filePath:t,webapps:r,environmentVariables:s,port:a,packageManager:o}=e;if(!r||r.length===0)throw new Error("No webapps configured. Please run CodeYam init again.");const i=Uh(t,r);if(!i)throw new Error("Could not find webapp for file path: "+t);const l=Yh({webapp:i,port:a,environmentVariables:s,packageManager:o});return{webapp:i,webappPath:i.path??".",framework:i.framework,packageManager:i.packageManager??o,startCommand:l,url:`http://localhost:${a}/static/codeyam-sample`}}function Wn(e,t,r=[]){const s=Array.isArray(t)?t:[t];return a=>a.columns(s).doUpdateSet(o=>{const i=Object.keys(e).filter(l=>l!==t&&!r.includes(l));return Object.fromEntries(i.map(l=>[l,o.ref(`excluded.${l}`)]))})}async function Jh(e){if(e.length===0)return[];const t=Te(),r=e.map(Fh);try{return(await t.insertInto("branches").values(r).onConflict(Wn(r[0],"id",["created_at"])).returningAll().execute()).map(gn)}catch(s){return De("CodeYam Error: Database error upserting branches",s,{branchCount:e.length,branchIds:e.map(a=>a.id)}),[]}}function Hh(e){const{jsonObjectFrom:t}=bn();return t(e.selectFrom("github_users").select(["username","preferred_username as preferredUsername","avatar_url as avatarUrl"]).where("github_users.username","=",e.ref("commits.author_github_username")))}async function Vh({ids:e,analysisId:t}){const r=Te();try{let s=r.deleteFrom("scenarios");if(e){if(e.length===0)return;s=s.where("id","in",e)}else if(t)s=s.where("analysis_id","=",t);else throw De("CodeYam Error: No deletion criteria provided",null,{ids:e,analysisId:t}),new Error("No deletion criteria provided for scenarios");await s.execute()}catch(s){throw De("CodeYam Error: Database error deleting scenarios",s,{ids:e,analysisId:t}),s}}function Gh(...e){try{const t=Un.createHash("sha256");for(const r of e)t.update(r);return t.digest("hex")}catch(t){throw console.log("CodeYam Error: Error generating sha",e),t}}function ya(e,t){return t.map(r=>Kh(e,r))}function Kh(e,t){return dt` ${dt.ref(e)}.${dt.ref(t)}`.as(t)}function qh(e,t,r){return t.map(s=>Qh(e,s,r))}function Qh(e,t,r){return dt` ${dt.ref(e)}.${dt.ref(t)}`.as(`_cy_${r}:${t}`)}function Zh(e,...t){const r={};for(const[s,a]of Object.entries(e)){const o=s.match(/^_cy_(.+?):(.+)$/);if(o){const[,i,l]=o;if(t.includes(i)){r[i]||(r[i]={}),r[i][l]=a;continue}console.warn(`CodeYam Warning: Unrecognized prefix in key '${s}'`);continue}r[s]=a}return r}const Xh=50;function em(e,t){return e.length<=t?[e]:Array.from({length:Math.ceil(e.length/t)},(r,s)=>e.slice(s*t,s*t+t))}function Ci({projectId:e,ids:t,fileIds:r,entityName:s,entityShas:a,commitIds:o,branchCommitSha:i,limit:l,excludeMetadata:c}){const p=Te(),{jsonObjectFrom:u,jsonArrayFrom:h}=bn();let m=c?p.selectFrom("analyses").select(["analyses.id","analyses.project_id","analyses.file_id","analyses.commit_id","analyses.entity_sha","analyses.entity_name","analyses.entity_type","analyses.file_path","analyses.status","analyses.created_at","analyses.updated_at","analyses.tree_sha","analyses.analyzed_tree_sha","analyses.dependency_analyzed_tree_sha","analyses.previous_analysis_id","analyses.branch_commit_sha","analyses.indirect","analyses.committed_at","analyses.completed_at"]):p.selectFrom("analyses").selectAll("analyses");if(e&&(m=m.where("project_id","=",e)),t){if(t.length===0)return null;m=m.where("id","in",t)}if(r){if(r.length===0)return null;m=m.where("file_id","in",r)}if(o){if(o.length===0)return null;m=m.where("commit_id","in",o)}return s&&(m=m.where("entity_name","=",s)),a&&(m=m.where("entity_sha","in",a)),i&&(m=m.where("branch_commit_sha","=",i)),l&&(m=m.limit(l)),c?p.with("filtered_analyses",()=>m).selectFrom("filtered_analyses").selectAll("filtered_analyses").select(f=>[h(f.selectFrom("scenarios").select(ya("scenarios",hs)).whereRef("scenarios.analysis_id","=","filtered_analyses.id")).as("scenarios"),h(f.selectFrom("analysis_branches").select(["id","branch_id"]).whereRef("analysis_branches.analysis_id","=","filtered_analyses.id")).as("analysis_branches")]):p.with("filtered_analyses",()=>m).selectFrom("filtered_analyses").selectAll("filtered_analyses").select(f=>[u(f.selectFrom("entities").select(ya("entities",ec)).whereRef("entities.sha","=","filtered_analyses.entity_sha").limit(1)).as("entity"),h(f.selectFrom("scenarios").select(ya("scenarios",hs)).whereRef("scenarios.analysis_id","=","filtered_analyses.id")).as("scenarios"),h(f.selectFrom("analysis_branches").select(["id","branch_id"]).whereRef("analysis_branches.analysis_id","=","filtered_analyses.id")).as("analysis_branches")])}async function Xt(e){const{ids:t,fileIds:r,entityShas:s,commitIds:a}=e;try{const i=Object.entries({id:{arr:t,key:"ids"},file_id:{arr:r,key:"fileIds"},entity_sha:{arr:s,key:"entityShas"},commit_id:{arr:a,key:"commitIds"}}).find(([c,{arr:p}])=>(p==null?void 0:p.length)>0);let l=[];if(i){const[c,{arr:p,key:u}]=i,h=em(p,Xh),m=[];for(let f=0;f<h.length;f++){const g=h[f],x=await Ci({...e,[u]:g}).execute();x&&m.push(...x)}l=m}else{const p=await Ci(e).execute();if(!p||p.length===0)return De("CodeYam: No analyses found",null,e),null;l=p}return l.length===0?null:l.map(Wt)}catch(o){return De("CodeYam Error: Database error in loadAnalyses",o,e),null}}function tm(e,t){const{jsonArrayFrom:r,jsonObjectFrom:s}=bn();let a=e.selectFrom("analysis_branches").select(eh).select(o=>s(o.selectFrom("branches").select(Zl).whereRef("id","=","analysis_branches.branch_id")).as("branch"));return t&&(a=t(a)),r(a)}async function Jt({id:e,analysisBranchId:t,projectId:r,fileId:s,commitId:a,entityName:o,dependencyAnalyzedTreeSha:i,analyzedTreeSha:l,includeFile:c,includeProject:p,includeCommitAndBranch:u,includeScenarios:h,includeBranches:m}){const f=Te(),g=Date.now();try{let y=f.selectFrom("analyses").selectAll("analyses");e&&(y=y.where("id","=",e)),r&&(y=y.where("project_id","=",r)),i?y=y.where("dependency_analyzed_tree_sha","=",i):l?y=y.where("analyzed_tree_sha","=",l):s&&(y=y.where("file_id","=",s)),o&&(y=y.where("entity_name","=",o)),a?y=y.where("commit_id","=",a):y=y.orderBy("created_at","desc").limit(1),t&&(y=y.innerJoin("analysis_branches","analyses.id","analysis_branches.analysis_id").where("analysis_branches.id","=",t));const{jsonObjectFrom:x,jsonArrayFrom:w}=bn();y=y.select(N=>{const k=[];return k.push(x(N.selectFrom("entities").select(ec).whereRef("entities.sha","=","analyses.entity_sha")).as("entity")),c&&k.push(x(N.selectFrom("files").select(xh).whereRef("files.id","=","analyses.file_id")).as("file")),p&&k.push(x(N.selectFrom("projects").select(qp).whereRef("projects.id","=","analyses.project_id")).as("project")),h&&k.push(w(N.selectFrom("scenarios").select(hs).whereRef("scenarios.analysis_id","=","analyses.id")).as("scenarios")),m&&k.push(tm(N,E=>E.whereRef("analysis_branches.analysis_id","=","analyses.id")).as("analysis_branches")),u&&k.push(x(N.selectFrom("commits").select(Xl).select(E=>Hh(E).as("author")).whereRef("commits.id","=","analyses.commit_id")).as("commit")),k});const b=await y.executeTakeFirst(),v=Date.now()-g;if(!b)return De("CodeYam Error: Analysis not found",null,{id:e,analysisBranchId:t,projectId:r,fileId:s,commitId:a,entityName:o,dependencyAnalyzedTreeSha:i,analyzedTreeSha:l,includeFile:c,includeProject:p,includeCommitAndBranch:u,includeScenarios:h,includeBranches:m}),null;if(v>100&&u){const N=b.commit,k=N!=null&&N.files?JSON.stringify(N.files).length:0;console.log(`CodeYam DEBUG: [CommitFilesTiming] loadAnalysis took ${v}ms (files: ${Math.round(k/1024)}KB)`,{id:b.id,entityName:b.entity_name})}return Wt(b)}catch(y){return De("CodeYam Error: Database error loading analysis",y,{id:e,analysisBranchId:t,projectId:r,fileId:s,commitId:a,entityName:o,dependencyAnalyzedTreeSha:i,analyzedTreeSha:l,includeFile:c,includeProject:p,includeCommitAndBranch:u,includeScenarios:h,includeBranches:m}),null}}async function vo({projectId:e,ids:t,names:r,includeInactive:s}){const a=Te();try{let o=a.selectFrom("branches").selectAll("branches").where("project_id","=",e);if(t){if(t.length===0)return[];o=o.where("id","in",t)}if(r){if(r.length===0)return[];o=o.where("name","in",r)}return s||(o=o.where("active_at","is not",null)),(await o.execute()).map(gn)}catch(o){return De("CodeYam Error: Database error loading branches",o,{projectId:e,ids:t,names:r,includeInactive:s}),[]}}async function nm({projectId:e,commitId:t,branchId:r,active:s,includeBranches:a}){const o=Te();try{let i=o.selectFrom("commit_branches").selectAll("commit_branches").innerJoin("branches","commit_branches.branch_id","branches.id").$if(a,p=>p.select(qh("branches",Zl,"branch"))).where("branches.project_id","=",e);t&&(i=i.where("commit_branches.commit_id","=",t)),r&&(i=i.where("commit_branches.branch_id","=",r)),s!==void 0&&(i=i.where("commit_branches.active","=",s));const l=await i.execute();return!l||l.length===0?null:l.map(p=>Zh(p,"branch")).map(wo)}catch(i){return De("CodeYam Error: Error loading commit branches",i,{projectId:e,commitId:t,branchId:r,active:s,includeBranches:a}),null}}async function rm(e){if(e.length===0)return new Map;const t=Te();try{const r=await t.selectFrom("commits").select(["id","branch_id","merged_branch_id"]).where("id","in",e).execute(),s=new Set;if(r.forEach(o=>{o.branch_id&&s.add(o.branch_id),o.merged_branch_id&&s.add(o.merged_branch_id)}),s.size===0)return new Map;const a=await t.selectFrom("branches").selectAll().where("id","in",Array.from(s)).execute();return new Map(a.map(o=>[o.id,o]))}catch(r){return De("CodeYam Error: Loading branches for commits",r,{commitIds:e}),new Map}}async function sm(e){if(e.length===0)return new Map;const t=Te(),{jsonObjectFrom:r,jsonArrayFrom:s}=bn();try{const a=await t.selectFrom("analyses").selectAll("analyses").select(i=>[r(i.selectFrom("files").select(["id","name","path"]).whereRef("files.id","=","analyses.file_id")).as("file"),s(i.selectFrom("scenarios").select(hs).whereRef("scenarios.analysis_id","=","analyses.id")).as("scenarios")]).where("commit_id","in",e).execute(),o=new Map;return a.forEach(i=>{const l=o.get(i.commit_id)||[];l.push(i),o.set(i.commit_id,l)}),o}catch(a){return De("CodeYam Error: Loading analyses for commits",a,{commitIds:e}),new Map}}async function am(e){if(e.length===0)return new Map;const t=Te();try{const r=await t.selectFrom("entities").selectAll().where("commit_id","in",e).execute(),s=new Map;return r.forEach(a=>{const o=s.get(a.commit_id)||[];o.push(a),s.set(a.commit_id,o)}),s}catch(r){return De("CodeYam Error: Loading entities for commits",r,{commitIds:e}),new Map}}async function fs({projectId:e,branchId:t,ids:r,shas:s,fileNames:a,limit:o=10,skipRelations:i=!1}){if(!e&&!r)throw new Error("Must provide projectId or ids");const l=Te(),{jsonObjectFrom:c}=bn(),p=Date.now();try{let u;if(i){const b=ih.map(v=>`commits.${v}`);u=l.selectFrom("commits").select(b)}else u=l.selectFrom("commits").selectAll("commits").select(b=>[c(b.selectFrom("github_users").select(["username","preferred_username as preferredUsername","avatar_url as avatarUrl"]).where("github_users.username","=",b.ref("commits.author_github_username"))).as("author")]);if(e&&(u=u.where("project_id","=",e)),r){if(r.length===0)return[];u=u.where("id","in",r)}if(s){if(s.length===0)return[];u=u.where("sha","in",s)}if(a&&a.length>0){const b=dt.join(a.map(v=>dt`${v}`),dt`, `);u=u.where(dt`
|
|
24
|
+
EXISTS (
|
|
25
|
+
SELECT 1
|
|
26
|
+
FROM json_each(${dt.ref("commits.files")}) AS f
|
|
27
|
+
WHERE json_extract(f.value, '$.fileName') IN (${b})
|
|
28
|
+
)
|
|
29
|
+
`)}t&&(u=u.where("branch_id","=",t));const h=await u.orderBy("committed_at","desc").limit(o).execute(),m=Date.now()-p;if(!h||h.length===0)return[];if(m>100){const b=h.reduce((v,N)=>v+(N.files?JSON.stringify(N.files).length:0),0);console.log(`CodeYam DEBUG: [CommitFilesTiming] loadCommits took ${m}ms (${h.length} commits, totalFiles: ${Math.round(b/1024)}KB)`)}if(i)return h.map(v=>({...v,branch:void 0,mergedBranch:void 0,analyses:[],entities:[]})).map(fn);const f=h.map(b=>b.id),[g,y,x]=await Promise.all([rm(f),sm(f),am(f)]);return h.map(b=>{const v=b.branch_id?g.get(b.branch_id):void 0,N=b.merged_branch_id?g.get(b.merged_branch_id):void 0,k=y.get(b.id)||[],E=x.get(b.id)||[];return{...b,branch:v,mergedBranch:N,analyses:k,entities:E}}).map(fn)}catch(u){return De("CodeYam Error: Database error loading commits",u,{projectId:e,branchId:t,ids:r,shas:s,limit:o}),[]}}async function Xe({projectId:e,branchId:t,fileIds:r,filePaths:s,names:a,shas:o,excludeMetadata:i}){if(r&&r.length==0||s&&s.length==0||a&&a.length==0||o&&o.length==0)return[];if(o&&o.length>50){const c=[];for(let p=0;p<o.length;p+=50){const u=o.slice(p,p+50),h=await Xe({projectId:e,branchId:t,fileIds:r,filePaths:s,names:a,shas:u,excludeMetadata:i});h&&c.push(...h)}return c}const l=Te();try{const u=await(i?l.selectFrom("entities").select(["entities.project_id","entities.file_id","entities.commit_id","entities.name","entities.sha","entities.entity_type","entities.file_path","entities.description","entities.documentation","entities.quality","entities.created_at","entities.updated_at"]):l.selectFrom("entities").selectAll("entities")).$if(!!t,h=>h.innerJoin("entity_branches","entity_branches.entity_sha","entities.sha").where("entity_branches.branch_id","=",t)).$if(!!e,h=>h.where("entities.project_id","=",e)).$if(!!o,h=>h.where("entities.sha","in",o)).$if(!!s,h=>h.where("entities.file_path","in",s)).$if(!!a,h=>h.where("entities.name","in",a)).$if(!!r,h=>h.where("entities.file_id","in",r)).execute();return!u||u.length===0?null:u.map(kr)}catch(c){return console.log("Load Entities: Error occurred",c,{projectId:e,fileIds:r,filePaths:s,shas:o}),null}}function om(e,t){const{jsonArrayFrom:r}=bn();let s=e.selectFrom("entity_branches").select(mh);return t&&(s=t(s)),r(s)}async function rc({projectId:e,sha:t}){const r=Te();try{const s=await r.selectFrom("entities").innerJoin("files","entities.file_id","files.id").selectAll("entities").select(a=>om(a,o=>o.whereRef("entity_branches.entity_sha","=","entities.sha")).as("entity_branches")).where("files.project_id","=",e).where("entities.sha","=",t).executeTakeFirst();return s?kr(s):(process.env.CODEYAM_E2E_BASELINE_MODE!=="true"&&De("CodeYam Error: Load Entity: Entity not found",null,{projectId:e,sha:t}),null)}catch(s){return De("CodeYam Error: Load Entity: Database error",s,{projectId:e,sha:t}),null}}const xa=1e3;async function sc({projectId:e,filePaths:t,fileIds:r,fileNames:s}){if(t&&t.length>50){const l=[];for(let c=0;c<t.length;c+=50){const p=t.slice(c,c+50),u=await sc({projectId:e,filePaths:p,fileIds:r,fileNames:s});u&&l.push(...u)}return l}const a=Te(),o=[];let i=0;try{for(;;){let l=a.selectFrom("files").selectAll().where("project_id","=",e).limit(xa).offset(i);if(t){if(t.length===0)return[];l=l.where("path","in",t)}if(r){if(r.length===0)return[];l=l.where("id","in",r)}if(s){if(s.length===0)return[];l=l.where("name","in",s)}const c=await l.execute();if(!c||c.length===0||(o.push(...c),c.length<xa))break;i+=xa}return o==null?void 0:o.map(bo)}catch(l){return console.log("CodeYam Error: Error loading project files in loadFiles",l),null}}async function No({id:e,slug:t,withBranches:r,withFiles:s,silent:a}){try{let i=Te().selectFrom("projects").selectAll();if(e)i=i.where("id","=",e);else if(t)i=i.where("slug","=",t);else throw new Error("Either id or slug must be provided");const l=await i.executeTakeFirst();if(!l)return null;const c=js(l);return s&&(c.files=await sc({projectId:c.id})),r&&(c.branches=await vo({projectId:c.id,includeInactive:!1})),c}catch{return null}}function gs(e,t){const r={...e};for(const s in t){const a=t[s],o=e[s];a!=null&&typeof a=="object"&&!Array.isArray(a)&&o!==void 0&&o!==null&&typeof o=="object"&&!Array.isArray(o)?r[s]=gs(o,a):a!==void 0&&(r[s]=a)}return r}async function qt({commitId:e,commitSha:t,metadataUpdate:r,runStatusUpdate:s,archiveCurrentRun:a,updateCallback:o}){for(let c=0;c<=4;c++)try{return await Te().transaction().execute(async p=>{const u=await p.selectFrom("commits").select(["id","metadata"]).$if(!!e,f=>f.where("id","=",e)).$if(!!t,f=>f.where("sha","=",t)).executeTakeFirst();if(!u)return De(`CodeYam Error: updateCommitMetadata(): Commit ${e} not found`),null;const h=u.metadata||{};if(s)s.lastUpdatedAt??(s.lastUpdatedAt=new Date().toISOString()),r=gs(r??{},{currentRun:s});else if(!r&&!o)return h;const m=r?gs(h,r):h;if(a&&m.currentRun){const f={...m.currentRun,archivedAt:new Date().toISOString()};m.historicalRuns=[...m.historicalRuns||[],f]}o&&await o(m);try{return await p.updateTable("commits").set({metadata:JSON.stringify(m)}).where("id","=",u.id).returning(["id"]).executeTakeFirst()?m:(De(`CodeYam Error: updateCommitMetadata(): Failed to update commit ${e}`),h)}catch(f){return De(`CodeYam Error: updateCommitMetadata(): Failed to update commit ${e}`,f),h}})}catch(p){const u=p instanceof Error&&p.message.includes("database is locked");if(u&&c<4){const h=250*Math.pow(2,c);await new Promise(m=>setTimeout(m,h));continue}return De(`CodeYam Error: updateCommitMetadata(): Transaction failed for commit ${e}${u?` after ${c+1} attempts`:""}`,p),null}return null}async function ac(e,t,r="analysis"){try{return await Te().transaction().execute(async s=>{const a=await s.selectFrom("analyses").selectAll().where("id","=",e).executeTakeFirst();if(!a)return De(`CodeYam Error: updateFreshAnalysisMetadata(): Analysis ${e} not found (source: ${r})`,null,{analysisId:e,source:r}),null;const o=Wt(a);return t(o.metadata,o),await s.updateTable("analyses").set({metadata:JSON.stringify(o.metadata)}).where("id","=",e).returningAll().executeTakeFirst()?o.metadata:(De(`CodeYam Error: updateFreshAnalysisMetadata(): Failed to update analysis ${e} (source: ${r})`,null,{analysisId:e,source:r}),null)})}catch(s){return De(`CodeYam Error: updateFreshAnalysisMetadata(): Transaction failed for analysis ${e} (source: ${r})`,s,{analysisId:e,source:r}),null}}async function Jn(e,t,r="capture"){for(let o=0;o<=4;o++)try{return await Te().transaction().execute(async i=>{const l=await i.selectFrom("analyses").selectAll().where("id","=",e).executeTakeFirst();if(!l)return De(`CodeYam Error: updateFreshAnalysisStatus(): Analysis ${e} not found (source: ${r})`,null,{analysisId:e,source:r}),null;const c=Wt(l);return t(c.status,c),await i.updateTable("analyses").set({status:JSON.stringify(c.status)}).where("id","=",e).returningAll().executeTakeFirst()?c.status:(De(`CodeYam Error: updateFreshAnalysisStatus(): Failed to update analysis ${e} (source: ${r})`,null,{analysisId:e,source:r}),null)})}catch(i){const l=i instanceof Error&&i.message.includes("database is locked");if(l&&o<4){const c=250*Math.pow(2,o);await new Promise(p=>setTimeout(p,c));continue}return De(`CodeYam Error: updateFreshAnalysisStatus(): Transaction failed for analysis ${e} (source: ${r})${l?` after ${o+1} attempts`:""}`,i,{analysisId:e,source:r}),null}return null}async function Ln({projectId:e,projectSlug:t,metadataUpdate:r,updateCallback:s}){if(!e&&!t)throw new Error("Either projectId or projectSlug must be provided");try{return await Te().transaction().execute(async a=>{const o=await a.selectFrom("projects").selectAll().$if(!!e,c=>c.where("id","=",e)).$if(!!t,c=>c.where("slug","=",t)).executeTakeFirst();if(!o)return De(`CodeYam Error: updateProjectMetadata(): Project ${e} not found`),null;const i=o.metadata||{};if(!r&&!s)return i;const l=r?gs(i,r):i;s&&await s(l,js(o));try{return await a.updateTable("projects").set({metadata:JSON.stringify(l)}).where("id","=",o.id).returningAll().executeTakeFirst()?l:(De(`CodeYam Error: updateProjectMetadata(): Failed to update project ${e}`),null)}catch(c){return De(`CodeYam Error: updateProjectMetadata(): Failed to update project ${e}`,c),null}})}catch(a){return De(`CodeYam Error: updateProjectMetadata(): Transaction failed for project ${e}`,a),null}}const im=()=>crypto.randomUUID();function lm(e){const{id:t,projectId:r,analysisId:s,previousVersionId:a,analysis:o,metadata:i,data:l,...c}=e;return delete c.userScenarios,delete c.comments,"created_at"in c&&delete c.created_at,{...c,id:t??im(),metadata:i?JSON.stringify(i):null,project_id:r,analysis_id:s,previous_version_id:a}}async function cm(e){if(e.length===0)return[];const t=Te(),r=e.map(lm);try{return(await t.insertInto("scenarios").values(r).onConflict(Wn(r[0],"id",["created_at"])).returningAll().execute()).map(Ql)}catch(s){return De("CodeYam Error: Database error upserting scenarios",s,{scenarioCount:e.length}),null}}const dm=()=>crypto.randomUUID();function um(e){const{id:t,commitId:r,branchId:s,...a}=e;return delete a.commit,delete a.branch,{...a,id:t??dm(),commit_id:r,branch_id:s}}async function Si(e){if(e.length===0)return[];const t=Te(),r=e.map(um);try{return(await t.insertInto("commit_branches").values(r).onConflict(Wn(r[0],"id",["created_at"])).returningAll().execute()).map(wo)}catch(s){return De("CodeYam Error: Database error upserting commit branches",s,{commitBranchCount:e.length,commitBranchIds:e.map(a=>a.id)}),[]}}async function pm(e,t){const r=Te(),s={username:e,avatar_url:t};try{return await r.insertInto("github_users").values(s).onConflict(Wn(s,"username",[])).returningAll().executeTakeFirst()||null}catch(a){return De("CodeYam Error: Error upserting github user",a,{username:e,avatarUrl:t}),null}}const hm=()=>crypto.randomUUID();function mm(e,t){const{id:r,projectId:s,branchId:a,mergedBranchId:o,aiMessage:i,htmlUrl:l,analyzedAt:c,committedAt:p,author:u,metadata:h,files:m,...f}=e;return delete f.branch,delete f.mergedBranch,delete f.backgroundJob,delete f.analyses,delete f.parents,delete f.entities,delete f.commitBranches,{...f,id:r??hm(),project_id:s??String(t),metadata:h?JSON.stringify(h):void 0,files:m?JSON.stringify(m):void 0,branch_id:a,merged_branch_id:o,author_github_username:u==null?void 0:u.username,html_url:l,ai_message:i,analyzed_at:c,committed_at:p}}async function fm({projectId:e,commits:t}){const r=Te();try{const s=t.reduce((i,l)=>{const{author:c}=l;return c!=null&&c.username&&(c!=null&&c.avatarUrl)&&(i[c.username]=c.avatarUrl),i},{});for(const i in s)await pm(i,s[i]);const a=t.map(i=>mm(i,e));return(await r.insertInto("commits").values(a).onConflict(Wn(a[0],"id",["created_at"])).returningAll().execute()).map(fn)}catch(s){return De("CodeYam Error: Error saving commits",s,{projectId:e,commitCount:t.length,commitIds:t.map(a=>a.id).filter(Boolean)}),[]}}const gm=()=>crypto.randomUUID();function ym(e){const{id:t,files:r,branches:s,team:a,analyzedAt:o,contentChangedAt:i,createdAt:l,updatedAt:c,metadata:p,...u}=e;return{...u,id:t??gm(),analyzed_at:o||null,content_changed_at:i||null,created_at:l||new Date().toISOString(),updated_at:c||null,metadata:p?JSON.stringify(p):null,github_token:null,configuration:null,team_id:null}}async function xm(e){try{if(e.length===0)return null;const t=Te(),r=e.map(o=>ym(o)),s=await t.insertInto("projects").values(r).onConflict(Wn(r[0],"id",["created_at"])).returningAll().execute(),a=s==null?void 0:s[0];return a?js(a):null}catch(t){return console.log("Error saving project",t),null}}const ys=L.join(co.homedir(),".codeyam","secrets.json"),xs=L.join(process.cwd(),".codeyam","secrets.json");async function tn(){let e={};try{if(K.existsSync(xs)){const o=await Pe.readFile(xs,"utf8");e=JSON.parse(o)}}catch{console.warn(ps.yellow("⚠ Could not read project secrets file, trying home directory"))}if(!e.OPENAI_API_KEY&&!e.ANTHROPIC_API_KEY)try{if(K.existsSync(ys)){const o=await Pe.readFile(ys,"utf8");e={...JSON.parse(o),...e}}}catch{console.warn(ps.yellow("⚠ Could not read home secrets file, falling back to environment variables"))}const t={},r=e.OPENAI_API_KEY||process.env.OPENAI_API_KEY;r&&(t.OPENAI_API_KEY=r);const s=e.ANTHROPIC_API_KEY||process.env.ANTHROPIC_API_KEY;s&&(t.ANTHROPIC_API_KEY=s);const a=e.GROQ_API_KEY||process.env.GROQ_API_KEY;return a&&(t.GROQ_API_KEY=a),t}async function bm(e,t=!0){const r=t?ys:xs,s=L.dirname(r);await Pe.mkdir(s,{recursive:!0}),await Pe.writeFile(r,JSON.stringify(e,null,2)),await Pe.chmod(r,384)}function wm(e=!0){return e?ys:xs}async function _i(){const e=await tn(),t=[];for(const r of t)e[r];return{isValid:!0,missing:[],secrets:e}}async function vm(e){console.log(),console.log(ps.blue("ℹ Configuration needed")),console.log();const t={};for(const r of e)switch(r){case"OPENAI_API_KEY":const s=await dp({type:"password",name:"key",message:"OpenAI API Key",validate:a=>a&&!a.startsWith("sk-")?"OpenAI API key should start with sk-":!0});s.key&&(t.OPENAI_API_KEY=s.key);break}return t}async function Nm(e=!0){const t=await _i();if(t.isValid)return t.secrets;const r=await vm(t.missing),a={...await tn(),...r};await bm(a,e);const o=wm(e);return console.log(ps.green(`✓ Configuration saved to ${o}`)),(await _i()).secrets}function Cm(e){const t=L.resolve(e),r=L.parse(t).root;return t===r||t===L.resolve(co.homedir())}function oc(e=process.cwd()){let t=L.resolve(e);const r=L.parse(t).root;for(;t!==r;){if(Cm(t))return null;const s=L.join(t,".codeyam","config.json");if(K.existsSync(s))return t;t=L.dirname(t)}return null}let ic=oc();function we(){return ic}function Sm(e){ic=e}function lc(e){const t={...e};for(const r in e)if(r.includes(".")){const s=r.replace(/\./g,"");t[s]=e[r]}return t}const _m={"Accordion.Item":e=>`<CYAccordion.Root type="single" collapsible>${e}</CYAccordion.Root>`,"Accordion.Header":e=>`<CYAccordion.Root type="single" collapsible><CYAccordion.Item value="item-1">${e}</CYAccordion.Item></CYAccordion.Root>`,"Accordion.Trigger":e=>`<CYAccordion.Root type="single" collapsible><CYAccordion.Item value="item-1"><CYAccordion.Header>${e}</CYAccordion.Header></CYAccordion.Item></CYAccordion.Root>`,"Accordion.Content":e=>`<CYAccordion.Root type="single" collapsible><CYAccordion.Item value="item-1">${e}</CYAccordion.Item></CYAccordion.Root>`,"AlertDialog.Trigger":e=>`<CYAlertDialog.Root>${e}</CYAlertDialog.Root>`,"AlertDialog.Portal":e=>`<CYAlertDialog.Root>${e}</CYAlertDialog.Root>`,"AlertDialog.Overlay":e=>`<CYAlertDialog.Root><CYAlertDialog.Portal>${e}</CYAlertDialog.Portal></CYAlertDialog.Root>`,"AlertDialog.Content":e=>`<CYAlertDialog.Root><CYAlertDialog.Portal>${e}</CYAlertDialog.Portal></CYAlertDialog.Root>`,"AlertDialog.Title":e=>`<CYAlertDialog.Root><CYAlertDialog.Portal><CYAlertDialog.Content>${e}</CYAlertDialog.Content></CYAlertDialog.Portal></CYAlertDialog.Root>`,"AlertDialog.Description":e=>`<CYAlertDialog.Root><CYAlertDialog.Portal><CYAlertDialog.Content>${e}</CYAlertDialog.Content></CYAlertDialog.Portal></CYAlertDialog.Root>`,"AlertDialog.Action":e=>`<CYAlertDialog.Root><CYAlertDialog.Portal><CYAlertDialog.Content>${e}</CYAlertDialog.Content></CYAlertDialog.Portal></CYAlertDialog.Root>`,"AlertDialog.Cancel":e=>`<CYAlertDialog.Root><CYAlertDialog.Portal><CYAlertDialog.Content>${e}</CYAlertDialog.Content></CYAlertDialog.Portal></CYAlertDialog.Root>`,"Avatar.Image":e=>`<CYAvatar.Root>${e}</CYAvatar.Root>`,"Avatar.Fallback":e=>`<CYAvatar.Root>${e}</CYAvatar.Root>`,"Checkbox.Indicator":e=>`<CYCheckbox.Root>${e}</CYCheckbox.Root>`,"Collapsible.Trigger":e=>`<CYCollapsible.Root>${e}</CYCollapsible.Root>`,"Collapsible.Content":e=>`<CYCollapsible.Root>${e}</CYCollapsible.Root>`,"ContextMenu.Trigger":e=>`<CYContextMenu.Root>${e}</CYContextMenu.Root>`,"ContextMenu.Portal":e=>`<CYContextMenu.Root>${e}</CYContextMenu.Root>`,"ContextMenu.Content":e=>`<CYContextMenu.Root><CYContextMenu.Portal>${e}</CYContextMenu.Portal></CYContextMenu.Root>`,"ContextMenu.Item":e=>`<CYContextMenu.Root><CYContextMenu.Content>${e}</CYContextMenu.Content></CYContextMenu.Root>`,"ContextMenu.CheckboxItem":e=>`<CYContextMenu.Root><CYContextMenu.Content>${e}</CYContextMenu.Content></CYContextMenu.Root>`,"ContextMenu.RadioGroup":e=>`<CYContextMenu.Root><CYContextMenu.Content>${e}</CYContextMenu.Content></CYContextMenu.Root>`,"ContextMenu.RadioItem":e=>`<CYContextMenu.Root><CYContextMenu.Content><CYContextMenu.RadioGroup value="item-1">${e}</CYContextMenu.RadioGroup></CYContextMenu.Content></CYContextMenu.Root>`,"ContextMenu.ItemIndicator":e=>`<CYContextMenu.Root><CYContextMenu.Content><CYContextMenu.CheckboxItem checked>${e}</CYContextMenu.CheckboxItem></CYContextMenu.Content></CYContextMenu.Root>`,"ContextMenu.Label":e=>`<CYContextMenu.Root><CYContextMenu.Content>${e}</CYContextMenu.Content></CYContextMenu.Root>`,"ContextMenu.Separator":e=>`<CYContextMenu.Root><CYContextMenu.Content>${e}</CYContextMenu.Content></CYContextMenu.Root>`,"ContextMenu.Sub":e=>`<CYContextMenu.Root><CYContextMenu.Content>${e}</CYContextMenu.Content></CYContextMenu.Root>`,"ContextMenu.SubTrigger":e=>`<CYContextMenu.Root><CYContextMenu.Content><CYContextMenu.Sub>${e}</CYContextMenu.Sub></CYContextMenu.Content></CYContextMenu.Root>`,"ContextMenu.SubContent":e=>`<CYContextMenu.Root><CYContextMenu.Content><CYContextMenu.Sub>${e}</CYContextMenu.Sub></CYContextMenu.Content></CYContextMenu.Root>`,"Dialog.Trigger":e=>`<CYDialog.Root>${e}</CYDialog.Root>`,"Dialog.Portal":e=>`<CYDialog.Root>${e}</CYDialog.Root>`,"Dialog.Overlay":e=>`<CYDialog.Root><CYDialog.Portal>${e}</CYDialog.Portal></CYDialog.Root>`,"Dialog.Content":e=>`<CYDialog.Root><CYDialog.Portal>${e}</CYDialog.Portal></CYDialog.Root>`,"Dialog.Title":e=>`<CYDialog.Root><CYDialog.Portal><CYDialog.Content>${e}</CYDialog.Content></CYDialog.Portal></CYDialog.Root>`,"Dialog.Description":e=>`<CYDialog.Root><CYDialog.Portal><CYDialog.Content>${e}</CYDialog.Content></CYDialog.Portal></CYDialog.Root>`,"Dialog.Close":e=>`<CYDialog.Root><CYDialog.Portal><CYDialog.Content>${e}</CYDialog.Content></CYDialog.Portal></CYDialog.Root>`,"DropdownMenu.Trigger":e=>`<CYDropdownMenu.Root>${e}</CYDropdownMenu.Root>`,"DropdownMenu.Portal":e=>`<CYDropdownMenu.Root>${e}</CYDropdownMenu.Root>`,"DropdownMenu.Content":e=>`<CYDropdownMenu.Root><CYDropdownMenu.Portal>${e}</CYDropdownMenu.Portal></CYDropdownMenu.Root>`,"DropdownMenu.Item":e=>`<CYDropdownMenu.Root><CYDropdownMenu.Content>${e}</CYDropdownMenu.Content></CYDropdownMenu.Root>`,"DropdownMenu.CheckboxItem":e=>`<CYDropdownMenu.Root><CYDropdownMenu.Content>${e}</CYDropdownMenu.Content></CYDropdownMenu.Root>`,"DropdownMenu.RadioGroup":e=>`<CYDropdownMenu.Root><CYDropdownMenu.Content>${e}</CYDropdownMenu.Content></CYDropdownMenu.Root>`,"DropdownMenu.RadioItem":e=>`<CYDropdownMenu.Root><CYDropdownMenu.Content><CYDropdownMenu.RadioGroup value="item-1">${e}</CYDropdownMenu.RadioGroup></CYDropdownMenu.Content></CYDropdownMenu.Root>`,"DropdownMenu.ItemIndicator":e=>`<CYDropdownMenu.Root><CYDropdownMenu.Content><CYDropdownMenu.CheckboxItem checked>${e}</CYDropdownMenu.CheckboxItem></CYDropdownMenu.Content></CYDropdownMenu.Root>`,"DropdownMenu.Label":e=>`<CYDropdownMenu.Root><CYDropdownMenu.Content>${e}</CYDropdownMenu.Content></CYDropdownMenu.Root>`,"DropdownMenu.Separator":e=>`<CYDropdownMenu.Root><CYDropdownMenu.Content>${e}</CYDropdownMenu.Content></CYDropdownMenu.Root>`,"DropdownMenu.Sub":e=>`<CYDropdownMenu.Root><CYDropdownMenu.Content>${e}</CYDropdownMenu.Content></CYDropdownMenu.Root>`,"DropdownMenu.SubTrigger":e=>`<CYDropdownMenu.Root><CYDropdownMenu.Content><CYDropdownMenu.Sub>${e}</CYDropdownMenu.Sub></CYDropdownMenu.Content></CYDropdownMenu.Root>`,"DropdownMenu.SubContent":e=>`<CYDropdownMenu.Root><CYDropdownMenu.Content><CYDropdownMenu.Sub>${e}</CYDropdownMenu.Sub></CYDropdownMenu.Content></CYDropdownMenu.Root>`,"Form.Field":e=>`<CYForm.Root>${e}</CYForm.Root>`,"Form.Label":e=>`<CYForm.Root><CYForm.Field name="test-field">${e}</CYForm.Field></CYForm.Root>`,"Form.Control":e=>`<CYForm.Root><CYForm.Field name="test-field">${e}</CYForm.Field></CYForm.Root>`,"Form.Message":e=>`<CYForm.Root><CYForm.Field name="test-field">${e}</CYForm.Field></CYForm.Root>`,"Form.ValidityState":e=>`<CYForm.Root><CYForm.Field name="test-field">${e}</CYForm.Field></CYForm.Root>`,"Form.Submit":e=>`<CYForm.Root>${e}</CYForm.Root>`,"HoverCard.Trigger":e=>`<CYHoverCard.Root>${e}</CYHoverCard.Root>`,"HoverCard.Portal":e=>`<CYHoverCard.Root>${e}</CYHoverCard.Root>`,"HoverCard.Content":e=>`<CYHoverCard.Root><CYHoverCard.Portal>${e}</CYHoverCard.Portal></CYHoverCard.Root>`,"Menubar.Menu":e=>`<CYMenubar.Root>${e}</CYMenubar.Root>`,"Menubar.Trigger":e=>`<CYMenubar.Root><CYMenubar.Menu>${e}</CYMenubar.Menu></CYMenubar.Root>`,"Menubar.Portal":e=>`<CYMenubar.Root><CYMenubar.Menu>${e}</CYMenubar.Menu></CYMenubar.Root>`,"Menubar.Content":e=>`<CYMenubar.Root><CYMenubar.Menu>${e}</CYMenubar.Menu></CYMenubar.Root>`,"Menubar.Item":e=>`<CYMenubar.Root><CYMenubar.Menu><CYMenubar.Content>${e}</CYMenubar.Content></CYMenubar.Menu></CYMenubar.Root>`,"NavigationMenu.List":e=>`<CYNavigationMenu.Root>${e}</CYNavigationMenu.Root>`,"NavigationMenu.Item":e=>`<CYNavigationMenu.Root><CYNavigationMenu.List>${e}</CYNavigationMenu.List></CYNavigationMenu.Root>`,"NavigationMenu.Trigger":e=>`<CYNavigationMenu.Root><CYNavigationMenu.List><CYNavigationMenu.Item>${e}</CYNavigationMenu.Item></CYNavigationMenu.List></CYNavigationMenu.Root>`,"NavigationMenu.Content":e=>`<CYNavigationMenu.Root><CYNavigationMenu.List><CYNavigationMenu.Item><CYNavigationMenu.Trigger />{/* Dummy trigger for context */}${e}</CYNavigationMenu.Item></CYNavigationMenu.List></CYNavigationMenu.Root>`,"NavigationMenu.Link":e=>`<CYNavigationMenu.Root><CYNavigationMenu.List><CYNavigationMenu.Item>${e}</CYNavigationMenu.Item></CYNavigationMenu.List></CYNavigationMenu.Root>`,"NavigationMenu.Indicator":e=>`<CYNavigationMenu.Root><CYNavigationMenu.List><CYNavigationMenu.Item><CYNavigationMenu.Trigger />{/* Dummy trigger for context */}</CYNavigationMenu.Item>${e}</CYNavigationMenu.List></CYNavigationMenu.Root>`,"NavigationMenu.Viewport":e=>`<CYNavigationMenu.Root>${e}</CYNavigationMenu.Root>`,"Popover.Trigger":e=>`<CYPopover.Root>${e}</CYPopover.Root>`,"Popover.Portal":e=>`<CYPopover.Root>${e}</CYPopover.Root>`,"Popover.Content":e=>`<CYPopover.Root><CYPopover.Portal>${e}</CYPopover.Portal></CYPopover.Root>`,"Popover.Close":e=>`<CYPopover.Root><CYPopover.Content>${e}</CYPopover.Content></CYPopover.Root>`,"Popover.Anchor":e=>`<CYPopover.Root>${e}</CYPopover.Root>`,"Progress.Indicator":e=>`<CYProgress.Root value={50}>${e}</CYProgress.Root>`,"RadioGroup.Item":e=>`<CYRadioGroup.Root>${e}</CYRadioGroup.Root>`,"RadioGroup.Indicator":e=>`<CYRadioGroup.Root><CYRadioGroup.Item value="item-1">${e}</CYRadioGroup.Item></CYRadioGroup.Root>`,"ScrollArea.Viewport":e=>`<CYScrollArea.Root>${e}</CYScrollArea.Root>`,"ScrollArea.Scrollbar":e=>`<CYScrollArea.Root>${e}</CYScrollArea.Root>`,"ScrollArea.Thumb":e=>`<CYScrollArea.Root><CYScrollArea.Scrollbar orientation="vertical">${e}</CYScrollArea.Scrollbar></CYScrollArea.Root>`,"ScrollArea.Corner":e=>`<CYScrollArea.Root>${e}</CYScrollArea.Root>`,"Select.Trigger":e=>`<CYSelect.Root>${e}</CYSelect.Root>`,"Select.Value":e=>`<CYSelect.Root><CYSelect.Trigger>${e}</CYSelect.Trigger></CYSelect.Root>`,"Select.Icon":e=>`<CYSelect.Root><CYSelect.Trigger>${e}</CYSelect.Trigger></CYSelect.Root>`,"Select.Portal":e=>`<CYSelect.Root>${e}</CYSelect.Root>`,"Select.Content":e=>`<CYSelect.Root><CYSelect.Portal>${e}</CYSelect.Portal></CYSelect.Root>`,"Select.Viewport":e=>`<CYSelect.Root><CYSelect.Content>${e}</CYSelect.Content></CYSelect.Root>`,"Select.Item":e=>`<CYSelect.Root><CYSelect.Content>${e}</CYSelect.Content></CYSelect.Root>`,"Select.ItemText":e=>`<CYSelect.Root><CYSelect.Content><CYSelect.Item value="item-1">${e}</CYSelect.Item></CYSelect.Content></CYSelect.Root>`,"Select.ItemIndicator":e=>`<CYSelect.Root><CYSelect.Content><CYSelect.Item value="item-1">${e}</CYSelect.Item></CYSelect.Content></CYSelect.Root>`,"Select.Group":e=>`<CYSelect.Root><CYSelect.Content>${e}</CYSelect.Content></CYSelect.Root>`,"Select.Label":e=>`<CYSelect.Root><CYSelect.Content><CYSelect.Group>${e}</CYSelect.Group></CYSelect.Content></CYSelect.Root>`,"Select.Separator":e=>`<CYSelect.Root><CYSelect.Content>${e}</CYSelect.Content></CYSelect.Root>`,"Slider.Track":e=>`<CYSlider.Root>${e}</CYSlider.Root>`,"Slider.Range":e=>`<CYSlider.Root><CYSlider.Track>${e}</CYSlider.Track></CYSlider.Root>`,"Slider.Thumb":e=>`<CYSlider.Root>${e}</CYSlider.Root>`,"Switch.Thumb":e=>`<CYSwitch.Root>${e}</CYSwitch.Root>`,"Tabs.List":e=>`<CYTabs.Root defaultValue="tab1">${e}</CYTabs.Root>`,"Tabs.Trigger":e=>`<CYTabs.Root defaultValue="tab1"><CYTabs.List>${e}</CYTabs.List></CYTabs.Root>`,"Tabs.Content":e=>`<CYTabs.Root defaultValue="tab1">${e}</CYTabs.Root>`,"Toast.Root":e=>`<CYToast.Provider>${e}</CYToast.Provider>`,"Toast.Title":e=>`<CYToast.Provider><CYToast.Root>${e}</CYToast.Root></CYToast.Provider>`,"Toast.Description":e=>`<CYToast.Provider><CYToast.Root>${e}</CYToast.Root></CYToast.Provider>`,"Toast.Action":e=>`<CYToast.Provider><CYToast.Root>${e}</CYToast.Root></CYToast.Provider>`,"Toast.Close":e=>`<CYToast.Provider><CYToast.Root>${e}</CYToast.Root></CYToast.Provider>`,"Toast.Viewport":e=>`<CYToast.Provider>${e}</CYToast.Provider>`,"ToggleGroup.Item":e=>`<CYToggleGroup.Root type="single">${e}</CYToggleGroup.Root>`,"Toolbar.Button":e=>`<CYToolbar.Root>${e}</CYToolbar.Root>`,"Toolbar.Link":e=>`<CYToolbar.Root>${e}</CYToolbar.Root>`,"Toolbar.Separator":e=>`<CYToolbar.Root>${e}</CYToolbar.Root>`,"Toolbar.ToggleGroup":e=>`<CYToolbar.Root>${e}</CYToolbar.Root>`,"Toolbar.ToggleItem":e=>`<CYToolbar.Root><CYToolbar.ToggleGroup type="single">${e}</CYToolbar.ToggleGroup></CYToolbar.Root>`,"Tooltip.Root":e=>`<CYTooltip.Provider>${e}</CYTooltip.Provider>`,"Tooltip.Trigger":e=>`<CYTooltip.Provider><CYTooltip.Root>${e}</CYTooltip.Root></CYTooltip.Provider>`,"Tooltip.Portal":e=>`<CYTooltip.Provider><CYTooltip.Root>${e}</CYTooltip.Root></CYTooltip.Provider>`,"Tooltip.Content":e=>`<CYTooltip.Provider><CYTooltip.Root><CYTooltip.Portal>${e}</CYTooltip.Portal></CYTooltip.Root></CYTooltip.Provider>`,"Tooltip.Arrow":e=>`<CYTooltip.Provider><CYTooltip.Root><CYTooltip.Content>${e}</CYTooltip.Content></CYTooltip.Root></CYTooltip.Provider>`};lc(_m);const km={"Command.Input":e=>`<CYCommand>${e}</CYCommand>`,"Command.List":e=>`<CYCommand>${e}</CYCommand>`,"Command.Item":e=>`<CYCommand><CYCommand.List>${e}</CYCommand.List></CYCommand>`,"Command.Group":e=>`<CYCommand><CYCommand.List>${e}</CYCommand.List></CYCommand>`,"Command.Separator":e=>`<CYCommand><CYCommand.List>${e}</CYCommand.List></CYCommand>`,"Command.Empty":e=>`<CYCommand><CYCommand.List>${e}</CYCommand.List></CYCommand>`,"Command.Loading":e=>`<CYCommand><CYCommand.List>${e}</CYCommand.List></CYCommand>`,"Command.Shortcut":e=>`<CYCommand><CYCommand.List><CYCommand.Item value="x">${e}</CYCommand.Item></CYCommand.List></CYCommand>`,"Command.Dialog":e=>`<CYCommand.Dialog open>${e}</CYCommand.Dialog>`};lc(km);function ur(e,t,r=new WeakSet){if(!t)return e;if(!e)return t;try{if(typeof t=="object"&&t!==null){if(r.has(t))throw new Error("Circular reference detected during deep merge");r.add(t)}if(Array.isArray(t)){const a=Array.isArray(e)?e:[],o=[];for(let i=0;i<t.length;i++){const l=t[i];l&&typeof l=="object"&&!Array.isArray(l)||Array.isArray(l)?o[i]=ur(a[i],l,r):o[i]=l}return o}const s={...e};for(const a in t)if(t[a]===null)s[a]=null;else if(Array.isArray(t[a])){const o=Array.isArray(e[a])?e[a]:[];s[a]=[];for(let i=0;i<t[a].length;i++){const l=t[a][i];typeof l=="object"&&l!==null?s[a][i]=ur(o[i],l,r):s[a][i]=l}}else typeof t[a]=="object"&&t[a]!==null?s[a]=ur(s[a]??{},t[a],r):s[a]=t[a];return s}catch(s){throw console.log("CodeYam: Error merging data",e,t),s}}async function Em({projectId:e,commit:t,branch:r}){var l,c,p,u,h,m,f;let s;const a={commitId:t.id,branchId:r.id,active:!0},o=await nm({projectId:e,commitId:t.id,includeBranches:!0});if(o&&o.length>0){s=(l=o.sort((y,x)=>{var w,b,v,N;return(((b=(w=y.branch.metadata)==null?void 0:w.permanent)==null?void 0:b.order)??999)-(((N=(v=x.branch.metadata)==null?void 0:v.permanent)==null?void 0:N.order)??999)})[0])==null?void 0:l.branch,s&&((p=(c=r.metadata)==null?void 0:c.permanent)==null?void 0:p.order)!==void 0&&(((h=(u=r.metadata)==null?void 0:u.permanent)==null?void 0:h.order)<=((f=(m=s.metadata)==null?void 0:m.permanent)==null?void 0:f.order)?s=r:a.active=!1);const g=o.filter(y=>y.active&&y.branch.id!==s.id||!y.active&&y.branch.id===s.id);g.length>0&&await Si(g.map(y=>({...y,active:y.branchId===s.id})))}(o==null?void 0:o.find(g=>g.branchId===a.branchId))||await Si([a])}let ki=!1;function nn(){if(process.env.SQLITE_PATH)return process.env.SQLITE_PATH;const e=we();if(!e)throw new Error("Could not find project root. Please run this command inside a CodeYam project.");return ee.join(e,".codeyam","db.sqlite3")}async function Ue(){if(!ki){ki=!0;const t=we();t&&await Pm(t)}const e=await Nm();process.env.SQLITE_PATH=nn(),e.OPENAI_API_KEY&&(process.env.OPENAI_API_KEY=e.OPENAI_API_KEY)}async function w2(){try{return await Ue(),await No({slug:"__test_connection__",silent:!0}),!0}catch(e){return console.error("Database connection test failed:",e),!1}}async function Oe(e){await Ue();const t=await No({slug:e,silent:!0});if(!t)throw new Error(`Project with slug "${e}" not found in database`);const r=await vo({projectId:t.id,names:["_local"]}),s=r==null?void 0:r[0];if(!s)throw new Error(`Local development branch not found for project "${e}". Please run "codeyam init" to set up local analysis.`);return{project:t,branch:s}}async function v2(e){await Ue();const t=await No({slug:e.slug,silent:!0});if(t)return{project:t,created:!1};const r={id:uo(),name:e.slug,slug:e.slug,path:`local:${process.cwd()}`,metadata:{packageManager:e.packageManager,unapprovedPaths:e.unapprovedPaths,webapps:e.webapps}};try{return{project:await xm([r]),created:!0}}catch(s){throw new Error(`Failed to create project: ${s.message}`)}}async function N2(e){await Ue();const t=await vo({projectId:e.id,names:["_local"]});if(t&&t.length>0)return{branch:t[0],created:!1};const r={projectId:e.id,name:"_local",ref:"_local",primary:!0,activeAt:new Date().toISOString(),contentChangedAt:new Date().toISOString(),metadata:{contributors:[{username:"local-dev",avatarUrl:"https://github.com/identicons/local-dev.png"}],commits:{total:0,last7Days:[]},timeline:[{title:"Local branch created",date:new Date().toISOString(),authors:[{username:"local-dev",avatarUrl:"https://github.com/identicons/local-dev.png"}],sha:"local-init"}]}},s=await Jh([r]);if(!s||s.length===0)throw new Error("Failed to create _local branch");return{branch:s[0],created:!0}}async function Am(e,t,r){await Ue();const s=we(),a=Gh(`${e.slug}-local-${Date.now()}-${Math.random()}`),o=r.map(c=>{let p="";if(s)try{if(p=Ie(`git diff HEAD -- "${c}"`,{cwd:s,encoding:"utf8",stdio:["pipe","pipe","ignore"],maxBuffer:1024*1024*10}),!p)try{const u=Ie(`cat "${c}"`,{cwd:s,encoding:"utf8",stdio:["pipe","pipe","ignore"]});if(u){const h=u.split(`
|
|
30
|
+
`);p=`@@ -0,0 +1,${h.length} @@
|
|
31
|
+
${h.map(m=>`+${m}`).join(`
|
|
32
|
+
`)}`}}catch{}}catch{}return{fileName:c,status:"modified",patch:p}}),i={sha:a,projectId:e.id,branchId:t.id,message:`Local analysis: ${r.join(", ")} at ${new Date().toISOString()}`,url:`local://codeyam/${e.slug}/${a}`,htmlUrl:`local://codeyam/${e.slug}/${a}`,author:{username:"local-dev",avatarUrl:"https://github.com/identicons/local-dev.png"},committedAt:new Date().toISOString(),parents:[],files:o,metadata:{baseline:!1,receivedAt:new Date().toISOString()}},l=await fm({projectId:e.id,commits:[i]});if(!l||l.length===0)throw new Error("Failed to create fake commit");return await Em({projectId:e.id,commit:l[0],branch:t}),l[0]}async function Pm(e){const t=ee.join(e,".codeyam","db.sqlite3"),r=ee.join(e,".codeyam","config.json");if(K.existsSync(t)||!K.existsSync(r))return!1;const{default:s}=await import("./init-DLYLaqqP.js");return await s.handler({force:!0,autoInit:!0,$0:"",_:[]}),!0}async function wn(){await Ue();const e=await Xe({excludeMetadata:!0});if(!e||e.length===0)return[];const t=new Map;for(const c of e){const p=`${c.name}::${c.filePath}`,u=t.get(p);(!u||c.createdAt&&u.createdAt&&c.createdAt>u.createdAt)&&t.set(p,c)}const r=[...t.values()],s=e.map(c=>c.sha),a=await Xt({entityShas:s,excludeMetadata:!0}),o=new Map;if(a)for(const c of a)o.has(c.entitySha)||o.set(c.entitySha,[]),o.get(c.entitySha).push(c);const i=new Map;for(const c of e){const p=`${c.name}::${c.filePath}`,u=i.get(p)||[];u.push(c.sha),i.set(p,u)}return r.map(c=>{const p=o.get(c.sha)||[];if(p.length>0)return{...c,analyses:p};const u=`${c.name}::${c.filePath}`,h=i.get(u)||[];for(const m of h){if(m===c.sha)continue;const f=o.get(m);if(f&&f.length>0)return{...c,analyses:f}}return{...c,analyses:[]}})}async function jm(e){await Ue();const t=await Xe(e);return!t||t.length===0?[]:t.filter(r=>{var s;return!((s=r.metadata)!=null&&s.isSuperseded)})}async function Ms(e,t){await Ue();const r=await Xt({entityShas:[e],limit:1});if(r&&r.length>0&&t){const s=await rc({projectId:r[0].projectId,sha:e});if(s)for(const a of r)a.entity=s}return r||[]}async function $s(e){if(await Ue(),e.name&&e.projectId){const r=await Xt({projectId:e.projectId,entityName:e.name,limit:10});if(r&&r.length>0){const s=r.filter(o=>{const i=o.scenarios&&o.scenarios.length>0,l=!e.filePath||o.filePath===e.filePath;return i&&l});if(s.length>0)return s.sort((o,i)=>{const l=new Date(o.createdAt||0).getTime();return new Date(i.createdAt||0).getTime()-l}),s[0];const a=r.filter(o=>o.scenarios&&o.scenarios.length>0);if(a.length>0)return a.sort((o,i)=>{const l=new Date(o.createdAt||0).getTime();return new Date(i.createdAt||0).getTime()-l}),a[0]}}const t=await Xt({entityShas:[e.sha],limit:1});return t&&t.length>0?t[0]:null}async function cc(e){await Ue();const t=await Xt({entityShas:[e],limit:1});return(t==null?void 0:t[0])??null}async function xn(e){await Ue();const t=await ze();if(!t)return null;const{project:r}=await Oe(t);return await rc({projectId:r.id,sha:e})}async function dc(e){var s,a,o,i,l,c,p,u;await Ue();const t=[],r=[];if((s=e.metadata)!=null&&s.importedExports&&e.metadata.importedExports.length>0){const h=e.metadata.importedExports;for(const m of h){if(!m.filePath||!m.name)continue;const f=m.resolvedFilePath??m.filePath,g=m.resolvedName??m.name;let y=await Xe({projectId:e.projectId,filePaths:[f],names:[g]});if((!y||y.length===0)&&m.resolvedIsDefault&&(y=await Xe({projectId:e.projectId,filePaths:[f],names:["default"]})),y&&y.length>0){const x=y[0],w=await Xt({entityShas:[x.sha],limit:1});let b,v,N;if(w&&w.length>0&&w[0].scenarios){const k=w[0],E=k.scenarios||[],C=E.length,S=E.find(j=>{var $,P;return(P=($=j.metadata)==null?void 0:$.screenshotPaths)==null?void 0:P[0]});S&&(b=(o=(a=S.metadata)==null?void 0:a.screenshotPaths)==null?void 0:o[0],v=S.name),N={status:((i=x.metadata)==null?void 0:i.previousVersionWithAnalyses)||k.entitySha!==x.sha?"out_of_date":"up_to_date",scenarioCount:C,timestamp:k.createdAt?new Date(k.createdAt).toLocaleDateString("en-US",{month:"2-digit",day:"2-digit",year:"2-digit",hour:"2-digit",minute:"2-digit"}):void 0}}else N={status:"not_analyzed"};t.push({...x,screenshotPath:b,scenarioName:v,analysisStatus:N})}}}if((l=e.metadata)!=null&&l.importedBy){const h=[];for(const m in e.metadata.importedBy)for(const f in e.metadata.importedBy[m]){const g=e.metadata.importedBy[m][f];g.shas&&h.push(...g.shas)}if(h.length>0){const m=await Xe({projectId:e.projectId,shas:h});if(m)for(const f of m){const g=await Xt({entityShas:[f.sha],limit:1});let y,x,w;if(g&&g.length>0&&g[0].scenarios){const b=g[0],v=b.scenarios||[],N=v.length,k=v.find(C=>{var S,_;return(_=(S=C.metadata)==null?void 0:S.screenshotPaths)==null?void 0:_[0]});k&&(y=(p=(c=k.metadata)==null?void 0:c.screenshotPaths)==null?void 0:p[0],x=k.name),w={status:((u=f.metadata)==null?void 0:u.previousVersionWithAnalyses)||b.entitySha!==f.sha?"out_of_date":"up_to_date",scenarioCount:N,timestamp:b.createdAt?new Date(b.createdAt).toLocaleDateString("en-US",{month:"2-digit",day:"2-digit",year:"2-digit",hour:"2-digit",minute:"2-digit"}):void 0}}else w={status:"not_analyzed"};r.push({...f,screenshotPath:y,scenarioName:x,analysisStatus:w})}}}return{importedEntities:t,importingEntities:r}}async function ze(){try{const e=we();if(!e)return null;const t=ee.join(e,".codeyam","config.json");return JSON.parse(await Ee.readFile(t,"utf8")).projectSlug||null}catch(e){return console.error("[getProjectSlug] Error:",e),null}}async function Hn(){await Ue();try{const e=await ze();if(!e)return null;const{project:t,branch:r}=await Oe(e),s=await fs({projectId:t.id,branchId:r.id,limit:1,skipRelations:!0});return s&&s.length>0?s[0]:null}catch(e){return console.error("[getCurrentCommit] Error:",e),null}}async function Is(){try{const e=we();if(!e)return null;const t=ee.join(e,".codeyam","config.json");return JSON.parse(await Ee.readFile(t,"utf8"))}catch(e){return console.error("[getProjectConfig] Error:",e),null}}async function uc(e){try{const t=we();if(!t)return console.error("[getEntityCodeFromFilesystem] No project root found"),null;if(!e.filePath)return console.error("[getEntityCodeFromFilesystem] Entity has no filePath"),null;const r=ee.join(t,e.filePath);return await Ee.readFile(r,"utf8")}catch(t){return console.error("[getEntityCodeFromFilesystem] Error reading file:",t),null}}async function pc(e){try{const t=we();if(!t||!e.filePath)return!1;const r=ee.join(t,e.filePath),a=(await Ee.stat(r)).mtime.getTime(),o=e.updatedAt||e.createdAt;if(!o)return!1;const i=new Date(o).getTime();return a>i+1e3}catch{return!1}}async function hc(e){if(await Ue(),!e.filePath||!e.name||!e.projectId)return console.error("[getEntityHistory] Entity missing required fields (filePath, name, or projectId)"),[];const t=await Xe({projectId:e.projectId,filePaths:[e.filePath],names:[e.name]});if(!t||t.length===0)return[];const r=t.map(i=>i.sha),s=await Xt({entityShas:r}),a=new Map;if(s)for(const i of s)a.has(i.entitySha)||a.set(i.entitySha,[]),a.get(i.entitySha).push(i);for(const[i,l]of a.entries())l.sort((c,p)=>{const u=new Date(c.createdAt||0).getTime();return new Date(p.createdAt||0).getTime()-u});const o=t.map(i=>({...i,analyses:a.get(i.sha)||[]}));return o.sort((i,l)=>{var u,h;const c=((u=i.analyses[0])==null?void 0:u.createdAt)||i.createdAt||"",p=((h=l.analyses[0])==null?void 0:h.createdAt)||l.createdAt||"";return new Date(p).getTime()-new Date(c).getTime()}),o}async function mc(e){try{const t=we();if(!t)return console.error("[updateProjectConfig] No project root found"),!1;const r=ee.join(t,".codeyam","config.json"),s=await Ee.readFile(r,"utf8"),a=JSON.parse(s),o={...a,...e},i=JSON.stringify(o,null,2);if(await Ee.writeFile(r,i,"utf8"),a.projectSlug){const l={};e.universalMocks!==void 0&&(l.universalMocks=e.universalMocks),e.pathsToIgnore!==void 0&&(l.pathsToIgnore=e.pathsToIgnore),e.webapps!==void 0&&(l.webapps=e.webapps),await Ln({projectSlug:a.projectSlug,metadataUpdate:l})}return!0}catch(t){return console.error("[updateProjectConfig] Error:",t),!1}}const Tm=Object.freeze(Object.defineProperty({__proto__:null,getAllEntities:wn,getAnalysesForEntity:Ms,getAnalysisForExactEntitySha:cc,getCurrentCommit:Hn,getCurrentEntities:jm,getEntityBySha:xn,getEntityCodeFromFilesystem:uc,getEntityHistory:hc,getLatestAnalysisForEntity:$s,getProjectConfig:Is,getProjectSlug:ze,getRelatedEntities:dc,hasFileBeenModifiedSinceEntity:pc,requireBranchAndProject:Oe,updateProjectConfig:mc},Symbol.toStringTag,{value:"Module"})),fc="secrets.json";function gc(e){return ee.join(e,".codeyam",fc)}function yc(){return ee.join(Da.homedir(),".codeyam",fc)}async function Rs(e){let t={};try{const r=yc(),s=await Ee.readFile(r,"utf-8");t=JSON.parse(s)}catch{}try{const r=gc(e),s=await Ee.readFile(r,"utf-8"),a=JSON.parse(s);t={...t,...a}}catch{}return t}async function Mm(e,t,r=!0){const s=r?yc():gc(e),a=ee.dirname(s);await Ee.mkdir(a,{recursive:!0}),await Ee.writeFile(s,JSON.stringify(t,null,2)+`
|
|
33
|
+
`,"utf-8")}async function $m(e){const t=await Rs(e);return!!(t.ANTHROPIC_API_KEY&&t.ANTHROPIC_API_KEY.length>0)||!!(t.OPENAI_API_KEY&&t.OPENAI_API_KEY.length>0)||!!(t.GROQ_API_KEY&&t.GROQ_API_KEY.length>0)||!!(t.OPENROUTER_API_KEY&&t.OPENROUTER_API_KEY.length>0)}const Im=3;let ar=0;async function Jr(e){if(!e||e.length===0)return[];if(ar>=Im)return console.warn(`[Loader] Circuit breaker open (${ar} consecutive timeouts), skipping entity fetch for ${e.length} entities`),[];const t=Math.min(Math.max(e.length*2e3,1e4),6e4);return new Promise(r=>{let s=!1;const a=setTimeout(()=>{s||(s=!0,ar++,console.warn(`[Loader] Entity fetch timeout after ${t}ms for ${e.length} entities`),r([]))},t);Xe({shas:e,excludeMetadata:!0}).then(o=>{s||(s=!0,clearTimeout(a),ar=0,r(o||[]))}).catch(()=>{s||(s=!0,clearTimeout(a),ar++,r([]))})})}function Rm({sourcePath:e,destinationPath:t,excludes:r,silent:s}){if(process.platform!=="darwin")return!1;if(wt(t))try{if(tp(t).length>0)return!1;pa(t,{recursive:!0})}catch{return!1}try{Ie(`cp -c -R "${e}" "${t}"`,{stdio:"pipe",timeout:3e5});for(const a of r)if(a.includes("*"))try{Ie(`rm -rf "${xr(t,a)}"`,{stdio:"pipe",shell:"/bin/sh"})}catch{}else{const o=xr(t,a);wt(o)&&pa(o,{recursive:!0,force:!0})}return s||console.log(`Directory cloned (APFS CoW) from ${e} to ${t}`),!0}catch{if(wt(t))try{pa(t,{recursive:!0})}catch{}return!1}}async function Dm({sourcePath:e,destinationPath:t,excludes:r=[],keepExisting:s=!1,silent:a=!1,extraArgs:o=[]}){const i=Date.now();if(!s&&o.length===0&&Rm({sourcePath:e,destinationPath:t,excludes:r,silent:a})){if(!a){const c=((Date.now()-i)/1e3).toFixed(1);console.log(`Directory synced from ${e} to ${t} [Time: ${c}s]`)}return}return new Promise((l,c)=>{const p=e.endsWith("/")?e:`${e}/`,u=t.endsWith("/")?t:`${t}/`,h=["-a","--no-specials"];s||h.push("--delete","--force"),h.push(...o);for(const f of r)h.push(`--exclude=${f}`);h.push(p,u);const m=St("rsync",h);m.on("exit",f=>{if(f===0){if(!a){const g=((Date.now()-i)/1e3).toFixed(1);console.log(`Directory synced from ${e} to ${t} [Time: ${g}s]`)}l()}else console.error(`CodeYam Error: rsync failed with code: ${f}`,JSON.stringify({rsyncArgs:h},null,2)),c(new Error(`rsync failed with exit code ${f}`))}),m.on("error",f=>{a||console.log("Error occurred:",f),c(f)})})}const Om=ho(po);async function Fm(e){return new Promise(t=>setTimeout(t,e))}function Lm(e){try{return process.kill(e,0),!0}catch{return!1}}async function xc(e){try{const{stdout:t}=await Om(`ps -A -o pid=,ppid= | awk '$2 == ${e} { print $1 }'`),r=t.trim().split(`
|
|
34
|
+
`).filter(a=>a.trim()).map(a=>parseInt(a.trim(),10)).filter(a=>!isNaN(a)),s=[...r];for(const a of r){const o=await xc(a);s.push(...o)}return s}catch{return[]}}function Ei(e,t,r){try{process.kill(e,t)}catch(s){r==null||r(`Error sending ${t} to process ${e}: ${s}`)}}async function zm(e,t,r){const s=await xc(e);for(const a of s.reverse())await Ei(a,t,r);await Ei(e,t,r)}async function br(e,t=console.log,r=1){if(e==process.pid)throw new Error(`Eek! killProcess(${e}) called on self!`);let s=0;async function a(o,i){await zm(e,o,t);for(let l=0;l<i;l++)if(await Fm(1e3),s+=1e3,!await Lm(e))return t(`Process tree ${e} successfully killed with ${o} after ${s/1e3} seconds.`),!0;return t(`Process tree still running after ${o}...`),!1}if(await a("SIGINT",5)||await a("SIGTERM",5))return!0;for(let o=0;o<r;o++)if(await a("SIGKILL",2))return!0;return console.warn(`CodeYam Warning: Completely failed to kill process tree ${e} after ${s/1e3} seconds.`),!1}function Bm(e){const t=new Date().toISOString();e.currentRun&&(e.currentRun.archivedAt=t,e.historicalRuns??(e.historicalRuns=[]),e.historicalRuns.push(e.currentRun)),e.currentRun={id:Cp(),createdAt:t}}pp.config({quiet:!0});var bc=(e=>(e.Server="server",e.Analyzer="analyzer",e.Capture="capture",e.Controller="controller",e.Worker="worker",e.Project="project",e.Other="other",e))(bc||{});class Ym extends hp{constructor(){super(...arguments),this.processes=new Map}register(t){const r=mp(),{process:s,type:a,name:o,metadata:i,parentId:l}=t,c={id:r,type:a,name:o,pid:s.pid,state:"running",startedAt:Date.now(),metadata:i,parentId:l,children:[]};if(this.processes.set(r,{info:c,process:s}),l){const h=this.processes.get(l);h&&(h.info.children=h.info.children||[],h.info.children.push(r))}const p=(h,m)=>{this.handleProcessExit(r,h,m)},u=h=>{this.handleProcessError(r,h)};return s.on("exit",p),s.on("error",u),s.__cleanup=()=>{s.removeListener("exit",p),s.removeListener("error",u)},this.emit("processStarted",c),r}unregister(t){const r=this.processes.get(t);return r?(r.process.__cleanup&&r.process.__cleanup(),this.processes.delete(t),!0):!1}getInfo(t){const r=this.processes.get(t);return r?{...r.info}:null}listAll(){return Array.from(this.processes.values()).map(t=>({...t.info}))}listByType(t){return this.listAll().filter(r=>r.type===t)}listByState(t){return this.listAll().filter(r=>r.state===t)}findByName(t){return this.listAll().filter(r=>r.name===t)}async shutdown(t,r={}){const s=this.processes.get(t);if(!s)throw new Error(`Process not found: ${t}`);const{info:a,process:o}=s;if(a.state==="completed"||a.state==="failed"||a.state==="killed")return;if(r.shutdownChildren&&a.children&&a.children.length>0&&await Promise.all(a.children.map(l=>this.shutdown(l,r))),o.pid)try{await br(o.pid,l=>console.log(`[Process ${t}] ${l}`))}catch(l){console.warn(`Error killing process ${t}:`,l)}await new Promise(l=>setTimeout(l,100)),a.state==="running"&&(a.state="killed",a.endedAt=Date.now());const i=o.__cleanup;i&&i()}async shutdownByType(t,r={}){const s=this.listByType(t);await Promise.all(s.map(a=>this.shutdown(a.id,r)))}async shutdownAll(t={}){const r=this.listAll();await Promise.all(r.map(s=>this.shutdown(s.id,t)))}cleanupCompleted(t={}){const{retentionMs:r=6e4}=t,s=Date.now();for(const[a,o]of this.processes.entries()){const{info:i}=o;if((i.state==="completed"||i.state==="failed"||i.state==="killed")&&i.endedAt&&s-i.endedAt>r){const l=o.process.__cleanup;l&&l(),this.processes.delete(a)}}}handleProcessExit(t,r,s){const a=this.processes.get(t);if(!a)return;const{info:o}=a;o.endedAt=Date.now(),o.exitCode=r,o.signal=s,r===0?o.state="completed":s?o.state="killed":o.state="failed",this.emit("processExited",o)}handleProcessError(t,r){const s=this.processes.get(t);if(!s)return;const{info:a}=s;a.endedAt=Date.now(),a.state="failed",a.metadata={...a.metadata,error:r.message},this.emit("processExited",a)}}let ba=null;function Um(){return ba||(ba=new Ym),ba}const Wm={stdoutToConsole:!0,stdoutToFile:!0,stderrToConsole:!0,stderrToFile:!0};function Jm({command:e,args:t,workingDir:r,outputOptions:s=Wm,processName:a,env:o}){const i={...process.env,...o||{},CODEYAM_PROCESS_NAME:`codeyam-${a}`},l=St(e,t,{cwd:r,env:i});return Um().register({process:l,type:bc.Other,name:a,metadata:{command:e,args:t,workingDir:r}}),{promise:new Promise(u=>{const h=f=>{const g=ee.join(r,"log.txt");K.appendFile(g,f,y=>{y&&console.log("Error writing to log file:",y)})},m=(f,g="")=>{const y=new Date().toLocaleString();return f.split(`
|
|
35
|
+
`).map(w=>w.trim()?`[${y}]${g} ${w}`:w).join(`
|
|
36
|
+
`)};l.stdout.on("data",function(f){const g=(f==null?void 0:f.toString())??"",y=m(g);s.stdoutToConsole&&console.log(y),s.stdoutToFile&&h(y+`
|
|
37
|
+
`),s.stdoutCallback&&s.stdoutCallback(g)}),l.stderr.on("data",function(f){const g=(f==null?void 0:f.toString())??"",y=m(g,"<STDERR>");s.stderrToConsole&&console.error(y),s.stderrToFile&&h(y+`
|
|
38
|
+
`),s.stderrCallback&&s.stderrCallback(g)}),l.on("exit",function(f){u(f)})}),process:l}}function Hm(e){const t=[];return Object.keys(e).forEach(r=>{const s=e[r];s!==void 0&&(typeof s=="boolean"?s&&t.push(`--${r}`):s!==null&&t.push(`--${r}`,String(s)))}),t}function Vm({absoluteCodeyamRootPath:e,startEnv:t,startArgs:r,outputOptions:s}){const a=Object.entries(t).map(([i,l])=>`${i}=${l}`).join(`
|
|
39
|
+
`);K.writeFileSync(`${e}/.env`,a);const o=Hm(r);return Jm({command:"node",args:["--enable-source-maps","./dist/project/start.js",...o],workingDir:e,outputOptions:s,processName:"analyzer",env:t})}const Gm="/tmp/codeyam/local-dev";function wc(e){return L.join(Gm,e)}function vc(e){return L.join(wc(e),"codeyam")}function jt(e){return L.join(wc(e),"project")}function Ds(e){return L.join(vc(e),"log.txt")}const Km=[".sync-metadata.json","__codeyamMocks__"];async function qm(e,t={}){const{port:r,silent:s=!0}=t,a=jt(e);if(r)try{Ie(`lsof -ti:${r} | xargs kill -9 2>/dev/null || true`,{stdio:s?"ignore":"inherit"})}catch{}try{Ie(`lsof +D "${a}" 2>/dev/null | grep node | awk '{print $2}' | xargs kill -9 2>/dev/null || true`,{stdio:s?"ignore":"inherit"})}catch{}await new Promise(o=>setTimeout(o,500))}async function Qm(e,t={}){const{killProcesses:r=!0,port:s,silent:a=!0}=t,o=jt(e),i=[],l=[];if(!K.existsSync(o))return{removed:i,errors:l};r&&await qm(e,{port:s,silent:a});for(const c of Km){const p=L.join(o,c);if(K.existsSync(p))try{(await Pe.stat(p)).isDirectory()?await Pe.rm(p,{recursive:!0,force:!0}):await Pe.unlink(p),i.push(c)}catch(u){l.push(`${c}: ${u instanceof Error?u.message:String(u)}`)}}return{removed:i,errors:l}}const Zm=L.dirname(Es(import.meta.url));function Xm(e){let t=e;for(;t!==L.dirname(t);){const r=L.join(t,"package.json");if(K.existsSync(r))try{if(JSON.parse(K.readFileSync(r,"utf8")).name==="@codeyam/codeyam-cli")return t}catch{}t=L.dirname(t)}throw new Error("Could not find @codeyam/codeyam-cli package root")}function Os(){const e=Xm(Zm);return L.join(e,"analyzer-template")}function Vn(e){return vc(e)}function ef(){const e=Os();return K.existsSync(L.join(e,".finalized"))}async function Ai(e){const t=Os(),r=Vn(e);if(!K.existsSync(t))throw new Error(`Analyzer template not found at ${t}. Did the build process complete successfully?`);await Pe.mkdir(L.dirname(r),{recursive:!0}),await Dm({sourcePath:t,destinationPath:r,silent:!0}),K.existsSync(L.join(r,"dist"))||Ie("npm install --include=dev && npm run build",{cwd:r,stdio:"pipe",timeout:3e5})}function Gn(e,t,r,s){const a=Vn(e);if(!K.existsSync(a))throw new Error(`Analyzer not found at ${a}. The analyzer template may not be initialized. Try running 'codeyam init' or contact support if the issue persists.`);const o=void 0;return Vm({absoluteCodeyamRootPath:a,startEnv:t,startArgs:r,outputOptions:{stdoutToConsole:!1,stdoutToFile:!0,stdoutCallback:o,stderrToConsole:!1,stderrToFile:!0,stderrCallback:o}})}function tf(e){const t=Os(),r=Vn(e),s=L.join(t,".build-info.json"),a=L.join(r,".build-info.json");if(!K.existsSync(s))return{isFresh:!1,reason:"Template build marker missing - template may be corrupted"};if(!K.existsSync(r))return{isFresh:!1,reason:"Cached analyzer does not exist"};if(!K.existsSync(a))return{isFresh:!1,reason:"Cached analyzer build marker missing - was created with old version"};try{const o=JSON.parse(K.readFileSync(s,"utf8")),i=JSON.parse(K.readFileSync(a,"utf8"));return o.buildTime>i.buildTime?{isFresh:!1,reason:`Template is newer (${o.buildTimestamp}) than cached version (${i.buildTimestamp})`}:{isFresh:!0}}catch(o){return{isFresh:!1,reason:`Error reading build markers: ${o.message}`}}}async function Er(e,t){const r=Vn(e);if(!K.existsSync(r)){t.update("Creating analyzer..."),await Ai(e);return}const s=tf(e);s.isFresh||(t.update(`Updating analyzer (${s.reason})...`),await Ai(e))}async function Co(e){await Qm(e,{killProcesses:!1})}const nf=L.dirname(Es(import.meta.url));function Fs(){let e=nf;for(;e!==L.dirname(e);){const t=L.join(e,"package.json");if(K.existsSync(t))try{if(JSON.parse(K.readFileSync(t,"utf8")).name==="@codeyam/codeyam-cli")return e}catch{}e=L.dirname(e)}return null}function On(e){if(!K.existsSync(e))return null;try{return JSON.parse(K.readFileSync(e,"utf8"))}catch{return null}}function rf(){const e=Fs();if(e){const t=[L.join(e,"src/webserver/build-info.json"),L.join(e,"codeyam-cli/src/webserver/build-info.json")];for(const r of t){const s=On(r);if(s!=null&&s.semanticVersion)return s.semanticVersion}}return"unknown"}function sf(){const e=Fs();if(e){const t=L.join(e,"package.json");try{const r=JSON.parse(K.readFileSync(t,"utf8"));if(r.version)return r.version}catch{}}return"unknown"}const So=rf(),wa=sf();function _o(){if(wa!=="unknown"&&wa!=="0.1.0")return wa;const e=Fs();if(e)for(const t of[L.join(e,"src/webserver/build-info.json"),L.join(e,"codeyam-cli/src/webserver/build-info.json")]){const r=On(t);if(r!=null&&r.buildNumber)return`dev (build ${r.buildNumber})`}return"dev"}function Nc(e){const t=Fs();let r=null;if(t){const c=[L.join(t,"src/webserver/build-info.json"),L.join(t,"codeyam-cli/src/webserver/build-info.json")];for(const p of c)if(r=On(p),r)break}const s=Os(),a=L.join(s,".build-info.json"),o=On(a);let i=null;if(e){const c=Vn(e),p=L.join(c,".build-info.json");i=On(p)}let l=!1;return o&&i?l=o.buildTime>i.buildTime:o&&!i&&e&&(l=!0),{cliVersion:So,webserverVersion:r,templateVersion:o,cachedAnalyzerVersion:i,isCacheStale:l}}function Ls(e){const t=Vn(e),r=L.join(t,".build-info.json"),s=On(r);return(s==null?void 0:s.version)??null}function ko(){const e=we();return e?L.join(e,".codeyam","server.json"):null}function C2(e){const t=ko();t&&K.writeFileSync(t,JSON.stringify(e,null,2))}function zs(){const e=ko();if(!e||!K.existsSync(e))return null;try{const t=K.readFileSync(e,"utf8");return JSON.parse(t)}catch{return null}}function Eo(){const e=ko();if(e)try{K.unlinkSync(e)}catch{}}function Cc(e){try{return process.kill(e,0),!0}catch{return!1}}function Sc(){try{const e=process.platform==="win32",r=Ie(e?'tasklist /FI "IMAGENAME eq node.exe" /FO CSV /NH':"ps aux | grep codeyam-server | grep -v grep",{encoding:"utf8",stdio:["pipe","pipe","pipe"]}).trim();if(!r)return[];const s=[];if(e)for(const a of r.split(`
|
|
40
|
+
`)){const o=a.match(/"[^"]*","(\d+)"/);if(o){const i=parseInt(o[1],10);if(!isNaN(i))try{Ie(`wmic process where "ProcessId=${i}" get CommandLine /FORMAT:LIST`,{encoding:"utf8",stdio:["pipe","pipe","pipe"]}).includes("codeyam-server")&&s.push(i)}catch{}}}else for(const a of r.split(`
|
|
41
|
+
`)){const o=a.trim().split(/\s+/);if(o.length>=2){const i=parseInt(o[1],10);isNaN(i)||s.push(i)}}return s}catch{return[]}}function S2(){const e=zs();if(e)if(!Cc(e.pid))Eo();else return{running:!0,state:e};const t=Sc();return t.length>0?{running:!0,pids:t}:{running:!1}}function af(e,t=5e3){if(e.length===0)return!0;const r=Date.now()+t;for(;Date.now()<r;){if(!e.some(a=>Cc(a)))return!0;Atomics.wait(new Int32Array(new SharedArrayBuffer(4)),0,0,100)}return!1}function _2(){let e=!1;const t=[],r=zs();if(r){try{process.kill(r.pid,"SIGTERM"),t.push(r.pid),e=!0}catch{}Eo()}const s=Sc();for(const a of s)try{process.kill(a,"SIGTERM"),t.includes(a)||t.push(a),e=!0}catch{}return af(t),e}function k2(e,t,r=10,s=10){if(t(e))return e;for(let a=1;a<=s;a++){const o=e+a*r;if(t(o))return o}throw new Error(`Could not find a free port starting from ${e} (tried ${s} candidates)`)}function E2(e){try{return Ie(`lsof -ti:${e}`,{encoding:"utf8",stdio:["pipe","pipe","pipe"]}),!1}catch{return!0}}const of="/assets/globals-fAqOD9ex.css";function Pi({text:e,subtext:t,linkText:r,linkTo:s}){const[a,o]=M(!1);return a?null:n("div",{className:"bg-blue-100 border rounded border-blue-800 shadow-sm mx-6 mt-6",children:d("div",{className:"max-w-7xl mx-auto px-4 py-3 flex items-center justify-between",children:[d("div",{className:"flex items-center gap-3 flex-1",children:[n("div",{className:"shrink-0",children:n("svg",{className:"w-5 h-5 text-yellow-600",fill:"none",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"2",viewBox:"0 0 24 24",stroke:"currentColor",children:n("path",{d:"M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-3L13.732 4c-.77-1.333-2.694-1.333-3.464 0L3.34 16c-.77 1.333.192 3 1.732 3z"})})}),d("div",{className:"flex-1",children:[n("p",{className:"text-sm font-medium text-blue-900",children:e}),n("p",{className:"text-xs text-blue-700 mt-0.5",children:t})]}),n(ve,{to:s,className:"shrink-0 px-4 py-2 bg-blue-600 text-white text-sm font-medium rounded hover:bg-blue-700 transition-colors",children:r})]}),n("button",{type:"button",onClick:()=>o(!0),className:"shrink-0 ml-4 p-1 rounded text-blue-600 hover:text-blue-800 hover:bg-blue-100 transition-colors cursor-pointer","aria-label":"Dismiss banner",children:n("svg",{className:"w-5 h-5",fill:"none",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"2",viewBox:"0 0 24 24",stroke:"currentColor",children:n("path",{d:"M6 18L18 6M6 6l12 12"})})})]})})}function lf({version:e}){return n("div",{className:"px-6 sm:px-12 pb-8 mt-auto pt-8",children:d("div",{className:"border-t border-cygray-30 pt-6 flex flex-wrap justify-between items-center gap-4",children:[d("div",{className:"flex items-center gap-3",children:[n("span",{className:"font-mono text-sm font-semibold tracking-widest text-cyblack-100",children:"CODEYAM"}),e&&n("span",{className:"font-mono text-xs text-gray-400",children:e})]}),d("div",{className:"flex items-center gap-4 font-mono text-xs uppercase tracking-widest",children:[n("a",{href:"https://blog.codeyam.com/",target:"_blank",rel:"noopener noreferrer",className:"text-cyblack-100 underline underline-offset-4 hover:text-primary-100",children:"Read the Blog"}),n("span",{className:"text-cygray-30",children:"|"}),n("a",{href:"https://discord.gg/x4uAgaRdwF",target:"_blank",rel:"noopener noreferrer",className:"text-cyblack-100 underline underline-offset-4 hover:text-primary-100",children:"Join Discord"})]})]})})}function cf({serverVersion:e}){const[t,r]=M("stale"),[s,a]=M(null),o=async()=>{r("restarting"),a(null);try{if(!(await fetch("/api/restart-server",{method:"POST"})).ok)throw new Error("Failed to restart server");r("reconnecting");let l=0;const c=30,p=1e3,u=async()=>{try{if((await fetch("/api/health")).ok){window.location.reload();return}}catch{}l++,l<c?setTimeout(()=>void u(),p):(a("Server took too long to restart. Please refresh manually."),r("stale"))};setTimeout(()=>void u(),500)}catch(i){a(i instanceof Error?i.message:"Failed to restart server"),r("stale")}};return n("div",{className:"bg-amber-100 border rounded border-amber-700 shadow-sm mx-6 mt-6",children:n("div",{className:"max-w-7xl mx-auto px-4 py-3 flex items-center justify-between",children:d("div",{className:"flex items-center gap-3 flex-1",children:[n("div",{className:"shrink-0",children:n("svg",{className:"w-5 h-5 text-amber-600",fill:"none",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"2",viewBox:"0 0 24 24",stroke:"currentColor",children:n("path",{d:"M4 4v5h.582m15.356 2A8.001 8.001 0 004.582 9m0 0H9m11 11v-5h-.581m0 0a8.003 8.003 0 01-15.357-2m15.357 2H15"})})}),d("div",{className:"flex-1",children:[t==="stale"&&d(ye,{children:[n("p",{className:"text-sm font-medium text-amber-900",children:"Dashboard server is out of date"}),d("p",{className:"text-xs text-amber-700 mt-0.5",children:["Server version: ",e,". A newer version of CodeYam CLI is installed. Restart the server to get the latest features."]}),s&&n("p",{className:"text-xs text-red-600 mt-1",children:s})]}),t==="restarting"&&d(ye,{children:[n("p",{className:"text-sm font-medium text-amber-900",children:"Restarting server..."}),n("p",{className:"text-xs text-amber-700 mt-0.5",children:"Please wait while the server restarts."})]}),t==="reconnecting"&&d(ye,{children:[n("p",{className:"text-sm font-medium text-amber-900",children:"Reconnecting..."}),n("p",{className:"text-xs text-amber-700 mt-0.5",children:"Waiting for the server to come back online."})]})]}),t==="stale"&&n("button",{type:"button",onClick:()=>void o(),className:"shrink-0 px-4 py-2 bg-amber-600 text-white text-sm font-medium rounded hover:bg-amber-700 transition-colors cursor-pointer",children:"Restart Server"}),(t==="restarting"||t==="reconnecting")&&d("div",{className:"shrink-0 flex items-center gap-2 px-4 py-2 text-amber-700 text-sm",children:[d("svg",{className:"w-4 h-4 animate-spin",fill:"none",viewBox:"0 0 24 24",children:[n("circle",{className:"opacity-25",cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeWidth:"4"}),n("path",{className:"opacity-75",fill:"currentColor",d:"M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"})]}),t==="restarting"?"Stopping...":"Reconnecting..."]})]})})})}function ht({content:e,label:t="Copy",copiedLabel:r="✓ Copied!",className:s="",duration:a=2e3,ariaLabel:o,icon:i=!1,iconSize:l=14}){const[c,p]=M(!1),u=ie(()=>{navigator.clipboard.writeText(e).then(()=>{p(!0),setTimeout(()=>p(!1),a)}).catch(h=>{console.error("Failed to copy:",h)})},[e,a]);return n("button",{onClick:u,className:`cursor-pointer ${s}`,disabled:c,"aria-label":o||(c?"Copied to clipboard":"Copy to clipboard"),"aria-live":"polite",children:i?c?n(Ct,{size:l,className:"text-green-500"}):n(Pt,{size:l}):c?r:t})}function df({currentVersion:e,latestVersion:t}){const[r,s]=M(!1);if(r)return null;const a="npm install -g @codeyam/codeyam-cli@latest && codeyam stop && codeyam";return n("div",{className:"bg-emerald-100 border rounded border-emerald-700 shadow-sm mx-6 mt-6",children:d("div",{className:"max-w-7xl mx-auto px-4 py-3 flex items-center justify-between",children:[d("div",{className:"flex items-center gap-3 flex-1",children:[n("div",{className:"shrink-0",children:n("svg",{className:"w-5 h-5 text-emerald-600",fill:"none",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"2",viewBox:"0 0 24 24",stroke:"currentColor",children:n("path",{d:"M7 11l5-5m0 0l5 5m-5-5v12"})})}),d("div",{className:"flex-1",children:[n("p",{className:"text-sm font-medium text-emerald-900",children:"A new version of CodeYam CLI is available"}),d("p",{className:"text-xs text-emerald-700 mt-0.5",children:["Current: ",e," → Latest: ",t]})]}),d("div",{className:"shrink-0 flex items-center gap-2",children:[n("code",{className:"text-xs bg-emerald-200 text-emerald-900 px-2 py-1.5 rounded font-mono",children:a}),n(ht,{content:a,label:"Copy",copiedLabel:"Copied!",className:"px-3 py-1.5 bg-emerald-600 text-white text-xs font-medium rounded hover:bg-emerald-700 transition-colors"})]})]}),n("button",{type:"button",onClick:()=>s(!0),className:"shrink-0 ml-4 p-1 rounded text-emerald-600 hover:text-emerald-800 hover:bg-emerald-200 transition-colors cursor-pointer","aria-label":"Dismiss banner",children:n("svg",{className:"w-5 h-5",fill:"none",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"2",viewBox:"0 0 24 24",stroke:"currentColor",children:n("path",{d:"M6 18L18 6M6 6l12 12"})})})]})})}let or=null,Hr=0;const uf=3600*1e3;function pf(e,t){const r=e.split(".").map(Number),s=t.split(".").map(Number);for(let a=0;a<Math.max(r.length,s.length);a++){const o=r[a]??0,i=s[a]??0;if(isNaN(o)||isNaN(i))return!1;if(o>i)return!0;if(o<i)return!1}return!1}async function hf(){const e=_o();if(or&&Date.now()-Hr<uf)return or;try{const t=new AbortController,r=setTimeout(()=>t.abort(),5e3),s=await fetch("https://registry.npmjs.org/@codeyam/codeyam-cli/latest",{signal:t.signal});if(clearTimeout(r),!s.ok){const l={updateAvailable:!1,latestVersion:null,currentVersion:e};return or=l,Hr=Date.now(),l}const o=(await s.json()).version;if(!o){const l={updateAvailable:!1,latestVersion:null,currentVersion:e};return or=l,Hr=Date.now(),l}const i={updateAvailable:pf(o,e),latestVersion:o,currentVersion:e};return or=i,Hr=Date.now(),i}catch{return{updateAvailable:!1,latestVersion:null,currentVersion:e}}}function bs(e){return L.join(e,".codeyam","queue.json")}function pr(e){const t=bs(e);if(!K.existsSync(t))return{paused:!1,jobs:[]};try{const r=K.readFileSync(t,"utf8");return JSON.parse(r)}catch(r){return console.error("Failed to load queue state:",r),{paused:!1,jobs:[]}}}function mf(e,t){const r=bs(e),s=L.dirname(r);K.existsSync(s)||K.mkdirSync(s,{recursive:!0});try{K.writeFileSync(r,JSON.stringify(t,null,2),"utf8")}catch(a){throw console.error("Failed to save queue state:",a),a}}const _s=class _s extends _r{constructor(t){super(),this.watcher=null,this.debounceTimers=new Map,this.DEBOUNCE_MS=300,this.options=t}start(){try{this.watcher=ce.watch(this.options.projectRootPath,{recursive:!0},(t,r)=>{if(!r||!/\.(ts|tsx|js|jsx|css|scss|json|svg|html)$/.test(r)||_s.IGNORED_DIRS.some(a=>r.includes(a+"/")||r.includes(a+"\\")))return;const s=this.debounceTimers.get(r);s&&clearTimeout(s),this.debounceTimers.set(r,setTimeout(()=>{this.debounceTimers.delete(r),this.syncFile(r)},this.DEBOUNCE_MS))}),console.log(`[InteractiveSyncWatcher] Watching ${this.options.projectRootPath} for changes`)}catch(t){console.error("[InteractiveSyncWatcher] Failed to start:",t)}}syncFile(t){const r=ee.join(this.options.projectRootPath,t),s=ee.join(this.options.tmpProjectPath,t);try{if(!ce.existsSync(r)){ce.existsSync(s)&&(ce.unlinkSync(s),console.log(`[InteractiveSyncWatcher] Removed: ${t}`));return}const a=ee.dirname(s);ce.existsSync(a)||ce.mkdirSync(a,{recursive:!0}),ce.copyFileSync(r,s);const o=ee.basename(t);console.log(`[InteractiveSyncWatcher] Synced: ${t}`);const i={type:"file-synced",fileName:o,filePath:t,timestamp:Date.now()};this.emit("sync",i)}catch(a){console.error(`[InteractiveSyncWatcher] Error syncing ${t}:`,a);const o={type:"error",fileName:ee.basename(t),filePath:t,timestamp:Date.now()};this.emit("sync",o)}}stop(){this.watcher&&(this.watcher.close(),this.watcher=null);for(const t of this.debounceTimers.values())clearTimeout(t);this.debounceTimers.clear(),console.log("[InteractiveSyncWatcher] Stopped")}};_s.IGNORED_DIRS=["node_modules",".git",".codeyam","__codeyamMocks__",".next","dist","build",".turbo",".vercel","coverage",".cache"];let Fa=_s,ff=class extends _r{constructor(){super(),this.setMaxListeners(20)}emitFileSynced(t,r){this.emit("event",{type:"file-synced",fileName:t,filePath:r,timestamp:Date.now()})}emitError(t,r){this.emit("event",{type:"sync-error",fileName:t,filePath:r,timestamp:Date.now()})}};const La="__codeyam_dev_mode_event_emitter__";globalThis[La]||(globalThis[La]=new ff);const ji=globalThis[La],za=new Map;async function gf(e,t,r){console.log(`[Queue] Executing job ${e.id} (${e.type})`);try{if(e.type==="analysis")await yf(e,t,r);else if(e.type==="baseline")await xf(e,t,r);else if(e.type==="recapture")await bf(e,t,r);else if(e.type==="capture-only")await wf(e,t,r);else if(e.type==="debug-setup")await vf(e,t,r);else if(e.type==="interactive-start")await Nf(e,t,r);else if(e.type==="interactive-stop")await Cf(e,t,r);else throw new Error(`Unknown job type: ${e.type}`);console.log(`[Queue] Job ${e.id} completed successfully`)}catch(s){throw console.error(`[Queue] Job ${e.id} failed:`,s),s}}async function yf(e,t,r){var y,x,w,b;const{projectSlug:s,commitSha:a,entityShas:o}=e;if(!a)throw new Error("Analysis job missing commitSha");const i=o||[],{project:l}=await Oe(s);await Co(s),await Er(s,{update:v=>console.log(`[Queue] ${v}`)});const c=Ls(s),p={...await tn(),PROJECT_SLUG:s,USE_WORKER_THREADS:"true",COMMIT_SHA:a,CODEYAM_LOCAL_PROJECT_PATH:t,SQLITE_PATH:nn(),...i.length>0?{ENTITY_SHAS:i.join(",")}:{},...e.onlyDataStructure?{ONLY_DATA_STRUCTURE:"true"}:{},...c?{ANALYZER_VERSION:c}:{},...process.env.CODEYAM_TRACE_TRANSFORMS?{CODEYAM_TRACE_TRANSFORMS:process.env.CODEYAM_TRACE_TRANSFORMS}:{}},u=(x=(y=l.metadata)==null?void 0:y.webapps)==null?void 0:x[0];if(!u)throw new Error("No webapps found in project metadata");const h=e.onlyDataStructure,m={packageManager:((w=l.metadata)==null?void 0:w.packageManager)||"npm",absoluteProjectRootPath:jt(s),port:0,noServer:!0,framework:u.framework,...h?{}:{orchestrateCapture:"local-sequential"}},f=Gn(s,p,m),g=v=>{try{return process.kill(v,0),!0}catch{return!1}};await qt({commitSha:a,runStatusUpdate:{currentEntityShas:i,entityCount:i.length||((b=e.filePaths)==null?void 0:b.length)||0,analysesCompleted:0,capturesCompleted:0,createdAt:new Date().toISOString(),analyzerPid:f.process.pid}}),r==null||r.notifyChange("commit");try{try{const v=new Promise((N,k)=>setTimeout(()=>k(new Error("Analysis timed out after 60 minutes")),36e5));await Promise.race([f.promise,v]),await qt({commitSha:a,runStatusUpdate:{analyzerPid:void 0,capturePid:void 0},archiveCurrentRun:!0}),r==null||r.notifyChange("commit"),await qt({commitSha:a,runStatusUpdate:{currentEntityShas:[]}}),r==null||r.notifyChange("commit"),await new Promise(N=>setTimeout(N,2e3))}finally{if(f.process.pid)try{g(f.process.pid)&&await br(f.process.pid,()=>{})}catch{}}}catch(v){if(console.error(`[Queue] Analysis job ${e.id} failed:`,v),f.process.pid&&g(f.process.pid))try{await br(f.process.pid,()=>{})}catch{}try{await qt({commitSha:a,runStatusUpdate:{analyzerPid:void 0,capturePid:void 0,failedAt:new Date().toISOString(),failureReason:v instanceof Error?v.message:String(v)}}),r==null||r.notifyChange("commit")}catch(N){console.error("[Queue] Failed to update commit metadata after job failure:",N)}throw v}}async function xf(e,t,r){var m,f,g;const{projectSlug:s,commitSha:a}=e;if(!a)throw new Error("Baseline job missing commitSha");console.log(`[Queue] Starting baseline analysis for ${s}`);const{project:o}=await Oe(s);await Co(s),await Er(s,{update:y=>console.log(`[Queue] ${y}`)});const i=Ls(s),l={...await tn(),PROJECT_SLUG:s,USE_WORKER_THREADS:"true",BRANCH_COMMIT_SHA:a,CODEYAM_LOCAL_PROJECT_PATH:t,SQLITE_PATH:nn(),...i?{ANALYZER_VERSION:i}:{}},c=(f=(m=o.metadata)==null?void 0:m.webapps)==null?void 0:f[0];if(!c)throw new Error("No webapps found in project metadata");const p={packageManager:((g=o.metadata)==null?void 0:g.packageManager)||"npm",absoluteProjectRootPath:jt(s),port:0,noServer:!0,framework:c.framework,orchestrateCapture:"local-sequential"},u=Gn(s,l,p),h=y=>{try{return process.kill(y,0),!0}catch{return!1}};await qt({commitSha:a,runStatusUpdate:{createdAt:new Date().toISOString(),analyzerPid:u.process.pid}}),r==null||r.notifyChange("commit");try{const y=new Promise((x,w)=>setTimeout(()=>w(new Error("Baseline timed out after 4 hours")),144e5));await Promise.race([u.promise,y]),await qt({commitSha:a,runStatusUpdate:{analyzerPid:void 0,capturePid:void 0},archiveCurrentRun:!0}),r==null||r.notifyChange("commit"),console.log(`[Queue] Baseline completed for ${s}`),await new Promise(x=>setTimeout(x,2e3))}finally{if(u.process.pid)try{h(u.process.pid)&&await br(u.process.pid,()=>{})}catch{}}}async function bf(e,t,r){var f,g,y,x;const{projectSlug:s,analysisId:a,scenarioId:o,defaultWidth:i}=e;if(!a)throw new Error("Recapture job missing analysisId");const l=await Jt({id:a,includeScenarios:!0,includeCommitAndBranch:!0});if(!l||!l.commit)throw new Error(`Analysis ${a} not found`);if(i){const{getDatabase:w}=await import("./index-DxB0pOSt.js"),b=w(),v=await b.selectFrom("entities").select(["metadata"]).where("sha","=",l.entitySha).executeTakeFirst();let N={};v!=null&&v.metadata&&(typeof v.metadata=="string"?N=JSON.parse(v.metadata):N=v.metadata),N.defaultWidth=i,await b.updateTable("entities").set({metadata:JSON.stringify(N)}).where("sha","=",l.entitySha).execute()}await Jn(a,w=>{if(w.readyToBeCaptured=!0,w.scenarios)for(const b of w.scenarios)(!o||b.name===o)&&(delete b.finishedAt,delete b.startedAt,delete b.screenshotStartedAt,delete b.screenshotFinishedAt,delete b.interactiveStartedAt,delete b.interactiveFinishedAt,delete b.error,delete b.errorStack);delete w.finishedAt});const{project:c}=await Oe(s);await Er(s,{update:w=>console.log(`[Queue] ${w}`)});const p=Ls(s),u={...await tn(),PROJECT_SLUG:s,USE_WORKER_THREADS:"true",COMMIT_SHA:l.commit.sha,CODEYAM_LOCAL_PROJECT_PATH:t,SQLITE_PATH:nn(),READY_TO_BE_CAPTURED:"true",ANALYSIS_IDS:a,...o?{SCENARIO_IDS:o}:{},...p?{ANALYZER_VERSION:p}:{}},h={packageManager:((f=c.metadata)==null?void 0:f.packageManager)||"npm",absoluteProjectRootPath:jt(s),port:void 0,noServer:!0,framework:((x=(y=(g=c.metadata)==null?void 0:g.webapps)==null?void 0:y[0])==null?void 0:x.framework)??et.Next,orchestrateCapture:"local-sequential"},m=Gn(s,u,h);try{await m.promise}finally{try{m.process.kill("SIGTERM")}catch{}}}async function wf(e,t,r){var f,g,y,x;const{projectSlug:s,analysisId:a,scenarioId:o,defaultWidth:i}=e;if(!a)throw new Error("Capture-only job missing analysisId");const l=await Jt({id:a,includeScenarios:!0,includeCommitAndBranch:!0});if(!l||!l.commit)throw new Error(`Analysis ${a} not found`);if(i){const{getDatabase:w}=await import("./index-DxB0pOSt.js"),b=w(),v=await b.selectFrom("entities").select(["metadata"]).where("sha","=",l.entitySha).executeTakeFirst();let N={};v!=null&&v.metadata&&(typeof v.metadata=="string"?N=JSON.parse(v.metadata):N=v.metadata),N.defaultWidth=i,await b.updateTable("entities").set({metadata:JSON.stringify(N)}).where("sha","=",l.entitySha).execute()}await Jn(a,w=>{if(w.readyToBeCaptured=!0,w.scenarios)for(const b of w.scenarios)(!o||b.name===o)&&(delete b.finishedAt,delete b.startedAt,delete b.screenshotStartedAt,delete b.screenshotFinishedAt,delete b.interactiveStartedAt,delete b.interactiveFinishedAt,delete b.error,delete b.errorStack);delete w.finishedAt});const{project:c}=await Oe(s);await Er(s,{update:w=>console.log(`[Queue] ${w}`)});const p=Ls(s);console.log("[Queue] executeCaptureOnlyJob: Setting CAPTURE_ONLY=true for capture without file regeneration");const u={...await tn(),PROJECT_SLUG:s,USE_WORKER_THREADS:"true",COMMIT_SHA:l.commit.sha,CODEYAM_LOCAL_PROJECT_PATH:t,SQLITE_PATH:nn(),READY_TO_BE_CAPTURED:"true",CAPTURE_ONLY:"true",ANALYSIS_IDS:a,...o?{SCENARIO_IDS:o}:{},...p?{ANALYZER_VERSION:p}:{}},h={packageManager:((f=c.metadata)==null?void 0:f.packageManager)||"npm",absoluteProjectRootPath:jt(s),port:void 0,noServer:!0,fast:!0,framework:((x=(y=(g=c.metadata)==null?void 0:g.webapps)==null?void 0:y[0])==null?void 0:x.framework)??et.Next,orchestrateCapture:"local-sequential"},m=Gn(s,u,h);try{await m.promise}finally{try{m.process.kill("SIGTERM")}catch{}}}async function vf(e,t,r){var m,f,g,y;const{projectSlug:s,analysisId:a,scenarioId:o}=e;if(!a)throw new Error("Debug setup job missing analysisId");const i=await Jt({id:a,includeScenarios:!0,includeCommitAndBranch:!0});if(!i||!i.commit)throw new Error(`Analysis ${a} not found`);const{project:l}=await Oe(s);await Co(s),await Er(s,{update:x=>console.log(`[Queue] ${x}`)});const c={...await tn(),PROJECT_SLUG:s,USE_WORKER_THREADS:"true",COMMIT_SHA:i.commit.sha,CODEYAM_LOCAL_PROJECT_PATH:t,SQLITE_PATH:nn(),READY_TO_BE_CAPTURED:"true",ANALYSIS_IDS:a,PREP_ONLY:"true"};o&&(c.SCENARIO_IDS=o);const p={packageManager:((m=l.metadata)==null?void 0:m.packageManager)||"npm",absoluteProjectRootPath:jt(s),port:void 0,noServer:!1,framework:((y=(g=(f=l.metadata)==null?void 0:f.webapps)==null?void 0:g[0])==null?void 0:y.framework)||et.Next},h=await Gn(s,c,p).promise;if(h!==0)throw new Error(`Prep process exited with code ${h}`)}async function Nf(e,t,r){var x,w,b,v;const{projectSlug:s,analysisId:a,scenarioId:o}=e;if(!a)throw new Error("Interactive start job missing analysisId");const i=await Jt({id:a,includeScenarios:!0,includeCommitAndBranch:!0});if(!i||!i.commit)throw new Error(`Analysis ${a} not found`);const{project:l}=await Oe(s),c={...await tn(),PROJECT_SLUG:s,USE_WORKER_THREADS:"true",COMMIT_SHA:i.commit.sha,CODEYAM_LOCAL_PROJECT_PATH:t,SQLITE_PATH:nn(),READY_TO_BE_CAPTURED:"true",ANALYSIS_IDS:a,INTERACTIVE_MODE:"true"};o&&(c.SCENARIO_IDS=o);const p=jt(s),u=ee.join(p,".next","dev","lock");if(ce.existsSync(u)){console.log("[Queue] Found stale .next/dev/lock, cleaning up old processes");try{const N=Ie(`pgrep -f ${JSON.stringify(p)} 2>/dev/null || true`,{encoding:"utf-8"}).trim();if(N)for(const k of N.split(`
|
|
42
|
+
`).filter(Boolean))try{process.kill(parseInt(k,10),"SIGTERM"),console.log(`[Queue] Killed stale process ${k}`)}catch{}}catch{}try{ce.unlinkSync(u),console.log("[Queue] Removed stale lock file")}catch{}}const h=ce.existsSync(p)&&ce.existsSync(ee.join(p,"package.json")),m={packageManager:((x=l.metadata)==null?void 0:x.packageManager)||"npm",absoluteProjectRootPath:p,port:void 0,noServer:!1,fast:h,framework:((v=(b=(w=l.metadata)==null?void 0:w.webapps)==null?void 0:b[0])==null?void 0:v.framework)||et.Next};await Jn(a,N=>{N.readyToBeCaptured=!0});const f=Gn(s,c,m);await ac(a,N=>{N.interactiveMode={pid:f.process.pid,startedAt:new Date().toISOString(),jobId:e.id}}),console.log(`[Queue] Interactive mode started for analysis ${a}, PID: ${f.process.pid}`);const g=jt(s),y=new Fa({projectRootPath:t,tmpProjectPath:g});y.on("sync",N=>{N.type==="file-synced"?ji.emitFileSynced(N.fileName,N.filePath):N.type==="error"&&ji.emitError(N.fileName,N.filePath)}),y.start(),za.set(a,y),console.log(`[Queue] File sync watcher started for analysis ${a}`)}async function Cf(e,t,r){var p;const{projectSlug:s,analysisId:a}=e;if(!a)throw new Error("Interactive stop job missing analysisId");const o=await Jt({id:a,includeScenarios:!0,includeCommitAndBranch:!0});if(!o)throw new Error(`Analysis ${a} not found`);const i=(p=o.metadata)==null?void 0:p.interactiveMode;if(!(i!=null&&i.pid)){console.log(`[Queue] No interactive mode process found for analysis ${a}`);return}const l=za.get(a);l&&(l.stop(),za.delete(a),console.log(`[Queue] File sync watcher stopped for analysis ${a}`));const c=i.pid;console.log(`[Queue] Stopping interactive mode for analysis ${a}, killing PID: ${c}`);try{try{process.kill(c,0)}catch{console.log(`[Queue] Process ${c} already exited`);return}await br(c,()=>{}),console.log(`[Queue] Successfully killed interactive mode process ${c}`)}catch(u){throw console.error(`[Queue] Failed to kill process ${c}:`,u),u}finally{await ac(a,u=>{u.interactiveMode=null})}}class Sf{constructor(t,r){this.processing=!1,this.completionCallbacks=new Map,this.completedJobs=new Map,this.projectRoot=t,this.state={paused:!1,jobs:[]},r&&(typeof r=="function"?this.notifier={notifyChange:()=>r()}:this.notifier=r)}start(){this.state=pr(this.projectRoot),this.state.currentlyExecuting&&(console.log(`[Queue] Clearing stale currentlyExecuting job from previous session: ${this.state.currentlyExecuting.id}`),this.state.currentlyExecuting=void 0,this.save()),this.state.jobs.length>0?(this.state.paused=!0,this.save(),console.log(`[Queue] Found ${this.state.jobs.length} queued jobs from previous session (paused)`)):this.state.paused=!1}enqueue(t){const r=t.commitSha||uo(),s={...t,id:r,queuedAt:new Date().toISOString()};this.state.jobs.push(s),this.save(),console.log(`[Queue] Enqueued job ${r} (${s.type})`);const a=new Promise((o,i)=>{this.completionCallbacks.set(r,l=>{l?i(l):o()})});return this.state.paused||this.processNext().catch(o=>{console.error("[Queue] ERROR in processNext():",o)}),{jobId:r,completion:a}}resume(){console.log("[Queue] Resuming queue"),this.state.paused=!1,this.save(),this.processNext()}pause(){console.log("[Queue] Pausing queue"),this.state.paused=!0,this.save()}getState(){return{...this.state}}getJobResult(t){return this.completedJobs.get(t)}removeJob(t){const r=this.state.jobs.length;this.state.jobs=this.state.jobs.filter(a=>a.id!==t);const s=this.state.jobs.length<r;if(s){console.log(`[Queue] Removed job ${t}`),this.save();const a=this.completionCallbacks.get(t);a&&(setImmediate(()=>a(new Error("Job cancelled by user"))),this.completionCallbacks.delete(t))}else console.log(`[Queue] Job ${t} not found in queue`);return s}clearQueue(){const t=this.state.jobs.length;return t===0?0:(this.state.jobs.forEach(r=>{const s=this.completionCallbacks.get(r.id);s&&(setImmediate(()=>s(new Error("Job cancelled by user"))),this.completionCallbacks.delete(r.id))}),this.state.jobs=[],console.log(`[Queue] Cleared ${t} jobs`),this.save(),t)}reorderJob(t,r){const s=this.state.jobs.findIndex(i=>i.id===t);if(s===-1)return console.log(`[Queue] Job ${t} not found in queue`),!1;const a=r==="up"?s-1:s+1;if(a<0||a>=this.state.jobs.length)return console.log(`[Queue] Cannot move job ${t} ${r}: at boundary`),!1;const o=this.state.jobs[s];return this.state.jobs[s]=this.state.jobs[a],this.state.jobs[a]=o,console.log(`[Queue] Moved job ${t} ${r} (position ${s} -> ${a})`),this.save(),!0}async processNext(){if(this.state.paused||this.processing)return;if(this.state.jobs.length===0){console.log("[Queue] No jobs to process");return}this.processing=!0;const t=this.state.jobs[0];console.log(`[Queue] Starting job ${t.id} (${t.type})`);try{this.state.currentlyExecuting=this.state.jobs.shift(),this.save(),await gf(t,this.projectRoot,this.notifier),this.state.currentlyExecuting=void 0,this.save(),this.completedJobs.set(t.id,{id:t.id,status:"success",completedAt:new Date().toISOString()});const r=this.completionCallbacks.get(t.id);r&&(r(),this.completionCallbacks.delete(t.id)),console.log(`[Queue] Job ${t.id} completed successfully`)}catch(r){console.error(`[Queue] Job ${t.id} failed:`,r),this.state.currentlyExecuting=void 0,this.save(),this.completedJobs.set(t.id,{id:t.id,status:"error",error:(r==null?void 0:r.message)||"Unknown error",completedAt:new Date().toISOString()});const s=this.completionCallbacks.get(t.id);s&&(s(r),this.completionCallbacks.delete(t.id))}finally{this.processing=!1,!this.state.paused&&this.state.jobs.length>0&&setImmediate(()=>void this.processNext())}}save(){mf(this.projectRoot,this.state),this.notifier&&this.notifier.notifyChange("queue")}}class _f{constructor(t,r,s=100){this.watcher=null,this.debounceTimer=null,this.projectRoot=t,this.onChange=r,this.debounceMs=s}start(){const t=bs(this.projectRoot);if(!K.existsSync(t)){console.log("[QueueFileWatcher] Queue file does not exist yet, will start watching when created"),this.watchDirectory();return}this.watchFile(t)}watchDirectory(){const t=bs(this.projectRoot),r=t.substring(0,t.lastIndexOf("/"));try{this.watcher=K.watch(r,(s,a)=>{a==="queue.json"&&(this.stop(),this.watchFile(t),this.notifyChange())}),console.log("[QueueFileWatcher] Watching .codeyam directory for queue.json creation")}catch(s){console.error("[QueueFileWatcher] Failed to watch directory:",s)}}watchFile(t){try{this.watcher=K.watch(t,r=>{r==="change"&&this.notifyChange()}),console.log("[QueueFileWatcher] Watching queue.json for changes")}catch(r){console.error("[QueueFileWatcher] Failed to watch queue file:",r)}}notifyChange(){this.debounceTimer&&clearTimeout(this.debounceTimer),this.debounceTimer=setTimeout(()=>{this.onChange(),this.debounceTimer=null},this.debounceMs)}stop(){this.watcher&&(this.watcher.close(),this.watcher=null),this.debounceTimer&&(clearTimeout(this.debounceTimer),this.debounceTimer=null)}}class kf{constructor(t,r,s){this.fileWatcher=null,this.serverInfo=t,this.projectRoot=r,this.onStateChange=s,this.cachedState=pr(r)}start(){this.cachedState=pr(this.projectRoot),console.log(`[ProxyQueue] Connected to background server at ${this.serverInfo.url}`),console.log(`[ProxyQueue] Current queue has ${this.cachedState.jobs.length} jobs`),this.fileWatcher=new _f(this.projectRoot,()=>{console.log("[ProxyQueue] Detected queue.json change from background server"),this.refreshState()}),this.fileWatcher.start()}enqueue(t){let r,s;const a=new Promise((i,l)=>{r=i,s=l}),o=`proxy-${Date.now()}-${Math.random().toString(36).slice(2)}`;return this.enqueueRemote(t).then(i=>{console.log(`[ProxyQueue] Job enqueued on background server: ${i.jobId}`),this.refreshState(),r()}).catch(i=>{console.error("[ProxyQueue] Failed to enqueue job:",i),s(i)}),{jobId:o,completion:a}}async enqueueRemote(t){const r=await fetch(`${this.serverInfo.url}/api/queue`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({action:"enqueue",...t})});if(!r.ok){const s=await r.text();throw new Error(`Failed to enqueue: ${r.status} ${s}`)}return r.json()}resume(){console.log("[ProxyQueue] Sending resume command to background server"),this.sendAction("resume").catch(t=>{console.error("[ProxyQueue] Failed to resume:",t)})}pause(){console.log("[ProxyQueue] Sending pause command to background server"),this.sendAction("pause").catch(t=>{console.error("[ProxyQueue] Failed to pause:",t)})}async sendAction(t){const r=await fetch(`${this.serverInfo.url}/api/queue`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({action:t})});if(!r.ok){const s=await r.text();throw new Error(`Failed to ${t}: ${r.status} ${s}`)}this.refreshState()}getState(){return this.cachedState=pr(this.projectRoot),{...this.cachedState}}refreshState(){this.cachedState=pr(this.projectRoot),this.onStateChange&&this.onStateChange()}async isServerAlive(){try{const t=new AbortController,r=setTimeout(()=>t.abort(),2e3),s=await fetch(`${this.serverInfo.url}/api/health`,{signal:t.signal});return clearTimeout(r),s.ok}catch{return!1}}getServerInfo(){return{...this.serverInfo}}stop(){this.fileWatcher&&(this.fileWatcher.stop(),this.fileWatcher=null)}}function Ef(e){const t=L.join(e,".codeyam","server.json");if(!K.existsSync(t))return null;try{const r=K.readFileSync(t,"utf8");return JSON.parse(r)}catch{return null}}function Af(e){try{return process.kill(e,0),!0}catch{return!1}}async function Pf(e){try{const t=new AbortController,r=setTimeout(()=>t.abort(),2e3),s=await fetch(`${e}/api/health`,{signal:t.signal});return clearTimeout(r),s.ok}catch{return!1}}async function jf(e){const t=Ef(e);return!t||!Af(t.pid)||!await Pf(t.url)?null:{url:t.url,port:t.port,pid:t.pid}}class Tf extends _r{constructor(){super();Ft(this,"watcher",null);Ft(this,"dbPath",null);Ft(this,"isWatching",!1);this.setMaxListeners(20)}async start(){if(!this.isWatching)try{this.dbPath=nn();const{default:r}=await import("chokidar"),s=[this.dbPath,`${this.dbPath}-wal`,`${this.dbPath}-shm`];this.watcher=r.watch(s,{persistent:!0,ignoreInitial:!0,usePolling:!0,interval:1e3}),this.watcher.on("change",a=>{const o=Date.now(),i=new Date(o).toISOString();console.log("[dbNotifier] ========================================"),console.log(`[dbNotifier] Database file changed: ${a}`),console.log(`[dbNotifier] Timestamp: ${i} (${o})`),console.log(`[dbNotifier] Listeners count: ${this.listenerCount("change")}`),console.log("[dbNotifier] ========================================"),this.emit("change",{type:"unknown",timestamp:o})}).on("error",a=>{console.error("Database watcher error:",a),this.emit("error",a)}),this.isWatching=!0}catch(r){console.error("Failed to start database watcher:",r),this.emit("error",r)}}notifyChange(r="unknown"){const s=Date.now(),a=new Date(s).toISOString();console.log("[dbNotifier] ========================================"),console.log("[dbNotifier] Manual notification triggered"),console.log(`[dbNotifier] Change type: ${r}`),console.log(`[dbNotifier] Timestamp: ${a} (${s})`),console.log(`[dbNotifier] Listeners count: ${this.listenerCount("change")}`),console.log("[dbNotifier] ========================================"),this.emit("change",{type:r,timestamp:s})}stop(){this.watcher&&(this.watcher.close(),this.watcher=null,this.isWatching=!1,console.log("Database watcher stopped"))}}const vt=new Tf;let hn=null,hr=null;async function Mf(){if(!hn){if(hr){await hr;return}hr=(async()=>{try{const e=process.env.CODEYAM_ROOT_PATH||oc()||process.cwd();if(Sm(e),console.log(`[GlobalQueue] Project root: ${e}`),await Ue(),process.env.NODE_ENV==="development")try{const r=ee.join(e,".codeyam","config.json"),a=JSON.parse(await ce.promises.readFile(r,"utf8")).projectSlug;a&&(await Ln({projectSlug:a,metadataUpdate:{labs:{accessGranted:!0,simulations:!0}}}),console.log("[GlobalQueue] Labs & Simulations auto-enabled for dev mode"))}catch(r){console.warn("[GlobalQueue] Could not auto-enable labs:",r)}const t=await jf(e);if(t){console.log(`[GlobalQueue] Detected background server at ${t.url} (PID: ${t.pid})`),console.log("[GlobalQueue] Using proxy queue");const r=new kf(t,e,()=>{vt.notifyChange("unknown")});await r.start(),hn=r}else{console.log("[GlobalQueue] No background server detected, using local queue");const r=new Sf(e,vt);await r.start(),hn=r}console.log("[GlobalQueue] Queue initialized")}catch(e){throw console.error("[GlobalQueue] Failed to initialize queue:",e),e}})(),await hr}}async function Ht(){return hn||await Mf(),hn}function $f(){return hn||(hr&&console.warn("[GlobalQueue] Queue still initializing, loader may see empty state"),null)}const If=()=>[{rel:"stylesheet",href:of},{rel:"icon",type:"image/x-icon",href:"/favicon.ico"}],Rf={currentRun:void 0,projectSlug:null,currentEntities:[],availableAPIKeys:[],queuedJobCount:0,queueJobs:[],currentlyExecuting:null,historicalRuns:[],isServerOutOfDate:!1,serverVersion:"unknown",npmUpdate:null,labs:null,simulationsEnabled:!1,isSimulationsReady:!1,isAdmin:!1,editorMode:!1,displayVersion:_o()};async function Df({request:e,context:t}){var r,s,a,o,i,l,c,p,u,h,m;try{const f=e.signal,g=()=>{if(f.aborted)throw new Response(null,{status:499})};g();const y=we()||process.cwd(),[x,w,b]=await Promise.all([ze(),Rs(y),hf().catch(()=>null)]);if(!x)throw new Error("Project slug not found");const{project:v,branch:N}=await Oe(x);g();const k=await fs({projectId:v.id,branchId:N.id,limit:20,skipRelations:!0});g();const E=k.length>0?k[0]:null,C=t.analysisQueue||$f(),S=C==null?void 0:C.getState();g();const _=await Promise.all(((S==null?void 0:S.jobs)||[]).map(async q=>{var le;const re=await Jr(q.entityShas||[]);return re.length===0&&((le=q.entityShas)!=null&&le.length)&&console.warn("[Loader] Entity fetch timeout/failed for job",q.id),{...q,entities:re}}));let j=null;if(S!=null&&S.currentlyExecuting){const q=S.currentlyExecuting,re=await Jr(q.entityShas||[]);re.length===0&&((r=q.entityShas)!=null&&r.length)&&console.warn("[Loader] Entity fetch timeout/failed for currentlyExecuting",q.id),j={...q,entities:re}}const $=j?_.filter(q=>q.id!==j.id):_;let P=((a=(s=E==null?void 0:E.metadata)==null?void 0:s.currentRun)==null?void 0:a.currentEntityShas)||[];if(P.length===0){const q=((o=E==null?void 0:E.metadata)==null?void 0:o.historicalRuns)||[];if(q.length>0){const le=[...q].sort((he,oe)=>{const ge=he.archivedAt||he.createdAt||"";return(oe.archivedAt||oe.createdAt||"").localeCompare(ge)})[0];if(le){const he=le.analysisCompletedAt||le.createdAt;if(he){const oe=new Date(he).getTime(),_e=Date.now()-1440*60*1e3;oe>_e&&(P=le.currentEntityShas||[])}}}}const I=await Jr(P),R=[];w.ANTHROPIC_API_KEY&&R.push("ANTHROPIC_API_KEY"),w.GROQ_API_KEY&&R.push("GROQ_API_KEY"),w.OPENAI_API_KEY&&R.push("OPENAI_API_KEY"),w.OPENROUTER_API_KEY&&R.push("OPENROUTER_API_KEY"),g();const T=[];for(const q of k){const re=((i=q.metadata)==null?void 0:i.historicalRuns)||[];for(const le of re)T.push(le)}T.sort((q,re)=>{const le=q.archivedAt||q.analysisCompletedAt||q.createdAt||"";return(re.archivedAt||re.analysisCompletedAt||re.createdAt||"").localeCompare(le)});const G=new Set(((l=j==null?void 0:j.entities)==null?void 0:l.map(q=>q.sha))||[]),F=T.filter(q=>!(q.currentEntityShas||[]).some(le=>G.has(le))).slice(0,3),H=new Set;for(const q of F)for(const re of q.currentEntityShas||[])H.add(re);const U=await Jr(Array.from(H)),z=new Map;for(const q of U)z.set(q.sha,q);const A=F.map(q=>({...q,entities:(q.currentEntityShas||[]).map(re=>z.get(re)).filter(re=>re!=null)})),Y=zs(),V=(Y==null?void 0:Y.cliVersion)??"unknown",W=V!=="unknown"&&V!==So,Q=((p=(c=v.metadata)==null?void 0:c.labs)==null?void 0:p.simulations)??!1,B=Q?ef():!1,D=((u=v.metadata)==null?void 0:u.editorMode)??!1,O={currentRun:(h=E==null?void 0:E.metadata)==null?void 0:h.currentRun,projectSlug:x,currentEntities:I,availableAPIKeys:R,queuedJobCount:$.length,queueJobs:$,currentlyExecuting:j,historicalRuns:A,isServerOutOfDate:W,serverVersion:V,npmUpdate:b!=null&&b.updateAvailable&&b.latestVersion?{latestVersion:b.latestVersion,currentVersion:b.currentVersion}:null,labs:((m=v.metadata)==null?void 0:m.labs)??null,simulationsEnabled:Q,isSimulationsReady:B,isAdmin:!!process.env.CODEYAM_ADMIN,editorMode:D,displayVersion:_o()};return X(O)}catch(f){return f instanceof Response&&f.status===499||console.error("Failed to load root data:",f),X(Rf)}}function Of(){const{currentRun:e,projectSlug:t,currentEntities:r,availableAPIKeys:s,queuedJobCount:a,queueJobs:o,currentlyExecuting:i,historicalRuns:l,isServerOutOfDate:c,serverVersion:p,npmUpdate:u,labs:h,simulationsEnabled:m,isSimulationsReady:f,isAdmin:g,editorMode:y,displayVersion:x}=tt(),{toasts:w,closeToast:b}=xo(),v=Yt(),N=fe(v),k=Cr(),E=fe(k.pathname);se(()=>{N.current=v},[v]),se(()=>{E.current=k.pathname},[k.pathname]);const C=k.pathname.startsWith("/entity/")&&k.pathname.includes("/edit/")||k.pathname.startsWith("/dev/")||k.pathname.startsWith("/editor"),S=k.pathname.includes("/fullscreen")||k.pathname.startsWith("/editor");return se(()=>{let _=null,j=null,$=0;function P(){_||(_=new EventSource("/api/events"),_.addEventListener("message",T=>{const G=JSON.parse(T.data);(G.type==="queue"||G.type==="db-change")&&G.type;const J=Tp(E.current),F=Mp({now:Date.now(),lastRevalidation:$,throttleMs:J});F==="immediate"?(N.current.revalidate(),$=Date.now()):(j&&clearTimeout(j),j=setTimeout(()=>{N.current.revalidate(),$=Date.now(),j=null},F.delayMs))}),_.addEventListener("error",()=>{}))}function I(){j&&(clearTimeout(j),j=null),_&&(_.close(),_=null)}function R(){document.hidden?I():(P(),N.current.revalidate())}return document.hidden||P(),document.addEventListener("visibilitychange",R),()=>{document.removeEventListener("visibilitychange",R),I()}},[]),d(ye,{children:[d("div",{className:`min-h-screen ${C?"":"grid"} bg-cygray-10`,style:C?void 0:{gridTemplateColumns:"65px minmax(0, 1fr)"},children:[!C&&n(Fp,{labs:h,isAdmin:g,editorMode:y}),d("div",{className:"max-h-screen overflow-auto bg-cygray-10 flex flex-col min-h-screen",children:[c&&n(cf,{serverVersion:p}),u&&u.currentVersion&&n(df,{currentVersion:u.currentVersion,latestVersion:u.latestVersion}),m&&s.length===0&&n(Pi,{text:"No AI API keys configured. Please provide an AI API key at your earliest convenience.",subtext:"An API key is required for stable, frequent use of CodeYam",linkText:"Configure API Keys",linkTo:"/settings"}),m&&!f&&n(Pi,{text:"Simulations enabled but not yet configured",subtext:"Run /codeyam-setup in Claude Code to install the analyzer and configure your dev server",linkText:"View Labs",linkTo:"/labs"}),n("div",{className:"flex-1",children:n(Dl,{})}),n(lf,{version:x})]})]}),n(Bp,{toasts:w,onClose:b}),!S&&m&&n(Yp,{currentRun:e,projectSlug:t,currentEntities:r,isAnalysisStarting:!1,queuedJobCount:a,queueJobs:o,currentlyExecuting:i,historicalRuns:l})]})}const Ff=Qe(function(){return d("html",{lang:"en",children:[d("head",{children:[n("meta",{charSet:"utf-8"}),n("meta",{name:"viewport",content:"width=device-width,initial-scale=1"}),n(uu,{}),n(pu,{})]}),d("body",{children:[n(Lp,{children:n(Dp,{children:n(Of,{})})}),n(hu,{}),n(mu,{})]})]})});function Lf(e){if(e instanceof TypeError&&/fetch/i.test(e.message)||e instanceof Error&&/fetch/i.test(e.message))return!0;const t=String(e);return/failed to fetch|fetch.*failed|load.*chunk/i.test(t)}const zf=fu(function(){const t=gu(),r=!da(t)&&Lf(t),s=da(t)?t.status:500,a=da(t)?t.statusText||"Server Error":"Something went wrong";return d("html",{lang:"en",children:[d("head",{children:[n("meta",{charSet:"utf-8"}),n("meta",{name:"viewport",content:"width=device-width,initial-scale=1"}),d("title",{children:[s," - CodeYam"]})]}),n("body",{style:{margin:0,fontFamily:'"IBM Plex Sans", system-ui, -apple-system, sans-serif',backgroundColor:"#F8F7F6",color:"#232323",display:"flex",alignItems:"center",justifyContent:"center",minHeight:"100vh"},children:d("div",{style:{maxWidth:520,width:"100%",padding:"48px 32px",textAlign:"center"},children:[n("div",{style:{fontSize:64,fontWeight:700,color:"#005C75",lineHeight:1,marginBottom:8},children:s}),n("h1",{style:{fontSize:22,fontWeight:600,margin:"0 0 16px",color:"#232323"},children:a}),r?d("div",{children:[n("p",{style:{fontSize:15,color:"#3E3E3E",lineHeight:1.6,margin:"0 0 24px"},children:"It looks like the CodeYam server is no longer running. This usually happens when the terminal session that started it was closed."}),n("div",{style:{backgroundColor:"#232323",color:"#D7FF63",borderRadius:8,padding:"14px 20px",fontFamily:'"IBM Plex Mono", monospace',fontSize:14,marginBottom:24,display:"inline-block"},children:"codeyam editor"}),n("p",{style:{fontSize:14,color:"#8E8E8E",margin:0},children:"Run this command in your project directory to restart the server, then refresh this page."})]}):d("div",{children:[n("p",{style:{fontSize:15,color:"#3E3E3E",lineHeight:1.6,margin:"0 0 24px"},children:"An unexpected error occurred. Try refreshing the page."}),t instanceof Error&&t.message&&n("pre",{style:{backgroundColor:"#EFEFEF",borderRadius:8,padding:"14px 20px",fontFamily:'"IBM Plex Mono", monospace',fontSize:13,color:"#3E3E3E",textAlign:"left",overflowX:"auto",whiteSpace:"pre-wrap",wordBreak:"break-word",margin:0},children:t.message})]})]})})]})}),Bf=Object.freeze(Object.defineProperty({__proto__:null,ErrorBoundary:zf,default:Ff,links:If,loader:Df},Symbol.toStringTag,{value:"Module"}));function Vr(e){const t=e.replace(/[^a-zA-Z0-9_]+/g,"_");return t.slice(0,1).toUpperCase()+t.slice(1)}function vn({analysisId:e,scenarioId:t,scenarioName:r,entityName:s,projectSlug:a,enabled:o=!0,refreshTrigger:i=0}){const l=Je(),[c,p]=M(null),[u,h]=M(!1),[m,f]=M(!1),[g,y]=M(!1),x=fe(!1),w=fe(null),b=fe(null),v=fe(null),[N,k]=M(0),[E,C]=M(0),S=fe(null),_=fe(!1),{interactiveUrl:j,resetLogs:$}=Ut(a,o),P=fe(t),I=fe(i);se(()=>{I.current!==i&&(I.current=i,c&&(console.log("[useInteractiveMode] Manual refresh triggered"),f(!0),y(!1),k(0),C(T=>T+1),_.current=!1,S.current&&(clearTimeout(S.current),S.current=null)))},[i,c]),se(()=>{if(P.current!==t&&(P.current=t,w.current&&b.current&&r)){let T=w.current;if(v.current&&s){const F=Vr(v.current),H=Vr(s);F!==H&&(T=T.replace(F,H),v.current=s)}const G=Vr(b.current),J=Vr(r);T=T.replace(G,J),b.current=r,p(T),f(!0),y(!1),k(0),C(F=>F+1),_.current=!1,S.current&&(clearTimeout(S.current),S.current=null);return}},[t,r,s]),se(()=>{if(j){const T=j+"?width=600px";w.current=T,r&&(b.current=r),s&&(v.current=s),p(T),h(!1),f(!0)}},[j]),se(()=>{const T=G=>{G.data.type==="codeyam-resize"&&(_.current||(_.current=!0,S.current&&(clearTimeout(S.current),S.current=null),k(0),y(!0),requestAnimationFrame(()=>{requestAnimationFrame(()=>{f(!1)})})))};return window.addEventListener("message",T),()=>window.removeEventListener("message",T)},[]);const R=()=>{_.current=!1,S.current&&clearTimeout(S.current);const T=300*Math.pow(2,N);S.current=setTimeout(()=>{_.current||(N<2?(k(G=>G+1),C(G=>G+1),f(!0)):(console.error("[useInteractiveMode] Interactive mode failed to load after 3 attempts - showing iframe anyway"),y(!0),f(!1)))},T)};return se(()=>{o&&!x.current&&t&&e&&(x.current=!0,h(!0),y(!1),p(null),(async()=>{if(a)try{await fetch(`/api/logs/${a}`,{method:"DELETE"})}catch(G){console.error("[useInteractiveMode] Failed to clear log file:",G)}$(),l.submit({action:"start",analysisId:e,scenarioId:t},{method:"post",action:"/api/interactive-mode"})})())},[o,t,e,$,a]),se(()=>{const T=e,G=()=>{if(x.current&&T){const F=new URLSearchParams({action:"stop",analysisId:T});console.log("[useInteractiveMode] Sending stop request via sendBeacon");const H=navigator.sendBeacon("/api/interactive-mode",F);console.log("[useInteractiveMode] sendBeacon result:",H),H||(console.log("[useInteractiveMode] sendBeacon failed, using fetch fallback"),fetch("/api/interactive-mode",{method:"POST",headers:{"Content-Type":"application/x-www-form-urlencoded"},body:F,keepalive:!0}).catch(U=>console.error("Failed to stop interactive mode:",U)))}},J=()=>{G()};return window.addEventListener("beforeunload",J),()=>{window.removeEventListener("beforeunload",J),console.log("[useInteractiveMode] Cleanup running:",{hasStarted:x.current,analysisId:T}),G()}},[e]),{interactiveServerUrl:c,isStarting:u,isLoading:m,showIframe:g,iframeKey:E,onIframeLoad:R}}const Gr=10,Yf=1024;function Ao({currentViewportWidth:e,currentPresetName:t,onDevicePresetClick:r,devicePresets:s,onHoverChange:a,hideLabel:o=!1,lightMode:i=!1}){const[l,c]=M(null),p=fe(null),u=ae(()=>[...s].sort((b,v)=>b.width-v.width),[s]),{fittingPresets:h,overflowPresets:m}=ae(()=>{const b=[],v=[];for(const N of u)N.width<=Yf?b.push(N):v.push(N);return v.sort((N,k)=>k.width-N.width),{fittingPresets:b,overflowPresets:v}},[u]),f=ie(b=>{if(!p.current)return null;const v=p.current.getBoundingClientRect(),N=b-v.left,k=v.width,E=k/2,S=(h.length>0?h[h.length-1].width:0)/2,_=E-S,j=E+S,$=m.length>0?(m.length-1)*Gr:0;if(m.length>0){if(N<_){if(N<=$){const I=Math.min(Math.floor(N/Gr),m.length-1);return m[I]}return m[m.length-1]}if(N>j){const I=k-N;if(I<=$){const R=Math.min(Math.floor(I/Gr),m.length-1);return m[R]}return m[m.length-1]}}const P=Math.abs(N-E);for(let I=h.length-1;I>=0;I--){const R=h[I],T=h[I-1],G=R.width/2,J=T?T.width/2:0;if(P<=G&&P>=J)return R}return h[0]||m[m.length-1]||null},[h,m]),g=ie(b=>{const v=f(b.clientX);c(v),a==null||a(v)},[f,a]),y=ie(()=>{c(null),a==null||a(null)},[a]),x=ie(b=>{const v=f(b.clientX);v&&r(v)},[f,r]),w=l||{name:t,width:e};return d("div",{ref:p,className:"relative h-6 shrink-0 overflow-hidden cursor-pointer",onMouseMove:g,onMouseLeave:y,onClick:x,children:[l&&n("div",{className:"absolute inset-0 flex items-center justify-center pointer-events-none",children:n("div",{className:"h-full transition-all duration-100 bg-[#005C75]",style:{width:`${l.width}px`}})}),n("div",{className:"absolute inset-0 pointer-events-none",children:h.map(b=>{const v=b.width===e,N=(l==null?void 0:l.name)===b.name,k=b.width/2;return d("div",{children:[n("div",{className:"absolute top-0 bottom-0",style:{left:`calc(50% - ${k}px)`},children:n("div",{className:`w-0.5 h-full transition-colors duration-75 ${v||N?i?"bg-gray-900":"bg-white":i?"bg-[rgba(0,0,0,0.2)]":"bg-[rgba(255,255,255,0.3)]"}`})}),n("div",{className:"absolute top-0 bottom-0",style:{left:`calc(50% + ${k}px)`},children:n("div",{className:`w-0.5 h-full transition-colors duration-75 ${v||N?i?"bg-gray-900":"bg-white":i?"bg-[rgba(0,0,0,0.2)]":"bg-[rgba(255,255,255,0.3)]"}`})})]},b.name)})}),n("div",{className:"absolute inset-0 pointer-events-none",children:m.map((b,v)=>{const N=v*Gr,k=b.width===e,E=(l==null?void 0:l.name)===b.name;return d("div",{children:[n("div",{className:"absolute top-0 bottom-0",style:{left:`${N}px`},children:n("div",{className:`w-0.5 h-full transition-colors duration-75 ${k||E?i?"bg-gray-900":"bg-white":i?"bg-[rgba(0,0,0,0.2)]":"bg-[rgba(255,255,255,0.3)]"}`})}),n("div",{className:"absolute top-0 bottom-0",style:{right:`${N}px`},children:n("div",{className:`w-0.5 h-full transition-colors duration-75 ${k||E?i?"bg-gray-900":"bg-white":i?"bg-[rgba(0,0,0,0.2)]":"bg-[rgba(255,255,255,0.3)]"}`})})]},b.name)})}),!o&&n("div",{className:"absolute inset-0 flex items-center justify-center pointer-events-none",children:d("div",{className:`text-[10px] px-2 py-0.5 rounded shadow-sm whitespace-nowrap transition-colors ${l?"bg-[#005c75] text-white":"bg-white/90 text-[#005c75] border border-[rgba(0,92,117,0.25)]"}`,children:[w.name," - ",w.width,"px"]})})]})}function Uf({currentWidth:e,currentHeight:t,devicePresets:r,customSizes:s,onApply:a,onSave:o,onRemove:i,onClose:l}){const[c,p]=M(String(e)),[u,h]=M(String(t)),[m,f]=M(""),[g,y]=M(!1),x=fe(null),w=fe(null);se(()=>{const _=j=>{x.current&&!x.current.contains(j.target)&&l()};return document.addEventListener("mousedown",_),()=>document.removeEventListener("mousedown",_)},[l]),se(()=>{const _=j=>{j.key==="Escape"&&l()};return document.addEventListener("keydown",_),()=>document.removeEventListener("keydown",_)},[l]),se(()=>{var _;(_=w.current)==null||_.select()},[]);const b=parseInt(c,10),v=parseInt(u,10),N=b>0&&v>0,k=N&&(b!==e||v!==t),E=()=>{N&&(a({name:"Custom",width:b,height:v}),l())},C=()=>{const _=m.trim();!_||!N||(o(_,b,v),a({name:_,width:b,height:v}),l())},S=_=>{_.key==="Enter"&&(g&&m.trim()?C():k&&E())};return d("div",{ref:x,className:"absolute top-full mt-1 right-0 bg-[#2a2a2a] border border-[#444] rounded-lg shadow-xl z-50 w-64",children:[r&&r.length>0&&d("div",{className:"border-b border-[#444]",children:[n("div",{className:"px-3 py-1.5 text-[10px] uppercase tracking-wider text-gray-500",children:"Presets"}),r.map(_=>d("button",{onClick:()=>{a(_),l()},className:`w-full px-3 py-1.5 text-left text-xs transition-colors cursor-pointer ${_.width===e&&_.height===t?"text-white bg-[#444]":"text-gray-300 hover:text-white hover:bg-[#333]"}`,children:[n("span",{className:"font-medium",children:_.name}),d("span",{className:"text-gray-500 ml-1.5",children:[_.width,"×",_.height]})]},_.name))]}),s.length>0&&d("div",{className:"border-b border-[#444]",children:[n("div",{className:"px-3 py-1.5 text-[10px] uppercase tracking-wider text-gray-500",children:"Saved Sizes"}),s.map(_=>d("div",{className:"flex items-center group hover:bg-[#333] transition-colors",children:[d("button",{onClick:()=>{a(_),l()},className:"flex-1 px-3 py-1.5 text-left text-xs text-gray-300 hover:text-white transition-colors cursor-pointer",children:[n("span",{className:"font-medium",children:_.name}),d("span",{className:"text-gray-500 ml-1.5",children:[_.width,"×",_.height]})]}),n("button",{onClick:()=>i(_.name),className:"px-2 py-1.5 text-gray-600 hover:text-red-400 opacity-0 group-hover:opacity-100 transition-all cursor-pointer",title:"Remove",children:n("svg",{width:"12",height:"12",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",children:n("path",{d:"M18 6L6 18M6 6l12 12"})})})]},_.name))]}),d("div",{className:"p-3",children:[d("div",{className:"flex items-center gap-2 mb-2",children:[n("input",{ref:w,type:"number",value:c,onChange:_=>p(_.target.value),onKeyDown:S,min:"100",max:"7680",className:"w-full px-2 py-1.5 bg-[#1a1a1a] border border-[#555] rounded text-xs text-white text-center focus:outline-none focus:border-[#007a99] [appearance:textfield] [&::-webkit-outer-spin-button]:appearance-none [&::-webkit-inner-spin-button]:appearance-none",placeholder:"Width"}),n("span",{className:"text-gray-500 text-xs flex-shrink-0",children:"×"}),n("input",{type:"number",value:u,onChange:_=>h(_.target.value),onKeyDown:S,min:"100",max:"7680",className:"w-full px-2 py-1.5 bg-[#1a1a1a] border border-[#555] rounded text-xs text-white text-center focus:outline-none focus:border-[#007a99] [appearance:textfield] [&::-webkit-outer-spin-button]:appearance-none [&::-webkit-inner-spin-button]:appearance-none",placeholder:"Height"})]}),d("div",{className:"flex gap-2",children:[n("button",{onClick:E,disabled:!N||!k,className:"flex-1 px-2 py-1.5 bg-[#007a99] text-white text-xs font-medium rounded hover:bg-[#006080] transition-colors cursor-pointer disabled:bg-[#333] disabled:text-gray-600 disabled:cursor-not-allowed",children:"Apply"}),g?d("div",{className:"flex gap-1",children:[n("input",{type:"text",value:m,onChange:_=>f(_.target.value),onKeyDown:S,placeholder:"Name",className:"w-20 px-2 py-1.5 bg-[#1a1a1a] border border-[#555] rounded text-xs text-white focus:outline-none focus:border-[#007a99]",autoFocus:!0}),n("button",{onClick:C,disabled:!m.trim()||!N,className:"px-2 py-1.5 bg-[#007a99] text-white text-xs rounded hover:bg-[#006080] transition-colors cursor-pointer disabled:bg-[#333] disabled:text-gray-600 disabled:cursor-not-allowed",children:"OK"})]}):n("button",{onClick:()=>y(!0),disabled:!N,className:"px-2 py-1.5 bg-[#333] text-gray-300 text-xs rounded hover:bg-[#444] transition-colors cursor-pointer disabled:text-gray-600 disabled:cursor-not-allowed",title:"Save as preset",children:"Save"})]})]})]})}function Po({width:e,height:t,onSave:r,onCancel:s}){const[a,o]=M(""),[i,l]=M(""),c=()=>{const p=a.trim();if(!p){l("Please enter a name");return}r(p)};return n("div",{className:"fixed inset-0 bg-black/50 flex items-center justify-center p-4 z-50",children:d("div",{className:"bg-white rounded-lg max-w-md w-full p-6 shadow-xl",children:[d("div",{className:"flex items-center justify-between mb-6",children:[n("h2",{className:"text-xl font-semibold text-gray-900",children:"Save Custom Size"}),n("button",{onClick:s,className:"text-gray-400 hover:text-gray-600 transition-colors cursor-pointer","aria-label":"Close",children:n("svg",{className:"w-5 h-5",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",children:n("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M6 18L18 6M6 6l12 12"})})})]}),d("div",{className:"mb-6 p-4 bg-gray-50 rounded-lg border border-gray-200",children:[n("div",{className:"text-sm text-gray-500 mb-1",children:"Dimensions"}),d("div",{className:"text-lg font-medium text-gray-900",children:[e,"px × ",t,"px"]})]}),d("div",{className:"mb-6",children:[n("label",{htmlFor:"custom-size-name",className:"block text-sm font-medium text-gray-700 mb-2",children:"Name"}),n("input",{id:"custom-size-name",type:"text",value:a,onChange:p=>{o(p.target.value),l("")},onKeyDown:p=>{p.key==="Enter"&&a.trim()&&c(),p.key==="Escape"&&s()},placeholder:"e.g., iPhone 15 Pro",className:`w-full px-3 py-2 border rounded-md text-sm focus:outline-none focus:ring-2 focus:ring-[#005c75] focus:border-[#005c75] ${i?"border-red-300":"border-gray-300"}`,autoFocus:!0}),i&&n("p",{className:"mt-1 text-sm text-red-600",children:i})]}),d("div",{className:"flex gap-3 justify-end",children:[n("button",{onClick:s,className:"px-4 py-2 bg-gray-100 text-gray-700 text-sm font-medium rounded-md hover:bg-gray-200 transition-colors cursor-pointer",children:"Cancel"}),n("button",{onClick:c,disabled:!a.trim(),className:"px-4 py-2 bg-[#005c75] text-white text-sm font-medium rounded-md hover:bg-[#004a5c] transition-colors cursor-pointer disabled:bg-gray-300 disabled:cursor-not-allowed",children:"Save"})]})]})})}function Bs(e){const[t,r]=M([]),s=e?`codeyam-custom-sizes-${e}`:null;se(()=>{if(!s||typeof window>"u"){r([]);return}try{const l=localStorage.getItem(s);if(l){const c=JSON.parse(l);Array.isArray(c)&&r(c)}}catch(l){console.error("[useCustomSizes] Failed to load custom sizes:",l),r([])}},[s]);const a=ie(l=>{if(!(!s||typeof window>"u"))try{localStorage.setItem(s,JSON.stringify(l))}catch(c){console.error("[useCustomSizes] Failed to save custom sizes:",c)}},[s]),o=ie((l,c,p)=>{r(u=>{const h=u.findIndex(g=>g.name===l),m={name:l,width:c,height:p};let f;return h>=0?(f=[...u],f[h]=m):f=[...u,m],a(f),f})},[a]),i=ie(l=>{r(c=>{const p=c.filter(u=>u.name!==l);return a(p),p})},[a]);return{customSizes:t,addCustomSize:o,removeCustomSize:i}}function Bt(){return d("div",{className:"spinner-container",children:[n("span",{className:"loader"}),n("style",{children:`
|
|
43
|
+
.loader {
|
|
44
|
+
width: 48px;
|
|
45
|
+
height: 48px;
|
|
46
|
+
border: 3px solid rgba(0, 92, 117, 0.2);
|
|
47
|
+
border-radius: 50%;
|
|
48
|
+
display: inline-block;
|
|
49
|
+
position: relative;
|
|
50
|
+
box-sizing: border-box;
|
|
51
|
+
animation: rotation 1s linear infinite;
|
|
52
|
+
}
|
|
53
|
+
.loader::after {
|
|
54
|
+
content: '';
|
|
55
|
+
box-sizing: border-box;
|
|
56
|
+
position: absolute;
|
|
57
|
+
left: 50%;
|
|
58
|
+
top: 50%;
|
|
59
|
+
transform: translate(-50%, -50%);
|
|
60
|
+
width: 56px;
|
|
61
|
+
height: 56px;
|
|
62
|
+
border-radius: 50%;
|
|
63
|
+
border: 3px solid;
|
|
64
|
+
border-color: #005c75 transparent;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
@keyframes rotation {
|
|
68
|
+
0% {
|
|
69
|
+
transform: rotate(0deg);
|
|
70
|
+
}
|
|
71
|
+
100% {
|
|
72
|
+
transform: rotate(360deg);
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
`})]})}const Ti=["⣾","⣽","⣻","⢿","⡿","⣟","⣯","⣷"],Wf=80;function zn(){const[e,t]=M(0);return se(()=>{const r=setInterval(()=>{t(s=>(s+1)%Ti.length)},Wf);return()=>clearInterval(r)},[]),n("span",{className:"inline-block mr-2",children:Ti[e]})}async function Jf({params:e}){var l;const{sha:t,scenarioId:r}=e;if(!t||!r)throw X("Invalid parameters",{status:400});const s=await xn(t);if(!s)throw X("Entity not found",{status:404});const a=await $s(s),o=((l=a==null?void 0:a.scenarios)==null?void 0:l.find(c=>c.id===r))||null;if(!o)throw X("Scenario not found",{status:404});const i=await ze();return X({entity:s,scenario:o,analysis:a,projectSlug:i})}const va=[{name:"Mobile",width:375,height:667},{name:"Tablet",width:768,height:1024},{name:"Laptop",width:1024,height:768},{name:"Desktop",width:1920,height:1080}],Hf=Qe(function(){const{entity:t,scenario:r,analysis:s,projectSlug:a}=tt(),o=Mt(),[i]=Bn(),[l,c]=M(null),[p,u]=M(1920),[h,m]=M({name:"Desktop",width:1920,height:1080}),[f,g]=M(!1),[y,x]=M(null),{customSizes:w,addCustomSize:b}=Bs(a),v=ae(()=>[...va,...w],[w]),N=fe(null),[k,E]=M(1),C=ie(()=>{if(!N.current)return;const D=32,O=N.current.clientWidth-D,q=N.current.clientHeight-D,re=h.width,le=h.height??900,he=Math.min(1,O/re,q/le);E(he)},[h.width,h.height]);se(()=>(C(),window.addEventListener("resize",C),()=>window.removeEventListener("resize",C)),[C]);const{interactiveServerUrl:S,isStarting:_,isLoading:j,showIframe:$,iframeKey:P,onIframeLoad:I}=vn({analysisId:s==null?void 0:s.id,scenarioId:r==null?void 0:r.id,scenarioName:r==null?void 0:r.name,projectSlug:a,enabled:!0}),{lastLine:R}=Ut(a,_||j),T=()=>{o(`/entity/${t.sha}`)},G=(D,O)=>{u(D);const q=v.find(le=>le.width===D&&le.height===O);c(q||null),m({name:(q==null?void 0:q.name)||"Custom",width:D,height:O})},J=D=>{c(D),u(D.width),m({name:D.name,width:D.width,height:D.height})},F=D=>{b(D,h.width,h.height??900),g(!1),m(O=>({...O,name:D}))},H=((s==null?void 0:s.scenarios)||[]).filter(D=>{var O;return!((O=D.metadata)!=null&&O.sameAsDefault)}),U=H.findIndex(D=>D.id===(r==null?void 0:r.id)),z=U+1,A=H.length,Y=U>0,V=U<H.length-1,W=()=>{if(Y){const D=H[U-1],O=encodeURIComponent(`/entity/${t.sha}/scenarios/${D.id}/fullscreen`);o(`/entity/${t.sha}/scenarios/${D.id}/fullscreen?from=${O}`)}},Q=()=>{if(V){const D=H[U+1],O=encodeURIComponent(`/entity/${t.sha}/scenarios/${D.id}/fullscreen`);o(`/entity/${t.sha}/scenarios/${D.id}/fullscreen?from=${O}`)}},B=_||j||!$;return d("div",{className:"fixed inset-0 bg-[#2d2d2d] flex flex-col",children:[d("div",{className:"bg-[#3d3d3d] h-12 flex items-center px-4 gap-4 shrink-0 z-20",children:[d("div",{className:"flex items-center gap-3 flex-1 min-w-0",children:[n("img",{src:Ps,alt:"CodeYam",className:"h-6 brightness-0 invert"}),n("span",{className:"text-white font-medium text-sm whitespace-nowrap",children:t.name}),d("div",{className:"flex items-center gap-2 shrink-0",children:[n("button",{onClick:W,disabled:!Y,className:`${Y?"text-white hover:text-gray-300":"text-gray-600 cursor-not-allowed"} transition-colors`,"aria-label":"Previous scenario",children:n("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",children:n("path",{d:"M12.5 15L7.5 10L12.5 5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})})}),d("span",{className:"text-gray-400 text-sm",children:[z,"/",A]}),n("button",{onClick:Q,disabled:!V,className:`${V?"text-white hover:text-gray-300":"text-gray-600 cursor-not-allowed"} transition-colors`,"aria-label":"Next scenario",children:n("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",children:n("path",{d:"M7.5 15L12.5 10L7.5 5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})})})]}),d("div",{className:"flex items-center gap-2 ml-2 min-w-0",children:[n("span",{className:"text-white font-semibold text-xs whitespace-nowrap shrink-0",children:r==null?void 0:r.name}),(r==null?void 0:r.description)&&d("div",{className:"relative group min-w-0",children:[n("span",{className:"text-gray-400 text-xs truncate block",children:r.description}),n("div",{className:"absolute left-0 top-full mt-1 hidden group-hover:block z-50 bg-black text-white text-xs px-3 py-2 rounded shadow-lg max-w-md",children:r.description})]})]})]}),n("button",{onClick:T,className:"text-white hover:text-gray-300 transition-colors ml-4","aria-label":"Close fullscreen",children:n("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",children:n("path",{d:"M15 5L5 15M5 5L15 15",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"})})})]}),d("div",{className:"bg-[#e5e7eb] border-b border-[rgba(0,0,0,0.1)] shrink-0 z-10 h-6 flex items-center justify-center relative",children:[n("div",{className:"absolute inset-0 flex justify-center",children:n("div",{style:{maxWidth:`${va[va.length-1].width}px`,width:"100%"},children:n(Ao,{currentViewportWidth:p,currentPresetName:h.name,onDevicePresetClick:J,devicePresets:v,hideLabel:!0,onHoverChange:x,lightMode:!0})})}),d("div",{className:"relative z-10 flex items-center gap-2",children:[d("div",{className:"relative w-28 h-5",children:[d("div",{className:"absolute inset-0 bg-white text-gray-900 text-xs px-2 rounded flex items-center justify-between pointer-events-none border border-gray-300",children:[n("span",{className:"leading-none",children:(y==null?void 0:y.name)||h.name}),n("svg",{width:"10",height:"10",viewBox:"0 0 12 12",fill:"none",className:"shrink-0",children:n("path",{d:"M3 4.5L6 7.5L9 4.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})})]}),d("select",{value:h.name,onChange:D=>{const O=v.find(q=>q.name===D.target.value);O&&J(O)},className:"relative w-full h-full opacity-0 cursor-pointer",children:[v.map(D=>n("option",{value:D.name,children:D.name},D.name)),h.name==="Custom"&&n("option",{value:"Custom",children:"Custom"})]})]}),n("input",{type:"number",value:h.width,onChange:D=>{const O=parseInt(D.target.value,10);!isNaN(O)&&O>0&&G(O,h.height??900)},className:"bg-white text-gray-900 text-xs px-1 rounded border border-gray-300 outline-none w-16 text-center h-5 leading-none",min:"200",max:"3840"}),n("span",{className:"text-gray-400 text-xs h-5 flex items-center leading-none",children:"×"}),n("span",{className:"bg-gray-100 text-gray-600 text-xs px-1 rounded w-14 text-center h-5 flex items-center justify-center leading-none",children:h.height??900}),h.name==="Custom"&&n("button",{onClick:()=>g(!0),className:"bg-white text-gray-900 text-xs px-2 rounded h-5 flex items-center leading-none border border-gray-300 hover:bg-gray-50 transition-colors",children:"Save"})]})]}),n("div",{ref:N,className:"flex-1 flex items-center justify-center overflow-hidden p-4",style:{backgroundImage:`
|
|
76
|
+
linear-gradient(45deg, #ebebeb 25%, transparent 25%),
|
|
77
|
+
linear-gradient(-45deg, #ebebeb 25%, transparent 25%),
|
|
78
|
+
linear-gradient(45deg, transparent 75%, #ebebeb 75%),
|
|
79
|
+
linear-gradient(-45deg, transparent 75%, #ebebeb 75%)
|
|
80
|
+
`,backgroundSize:"16px 16px",backgroundPosition:"0 0, 0 8px, 8px -8px, -8px 0px",backgroundColor:"#fafafa"},children:S?d("div",{className:"relative bg-white",style:{width:`${h.width}px`,height:`${h.height??900}px`,transform:`scale(${k})`,transformOrigin:"center center"},children:[B&&n("div",{className:"absolute inset-0 flex items-center justify-center z-10",children:d("div",{className:"flex flex-col items-center justify-center gap-6 bg-white rounded-lg p-8 shadow-sm w-[500px] h-[300px]",children:[n("div",{className:"mb-4",children:n(Bt,{})}),d("div",{className:"flex flex-col gap-3 text-center",children:[n("h2",{className:"text-xl font-medium text-black leading-[28px] m-0 font-['IBM_Plex_Sans']",children:"Starting Interactive Mode"}),n("p",{className:"text-sm text-[#666] leading-5 m-0 font-['IBM_Plex_Sans']",children:"Setting up a sandboxed environment for your component"}),R&&d("p",{className:"text-xs font-mono text-[#005c75] text-center leading-5 m-0 mt-3 font-['IBM_Plex_Mono'] uppercase",children:[n(zn,{}),R]})]})]})}),n("iframe",{src:S,className:"w-full h-full border-none",title:`Interactive preview: ${r==null?void 0:r.name}`,onLoad:I,style:{opacity:$?1:0}},P)]}):d("div",{className:"flex flex-col items-center justify-center gap-6 w-[500px] h-[300px] bg-white rounded-lg p-8 shadow-sm",children:[n("div",{className:"mb-4",children:n(Bt,{})}),d("div",{className:"flex flex-col gap-3 text-center",children:[n("h2",{className:"text-xl font-medium text-black leading-[28px] m-0 font-['IBM_Plex_Sans']",children:"Starting Interactive Mode"}),n("p",{className:"text-sm text-[#666] leading-5 m-0 font-['IBM_Plex_Sans']",children:"Setting up a sandboxed environment for your component"}),R&&d("p",{className:"text-xs font-mono text-[#005c75] text-center leading-5 m-0 mt-3 font-['IBM_Plex_Mono'] uppercase",children:[n(zn,{}),R]})]})]})}),f&&n(Po,{width:h.width,height:h.height??900,onSave:F,onCancel:()=>g(!1)})]})}),Vf=Object.freeze(Object.defineProperty({__proto__:null,default:Hf,loader:Jf},Symbol.toStringTag,{value:"Module"})),Rn={sound:"soft-double-tap",systemNotification:!0},Gf=[{id:"soft-double-tap",label:"Soft double tap"},{id:"gentle-chime",label:"Gentle chime"},{id:"warm-ding",label:"Warm ding"},{id:"mellow-two-tone",label:"Mellow two-tone"},{id:"triangle-bell",label:"Triangle bell"},{id:"off",label:"No sound"}],_c="codeyam-editor-notifications";function Kf(){try{const e=localStorage.getItem(_c);if(!e)return Rn;const t=JSON.parse(e);return typeof t=="string"?t==="true"?Rn:{...Rn,sound:"off",systemNotification:!1}:{...Rn,...t}}catch{return Rn}}function qf(e){localStorage.setItem(_c,JSON.stringify(e))}function kc(e){var t;if(e!=="off")try{const r=new AudioContext,s={"soft-double-tap":a=>{[0,.12].forEach(o=>{const i=a.createOscillator(),l=a.createGain();i.connect(l),l.connect(a.destination),i.type="sine",i.frequency.value=392,l.gain.setValueAtTime(.25,a.currentTime+o),l.gain.exponentialRampToValueAtTime(.01,a.currentTime+o+.1),i.start(a.currentTime+o),i.stop(a.currentTime+o+.1)})},"gentle-chime":a=>{const o=a.createOscillator(),i=a.createGain();o.connect(i),i.connect(a.destination),o.type="sine",o.frequency.setValueAtTime(523,a.currentTime),o.frequency.setValueAtTime(659,a.currentTime+.15),i.gain.setValueAtTime(.3,a.currentTime),i.gain.exponentialRampToValueAtTime(.01,a.currentTime+.4),o.start(),o.stop(a.currentTime+.4)},"warm-ding":a=>{const o=a.createOscillator(),i=a.createGain();o.connect(i),i.connect(a.destination),o.type="sine",o.frequency.value=330,i.gain.setValueAtTime(.35,a.currentTime),i.gain.exponentialRampToValueAtTime(.01,a.currentTime+.6),o.start(),o.stop(a.currentTime+.6)},"mellow-two-tone":a=>{const o=a.createOscillator(),i=a.createGain();o.connect(i),i.connect(a.destination),o.type="sine",o.frequency.setValueAtTime(294,a.currentTime),o.frequency.setValueAtTime(440,a.currentTime+.18),i.gain.setValueAtTime(.3,a.currentTime),i.gain.exponentialRampToValueAtTime(.01,a.currentTime+.5),o.start(),o.stop(a.currentTime+.5)},"triangle-bell":a=>{const o=a.createOscillator(),i=a.createGain();o.connect(i),i.connect(a.destination),o.type="triangle",o.frequency.value=523,i.gain.setValueAtTime(.4,a.currentTime),i.gain.exponentialRampToValueAtTime(.01,a.currentTime+.8),o.start(),o.stop(a.currentTime+.8)}};(t=s[e])==null||t.call(s,r)}catch{}}function Ec({serverUrl:e,isStarting:t,projectSlug:r,devServerError:s,onStartServer:a,notificationSettings:o,onChangeNotificationSettings:i}){const[l,c]=M(null),[p,u]=M(!1),h=fe(null),m=fe(null);se(()=>{if(!r)return;const w=new EventSource("/api/dev-mode-events");return w.onmessage=b=>{try{const v=JSON.parse(b.data);v.type==="file-synced"&&(c(v.fileName),m.current&&clearTimeout(m.current),m.current=setTimeout(()=>{c(null)},5e3))}catch{}},()=>{w.close(),m.current&&clearTimeout(m.current)}},[r]),se(()=>{if(!p)return;function w(b){h.current&&!h.current.contains(b.target)&&u(!1)}return document.addEventListener("mousedown",w),()=>document.removeEventListener("mousedown",w)},[p]);let f;s?f="error":t?f="starting":e?f="running":f="stopped";const g={starting:"bg-yellow-400",running:"bg-green-400",stopped:"bg-gray-400",error:"bg-red-400"},y={starting:"Starting...",running:e||"Running",stopped:"Stopped",error:"Error"},x=o&&(o.sound!=="off"||o.systemNotification);return d("div",{className:"bg-[#1e1e1e] border-t border-[#3d3d3d] h-7 flex items-center px-4 gap-4 shrink-0 text-xs font-mono",children:[d("div",{className:"flex items-center gap-2",children:[n("div",{className:`w-2 h-2 rounded-full ${g[f]}`}),d("span",{className:"text-gray-400",children:["Server:"," ",n("span",{className:"text-gray-300",children:y[f]})]}),(f==="stopped"||f==="error")&&a&&n("button",{onClick:a,className:"ml-1 px-2.5 py-0.5 bg-[#005c75] hover:bg-[#007a9a] text-white text-[11px] font-medium rounded transition-colors cursor-pointer border-none leading-tight",children:"Start Server"})]}),n("div",{className:"w-px h-3 bg-[#3d3d3d]"}),l&&d(ye,{children:[d("div",{className:"flex items-center gap-1.5",children:[n("svg",{width:"12",height:"12",viewBox:"0 0 24 24",fill:"none",stroke:"#4ade80",strokeWidth:"2",children:n("path",{d:"M20 6L9 17l-5-5"})}),d("span",{className:"text-green-400",children:["Synced: ",l]})]}),n("div",{className:"w-px h-3 bg-[#3d3d3d]"})]}),n("div",{className:"flex-1"}),i&&o&&d("div",{className:"relative",ref:h,children:[n("button",{onClick:()=>u(!p),className:`text-[11px] rounded transition-colors cursor-pointer ${x?"text-green-400 hover:text-green-300":"text-gray-500 hover:text-gray-300"}`,children:x?"Notifications On":"Notifications Off"}),p&&d("div",{className:"absolute bottom-full right-0 mb-2 w-56 bg-[#2d2d2d] border border-[#4d4d4d] rounded-lg shadow-xl p-3 flex flex-col gap-3 z-50",children:[d("div",{children:[n("div",{className:"text-[11px] text-gray-400 mb-1.5",children:"Notification sound"}),n("div",{className:"flex flex-col gap-0.5",children:Gf.map(w=>n("button",{onClick:()=>{i({...o,sound:w.id}),w.id!=="off"&&kc(w.id)},className:`text-left text-[11px] px-2 py-1 rounded cursor-pointer transition-colors ${o.sound===w.id?"bg-[#444] text-white":"text-gray-300 hover:bg-[#3a3a3a]"}`,children:w.label},w.id))})]}),d("div",{className:"border-t border-[#4d4d4d] pt-2",children:[d("label",{className:"flex items-center gap-2 cursor-pointer",children:[n("input",{type:"checkbox",checked:o.systemNotification,onChange:w=>{const b=w.target.checked;i({...o,systemNotification:b}),b&&typeof Notification<"u"&&Notification.permission==="default"&&Notification.requestPermission()},className:"accent-green-500"}),n("span",{className:"text-[11px] text-gray-300",children:"System notification"})]}),n("div",{className:"text-[10px] text-gray-500 mt-1 ml-5",children:"Shows when tab is not visible"})]})]})]})]})}async function Qf(e,t){try{const{WebglAddon:s}=await import("@xterm/addon-webgl"),a=new s;return a.onContextLoss(()=>{t==null||t("webgl","canvas",new Error("WebGL context lost")),a.dispose(),Mi(e).then(o=>{o||t==null||t("canvas","dom",new Error("Canvas fallback failed after context loss"))})}),e.loadAddon(a),{type:"webgl",dispose:()=>a.dispose()}}catch(s){t==null||t("webgl","canvas",s)}const r=await Mi(e);return r||(t==null||t("canvas","dom",new Error("Canvas addon failed")),{type:"dom",dispose:()=>{}})}async function Mi(e){try{const{CanvasAddon:t}=await import("@xterm/addon-canvas"),r=new t;return e.loadAddon(r),{type:"canvas",dispose:()=>r.dispose()}}catch{return null}}class Zf{constructor(t,r){Ft(this,"deferred",!1);Ft(this,"userActiveSinceLastOutput",!1);Ft(this,"actions");Ft(this,"env");this.actions=t,this.env=r}reportUserActivity(){this.userActiveSinceLastOutput=!0}resetActivityFlag(){this.userActiveSinceLastOutput=!1}onIdle(t,r){return this.deferred=!1,r&&this.env.hasBrowserFocus()&&this.userActiveSinceLastOutput?(this.userActiveSinceLastOutput=!1,"suppressed"):this.notify(t)}onBuildTabChange(t,r){return!t&&this.deferred?(this.deferred=!1,this.notify(r),!0):!1}onActive(){this.deferred=!1}onUserEngagement(){const t=this.deferred;return this.deferred=!1,t}get isDeferred(){return this.deferred}notify(t){const r=!!(t!=null&&t.sound)&&t.sound!=="off";return r&&this.actions.playSound(t.sound),!this.env.hasBrowserFocus()&&(t!=null&&t.systemNotification)&&this.env.hasNotificationPermission()&&this.actions.showSystemNotification(),r?"played":"played-no-sound"}}const Xf=`
|
|
81
|
+
.xterm { cursor: text; position: relative; user-select: none; -ms-user-select: none; -webkit-user-select: none; }
|
|
82
|
+
.xterm.focus, .xterm:focus { outline: none; }
|
|
83
|
+
.xterm .xterm-helpers { position: absolute; top: 0; z-index: 5; }
|
|
84
|
+
.xterm .xterm-helper-textarea { padding: 0; border: 0; margin: 0; position: absolute; opacity: 0; left: -9999em; top: 0; width: 0; height: 0; z-index: -5; white-space: nowrap; overflow: hidden; resize: none; caret-color: transparent !important; clip-path: inset(100%) !important; }
|
|
85
|
+
.xterm .composition-view { background: #000; color: #FFF; display: none; position: absolute; white-space: nowrap; z-index: 1; }
|
|
86
|
+
.xterm .composition-view.active { display: block; }
|
|
87
|
+
.xterm .xterm-viewport { background-color: #000; overflow-y: scroll; cursor: default; position: absolute; right: 0; left: 0; top: 0; bottom: 0; }
|
|
88
|
+
.xterm .xterm-screen { position: relative; }
|
|
89
|
+
.xterm .xterm-screen canvas { position: absolute; left: 0; top: 0; }
|
|
90
|
+
.xterm .xterm-scroll-area { visibility: hidden; }
|
|
91
|
+
.xterm-char-measure-element { display: inline-block; visibility: hidden; position: absolute; top: 0; left: -9999em; line-height: normal; }
|
|
92
|
+
.xterm.enable-mouse-events { cursor: default; }
|
|
93
|
+
.xterm.xterm-cursor-pointer, .xterm .xterm-cursor-pointer { cursor: pointer; }
|
|
94
|
+
.xterm.column-select.focus { cursor: crosshair; }
|
|
95
|
+
.xterm .xterm-accessibility:not(.debug), .xterm .xterm-message { position: absolute; left: 0; top: 0; bottom: 0; right: 0; z-index: 10; color: transparent; pointer-events: none; }
|
|
96
|
+
.xterm .xterm-accessibility-tree:not(.debug) *::selection { color: transparent; }
|
|
97
|
+
.xterm .xterm-accessibility-tree { user-select: text; white-space: pre; }
|
|
98
|
+
.xterm .live-region { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
|
|
99
|
+
.xterm-dim { opacity: 1 !important; }
|
|
100
|
+
.xterm-underline-1 { text-decoration: underline; }
|
|
101
|
+
.xterm-underline-2 { text-decoration: double underline; }
|
|
102
|
+
.xterm-underline-3 { text-decoration: wavy underline; }
|
|
103
|
+
.xterm-underline-4 { text-decoration: dotted underline; }
|
|
104
|
+
.xterm-underline-5 { text-decoration: dashed underline; }
|
|
105
|
+
.xterm-overline { text-decoration: overline; }
|
|
106
|
+
.xterm-strikethrough { text-decoration: line-through; }
|
|
107
|
+
.xterm-screen .xterm-decoration-container .xterm-decoration { z-index: 6; position: absolute; }
|
|
108
|
+
.xterm-screen .xterm-decoration-container .xterm-decoration.xterm-decoration-top-layer { z-index: 7; }
|
|
109
|
+
.xterm-decoration-overview-ruler { z-index: 8; position: absolute; top: 0; right: 0; pointer-events: none; }
|
|
110
|
+
.xterm-decoration-top { z-index: 2; position: relative; }
|
|
111
|
+
`;function eg(){let e=document.getElementById("xterm-css");e||(e=document.createElement("style"),e.id="xterm-css",document.head.appendChild(e)),e.textContent=Xf}const Ac=vu(function({entityName:t,entityType:r,entitySha:s,entityFilePath:a,scenarioName:o,scenarioDescription:i,analysisId:l,projectSlug:c,onRefreshPreview:p,onShowResults:u,onHideResults:h,onSetViewport:m,editorMode:f,onIdleChange:g,notificationSettings:y,buildTabActive:x,claudeStartMode:w,claudeSessionId:b,onDataMutationForwarded:v,resultsOpen:N},k){const E=fe(null),C=fe(null),S=fe(null),_=fe(null),j=fe(null),$=fe(!1),P=fe(0),I=fe(!1),R=fe(g);R.current=g;const T=fe(y);T.current=y;const G=fe(x);G.current=x;const J=fe(N);J.current=N;const F=fe(null),H=fe(!1),U=fe(null);U.current||(U.current=new Zf({playSound:V=>kc(V),showSystemNotification:()=>{F.current&&F.current.close();const V=new Notification("Claude is ready for you",{body:"Claude has finished and is waiting for your input.",tag:"claude-idle"});V.onclick=()=>{window.focus(),V.close()},F.current=V}},{hasBrowserFocus:()=>document.hasFocus(),hasNotificationPermission:()=>typeof Notification<"u"&&Notification.permission==="granted"}));function z(){F.current&&(F.current.close(),F.current=null)}function A(){var V,W;H.current&&(H.current=!1,z(),(V=R.current)==null||V.call(R,!1),(W=U.current)==null||W.onUserEngagement())}se(()=>{function V(){var D;document.hasFocus()&&G.current&&A(),G.current&&document.hasFocus()&&((D=U.current)==null||D.reportUserActivity())}function W(){!document.hidden&&G.current&&A()}function Q(){var D;document.hasFocus()&&G.current&&A(),G.current&&document.hasFocus()&&((D=U.current)==null||D.reportUserActivity())}function B(){var D;G.current&&A(),G.current&&((D=U.current)==null||D.reportUserActivity())}return window.addEventListener("focus",B),document.addEventListener("visibilitychange",W),document.addEventListener("mousemove",V),document.addEventListener("mousedown",Q),document.addEventListener("keydown",V),()=>{window.removeEventListener("focus",B),document.removeEventListener("visibilitychange",W),document.removeEventListener("mousemove",V),document.removeEventListener("mousedown",Q),document.removeEventListener("keydown",V)}},[]),se(()=>{var V;x&&H.current&&document.hasFocus()&&A(),(V=U.current)==null||V.onBuildTabChange(!!x,T.current)},[x]);const Y=ie(()=>{var V;(V=S.current)==null||V.focus()},[]);return Nu(k,()=>({sendInput(V){const W=_.current;W&&W.readyState===WebSocket.OPEN&&(W.send(JSON.stringify({type:"input",data:V})),setTimeout(()=>{W.readyState===WebSocket.OPEN&&W.send(JSON.stringify({type:"input",data:"\r"}))},100))},focus(){var V;(V=S.current)==null||V.focus()},scrollToBottom(){var W;const V=(W=E.current)==null?void 0:W.querySelector(".xterm-viewport");V&&(V.scrollTop=V.scrollHeight)}})),se(()=>{const V=E.current;if(!V)return;let W=!1;return eg(),Promise.all([import("@xterm/xterm"),import("@xterm/addon-fit"),import("@xterm/addon-web-links")]).then(([Q,B,D])=>{if(W)return;const O=new Q.Terminal({cursorBlink:!1,cursorInactiveStyle:"none",scrollback:5e3,fontSize:13,fontFamily:"'IBM Plex Mono', 'Menlo', 'Monaco', monospace",theme:{background:"#1e1e1e",foreground:"#d4d4d4",cursor:"#1e1e1e",selectionBackground:"#264f78"},linkHandler:{activate(pe,Z){try{const Ne=new URL(Z),de=Ne.searchParams.get("scenario");if(de&&Ne.pathname.startsWith("/editor")){const ne=new BroadcastChannel("codeyam-editor");ne.postMessage({type:"switch-scenario",scenarioId:de}),ne.close();return}}catch{}window.open(Z,"_blank")}}}),q=new B.FitAddon;O.loadAddon(q),O.loadAddon(new D.WebLinksAddon),O.open(V),O.attachCustomKeyEventHandler(pe=>{if(J.current&&(pe.key==="ArrowLeft"||pe.key==="ArrowRight")&&!pe.ctrlKey&&!pe.altKey&&!pe.metaKey&&pe.type==="keydown"){const Z=pe.key==="ArrowLeft"?"\x1B[D":"\x1B[C",Ne=_.current;return Ne&&Ne.readyState===WebSocket.OPEN&&Ne.send(JSON.stringify({type:"input",data:Z})),!1}return!0}),O.write("\x1B[?25l");let re=null;Qf(O,(pe,Z,Ne)=>{console.warn(`[Terminal] Renderer fallback: ${pe} → ${Z}`,Ne)}).then(pe=>{if(W){pe.dispose();return}console.log(`[Terminal] Using ${pe.type} renderer`),re=pe.dispose}),requestAnimationFrame(()=>{try{q.fit()}catch{}}),S.current=O,O.focus(),setTimeout(()=>O.focus(),100),setTimeout(()=>O.focus(),500);const le=window.location.protocol==="https:"?"wss:":"ws:",he=window.location.host;function oe(pe){const Z=new URLSearchParams;return Z.set("entityName",t),r&&Z.set("entityType",r),s&&Z.set("entitySha",s),a&&Z.set("entityFilePath",a),o&&Z.set("scenarioName",o),i&&Z.set("scenarioDescription",i),l&&Z.set("analysisId",l),c&&Z.set("projectSlug",c),f&&Z.set("editorMode","true"),pe&&Z.set("reconnectId",pe),w&&Z.set("claudeStartMode",w),b&&Z.set("claudeSessionId",b),`${le}//${he}/ws/terminal?${Z.toString()}`}function ge(pe){const Z=oe(pe),Ne=new WebSocket(Z);_.current=Ne,Ne.onopen=()=>{P.current=0,I.current=!1,Ne.send(JSON.stringify({type:"resize",cols:O.cols,rows:O.rows}))},Ne.onmessage=de=>{var ne,be,Ce,Fe,Se,Re,Be;try{const Me=JSON.parse(de.data);if(Me.type==="session-id"){j.current=Me.sessionId;return}if(Me.type==="refresh-preview"){p==null||p(Me.path,Me.scenarioId);return}if(Me.type==="show-results"){u==null||u();return}if(Me.type==="hide-results"){h==null||h();return}if(Me.type==="data-mutation-forwarded"){v==null||v();return}if(Me.type==="set-viewport"){m==null||m({name:Me.name,width:Me.width,height:Me.height});return}if(Me.type==="claude-idle"){((ne=U.current)==null?void 0:ne.onIdle(T.current,G.current??!1))!=="suppressed"&&(H.current=!0,(be=R.current)==null||be.call(R,!0));return}if(Me.type==="claude-active"){H.current=!1,(Ce=R.current)==null||Ce.call(R,!1),(Fe=U.current)==null||Fe.onActive(),(Se=U.current)==null||Se.resetActivityFlag(),F.current&&(F.current.close(),F.current=null);return}Me.type==="output"&&(O.write(Me.data),(Re=R.current)==null||Re.call(R,!1),(Be=U.current)==null||Be.resetActivityFlag())}catch{O.write(de.data)}},Ne.onclose=()=>{if($.current){O.write(`\r
|
|
112
|
+
\x1B[90m[Terminal session ended]\x1B[0m\r
|
|
113
|
+
`);return}const de=P.current;if(de<5&&j.current){const ne=1e3*Math.pow(2,Math.min(de,3));P.current=de+1,O.write(`\r
|
|
114
|
+
\x1B[33m[Reconnecting...]\x1B[0m\r
|
|
115
|
+
`),setTimeout(()=>{$.current||ge(j.current)},ne)}else I.current?O.write(`\r
|
|
116
|
+
\x1B[90m[Terminal session ended]\x1B[0m\r
|
|
117
|
+
`):(I.current=!0,O.write(`\r
|
|
118
|
+
\x1B[33m[Starting new session...]\x1B[0m\r
|
|
119
|
+
`),j.current=null,P.current=0,ge())},Ne.onerror=()=>{}}ge(),O.onData(pe=>{const Z=_.current;Z&&Z.readyState===WebSocket.OPEN&&Z.send(JSON.stringify({type:"input",data:pe})),A()});let _e=null;const je=new ResizeObserver(()=>{_e&&clearTimeout(_e),_e=setTimeout(()=>{let pe;try{pe=q.proposeDimensions()}catch{return}if(!pe||pe.cols===O.cols&&pe.rows===O.rows)return;const Z=V.querySelector(".xterm-viewport");let Ne,de=!0;Z&&(Ne=Z.scrollTop,de=Z.scrollTop+Z.clientHeight>=Z.scrollHeight-10),q.fit(),Z&&Ne!==void 0&&(de?Z.scrollTop=Z.scrollHeight:Z.scrollTop=Ne);const ne=_.current;ne&&ne.readyState===WebSocket.OPEN&&ne.send(JSON.stringify({type:"resize",cols:O.cols,rows:O.rows}))},150)});je.observe(V),C.current=()=>{var pe;_e&&clearTimeout(_e),je.disconnect(),$.current=!0,(pe=_.current)==null||pe.close(),_.current=null,re==null||re(),O.dispose(),S.current=null}}),()=>{var Q;W=!0,(Q=C.current)==null||Q.call(C),C.current=null}},[]),n("div",{ref:E,onClick:Y,className:"w-full h-full relative overflow-hidden",style:{padding:"4px 0 0 8px"}})});function rt({screenshotPath:e,cacheBuster:t,alt:r,className:s="",title:a}){const[o,i]=M("loading"),[l,c]=M(!1),p=fe(null),u=t?`/api/screenshot/${e}?cb=${t}`:`/api/screenshot/${e}`,h=()=>{i("success"),c(!0)},m=()=>{i("error"),c(!1)};return se(()=>{i("loading"),c(!1);const f=p.current;f!=null&&f.complete&&(f.naturalHeight!==0?(i("success"),c(!0)):(i("error"),c(!1)))},[u]),e?d("div",{className:"relative w-full h-full flex items-center justify-center",title:a,children:[n("img",{ref:p,src:u,alt:r,onLoad:h,onError:m,className:s||"max-w-full max-h-full object-contain",style:{visibility:l?"visible":"hidden",position:l?"relative":"absolute"}}),o==="loading"&&n("div",{className:"absolute inset-0 bg-gray-100 animate-pulse rounded flex items-center justify-center",children:n("svg",{className:"w-8 h-8 text-gray-300",fill:"none",viewBox:"0 0 24 24",stroke:"currentColor",children:n("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M4 16l4.586-4.586a2 2 0 012.828 0L16 16m-2-2l1.586-1.586a2 2 0 012.828 0L20 14m-6-6h.01M6 20h12a2 2 0 002-2V6a2 2 0 00-2-2H6a2 2 0 00-2 2v12a2 2 0 002 2z"})})}),o==="error"&&d("div",{className:"absolute inset-0 border-2 border-dashed border-gray-300 bg-gray-50 rounded flex flex-col items-center justify-center text-xs gap-1",children:[n("span",{className:"text-2xl text-gray-400",children:"📷"}),n("span",{className:"text-gray-400 whitespace-nowrap",children:"No Screenshot"})]})]}):n("div",{className:"w-full h-full border-2 border-dashed border-gray-300 bg-gray-50 rounded flex flex-col items-center justify-center text-xs gap-1",title:a,children:n("span",{className:"text-2xl text-gray-400",children:"📷"})})}function tg({scenarios:e,currentScenarioId:t,entitySha:r,cacheBuster:s}){const a=Mt();return e.length===0?n("div",{className:"flex-1 flex items-center justify-center p-8",children:n("p",{className:"text-gray-500 text-sm",children:"No scenarios found"})}):n("div",{className:"flex-1 overflow-y-auto p-3 space-y-3",children:e.map(o=>{var c,p;const i=o.id===t,l=(p=(c=o.metadata)==null?void 0:c.screenshotPaths)==null?void 0:p[0];return d("button",{onClick:()=>{a(`/entity/${r}/scenarios/${o.id}/dev`)},className:`w-full text-left rounded-lg overflow-hidden border transition-colors cursor-pointer flex ${i?"border-[#005c75] bg-[#1a3a44]":"border-[#3d3d3d] bg-[#252525] hover:border-[#555]"}`,children:[n("div",{className:"w-24 h-20 shrink-0 bg-[#1a1a1a]",children:n(rt,{screenshotPath:l,cacheBuster:s,alt:o.name,className:"w-full h-full object-cover object-top"})}),d("div",{className:"p-2.5 min-w-0 flex-1",children:[d("div",{className:"text-white text-sm font-medium truncate",children:[i&&n("span",{className:"inline-block w-1.5 h-1.5 rounded-full bg-[#005c75] mr-1.5 relative top-[-1px]"}),o.name]}),o.description&&n("div",{className:"text-gray-400 text-xs mt-1 line-clamp-2",children:o.description})]})]},o.id)})})}function _t(e){var l;if(!e.startsWith("app/")&&!e.startsWith("("))return"/";const r=e.replace(/^app\//,"").split("/"),s=r.pop(),a=((l=s.match(/\.(tsx?|jsx?|js)$/))==null?void 0:l[0])||"",o=s.slice(0,-a.length);let i;return o==="page"||o==="index"?i=r:i=[...r,o],i=i.filter(c=>!c.startsWith("(")),i.length===0?"/":"/"+i.join("/")}function It(e){return e==="/"?"Home":e.replace(/^\//,"").split("/").map(r=>r.startsWith("[")?r:r.charAt(0).toUpperCase()+r.slice(1)).join(" / ")}function Pc(e,t){if(!e)return null;const r=e.split("?")[0].replace(/\/+$/,"")||"/",s=t.map(l=>({filePath:l,pattern:_t(l)})),a=r==="/"?[]:r.replace(/^\//,"").split("/");let o=null,i=-1;for(const l of s){const c=l.pattern==="/"?[]:l.pattern.replace(/^\//,"").split("/");if(c.length!==a.length)continue;let p=!0,u=0;for(let h=0;h<c.length;h++){const m=c[h],f=a[h];if(!(m.startsWith("[")&&m.endsWith("]")))if(m===f)u++;else{p=!1;break}}p&&u>i&&(i=u,o=l.filePath)}return o}function jc(e,t){const r=new Map;for(const s of e)s.status!=="deleted"&&(t||s.status==="added"||s.status==="untracked"?r.set(s.path,"new"):s.status==="modified"&&r.set(s.path,"edited"));return r}function ct(e){if(!e||e==="/")return"Home";const t=e.split("?")[0].replace(/^\//,"");if(!t)return"Home";const r=t.split("/")[0].replace(/\.[^.]+$/,"");return r.charAt(0).toUpperCase()+r.slice(1)}function Ys(e){return e?e.includes("/isolated-components")||e.includes("/codeyam-isolate"):!1}function Ar(e){return e.componentName?e.componentName:e.pageFilePath?It(_t(e.pageFilePath)):ct(e.url)}function Tc(e,t,r){var o;const s=[],a=new Set;for(const i of e){let l=null,c=null;if(i.componentName&&i.componentPath)l=i.componentName,c=i.componentPath;else if(!i.componentName&&i.pageFilePath)l=i.displayName||(i.pageFilePath.startsWith("app/")?It(_t(i.pageFilePath)):ct(i.url)),c=i.pageFilePath;else if(!i.componentName&&i.url!==void 0){const p=ct(i.url);t[p]&&(l=p,c=t[p])}if(l&&c&&!a.has(l)){a.add(l);const p=r.find(u=>u.name===l);s.push({name:l,filePath:c,importedBy:(o=p==null?void 0:p.metadata)==null?void 0:o.importedBy})}}return s}function ng(e,t){const r=[],s=new Set(t);for(const a of e)s.has(a.name)||(s.add(a.name),r.push({name:a.name,filePath:a.filePath}));return r}function rg(e,t){return!t||Object.keys(t).length===0?e:e.filter(r=>t[r.name])}function sg(e,t){return!t||Object.keys(t).length===0?e:e.filter(r=>{if("componentName"in r){const a=Ar(r);return!!t[a]}const s=r.name.indexOf(" - ");if(s!==-1){const a=r.name.slice(0,s);return!!t[a]}return!!t.Home})}function ag(e){const t=new Map;for(const r of e){const s=r.importedBy;if(!s||typeof s!="object")continue;const a=new Set;for(const o of Object.keys(s))for(const i of Object.keys(s[o]))a.add(i);a.size>0&&t.set(r.name,a)}return t}function og(e,t){const r=new Map;for(const s of t){const a=e.get(s.filePath);a&&r.set(s.name,a)}return r}const ig=20;function Mc(e,t,r=ig){const s={};if(t.length===0||e.size===0)return s;const a=new Map;for(const p of t)a.set(p.name,p);const o=ag(t),i=og(e,t);for(const[p,u]of i)s[p]={status:u};const l=new Map;for(const[p]of i)l.set(p,new Set([p]));const c=[];for(const[p]of i)c.push({name:p,depth:0});for(;c.length>0;){const{name:p,depth:u}=c.shift();if(u>=r)continue;const h=l.get(p)||new Set,m=o.get(p);if(m)for(const f of m){if(!a.has(f))continue;l.has(f)||l.set(f,new Set);const g=l.get(f);let y=!1;for(const x of h)g.has(x)||(g.add(x),y=!0);y&&c.push({name:f,depth:u+1})}}for(const[p,u]of l){if(i.has(p))continue;const h=[];for(const m of u){const f=a.get(m),g=i.get(m);f&&g&&h.push({name:m,filePath:f.filePath,changeType:g})}h.sort((m,f)=>m.name.localeCompare(f.name)),s[p]={status:"impacted",impactedBy:h.length>0?h:void 0}}return s}function jo(e){if(Array.isArray(e))return e;if(e&&typeof e=="object"){const t=e;for(const s of["components","entries","functions","glossary"]){const a=t[s];if(Array.isArray(a))return a}for(const s of Object.values(t))if(Array.isArray(s))return s;const r=Object.entries(t);if(r.length>0&&r.every(([,s])=>s&&typeof s=="object"&&!Array.isArray(s)))return r.map(([s,a])=>({...a,filePath:s}))}return[]}function lg(e){return jo(e).filter(r=>r.testFile&&r.returnType!=="JSX.Element"&&r.returnType!=="React.ReactNode").map(r=>({name:r.name,filePath:r.filePath,description:r.description||"",testFile:r.testFile,feature:r.feature}))}function $i(e,t){var r,s,a,o,i;return t?!!((r=e.metadata)!=null&&r.executionResult):!!((a=(s=e.metadata)==null?void 0:s.screenshotPaths)!=null&&a[0])&&!((o=e.metadata)!=null&&o.noScreenshotSaved)&&!((i=e.metadata)!=null&&i.sameAsDefault)}function cg(e,t){return e.filter(r=>r.analyses&&r.analyses.length>0).map(r=>{var h;const s=r.analyses[0],a=s.scenarios||[],o=!((h=s.status)!=null&&h.finishedAt),i=r.entityType||"visual",l=i==="library"||i==="functionCall",c=a.filter(m=>$i(m,l)),p=a.filter(m=>!$i(m,l)),u=t.find(m=>m.filePath===(r.filePath||""));return{sha:r.sha,name:r.name,entityType:i,filePath:r.filePath||"",analysisId:s.id,isAnalyzing:o,scenarioCount:a.length,scenarios:c.map(m=>{var f,g;return{id:m.id,name:m.name,description:m.description||"",screenshotPath:((g=(f=m.metadata)==null?void 0:f.screenshotPaths)==null?void 0:g[0])||null}}),pendingScenarios:p.map(m=>m.name),testFile:u==null?void 0:u.testFile}})}function dg(e,t){var s;const r={};for(const a of e){const i=(((s=a.metadata)==null?void 0:s.importedExports)||[]).map(l=>l.name).filter(l=>t.has(l));i.length>0&&(r[a.name]=i)}return r}function ug(e,t,r){const s={...e},a=new Map;for(const o of r)o.filePath&&a.set(o.filePath,o.name);for(const[o,i]of Object.entries(t)){if(s[o])continue;const l=a.get(i);l&&s[l]&&(s[o]=s[l])}return s}function Tt(e,t){const r=new Map;for(const s of e)r.set(t(s),s);return[...r.values()]}function Zt(e){return e.replace(/[^a-zA-Z0-9_]+/g,"_")}function $c(e){return e.toLowerCase().replace(/[^a-z0-9]+/g,"-").replace(/^-+|-+$/g,"")}function Us(e){return e.replace("T"," ").replace(/\.\d{3}Z$/,"")}function Ic(e,t){return!!(e.created_at&&e.created_at>=t||e.updated_at&&e.updated_at>=t)}const pg=["defaultScreenSize","screenSizes","projectTitle","projectDescription"];function P2(e){try{const t=JSON.parse(ce.readFileSync(e,"utf8")),r={};for(const s of pg)t[s]!==void 0&&(r[s]=t[s]);return r}catch{return{}}}function hg(e){const t=ee.join(e,".codeyam","editor-step.json");try{ce.unlinkSync(t)}catch{}}function Ba(e,t,r){const s=e&&e.startsWith("/");return s&&t?`${t}${e}`:e&&!s?e:t||r||null}function mg(e){var t,r;try{const s=ee.join(e,".codeyam","config.json"),a=JSON.parse(ce.readFileSync(s,"utf8"));if((t=a.defaultScreenSize)!=null&&t.width&&((r=a.defaultScreenSize)!=null&&r.height))return{width:a.defaultScreenSize.width,height:a.defaultScreenSize.height}}catch{}return null}function To(e){try{const t=ee.join(e,".codeyam","config.json"),r=JSON.parse(ce.readFileSync(t,"utf8"));if(r.screenSizes&&typeof r.screenSizes=="object"&&!Array.isArray(r.screenSizes))return r.screenSizes}catch{}return{}}function fg(e){var t,r;return{width:e.bodyWidth||((t=e.projectDefault)==null?void 0:t.width)||1280,height:e.bodyHeight||((r=e.projectDefault)==null?void 0:r.height)||720}}function ws(e){let t=null;if(e.dimension){const a=To(e.codeyamRoot)[e.dimension];a!=null&&a.width&&(a!=null&&a.height)&&(t={width:a.width,height:a.height})}const r=t||mg(e.codeyamRoot);return fg({bodyWidth:e.bodyWidth,bodyHeight:e.bodyHeight,projectDefault:r})}async function gg(e,t){const r=t.dimensions?JSON.stringify(t.dimensions):null,s=t.screenshotPaths?JSON.stringify(t.screenshotPaths):null,a=await e.selectFrom("editor_scenarios").selectAll().where("name","=",t.name).where("project_id","=",t.projectId).orderBy("created_at","desc").execute();if(a.length>0){const c=a[0].id,p={description:t.description,component_name:t.componentName,component_path:t.componentPath,url:t.url,type:t.type,viewport_width:t.viewportWidth,viewport_height:t.viewportHeight,updated_at:new Date().toISOString().replace("T"," ").replace(/\.\d{3}Z$/,"")};t.dimensions!==void 0&&(p.dimensions=r,p.screenshot_paths=s),t.pageFilePath!==void 0&&(p.page_file_path=t.pageFilePath),t.entitySha!==void 0&&(p.entity_sha=t.entitySha),t.displayName!==void 0&&(p.display_name=t.displayName),await e.updateTable("editor_scenarios").set(p).where("id","=",c).execute();const u=a.slice(1).map(h=>h.id);return u.length>0&&await e.deleteFrom("editor_scenarios").where("id","in",u).execute(),{scenarioId:c,isNew:!1,cleanedUpIds:u}}const o=globalThis.crypto.randomUUID(),i={id:o,project_id:t.projectId,name:t.name,description:t.description,component_name:t.componentName,component_path:t.componentPath,url:t.url,type:t.type,viewport_width:t.viewportWidth,viewport_height:t.viewportHeight};return t.dimensions!==void 0&&(i.dimensions=r,i.screenshot_paths=s),t.pageFilePath!==void 0&&(i.page_file_path=t.pageFilePath),t.entitySha!==void 0&&(i.entity_sha=t.entitySha),t.displayName!==void 0&&(i.display_name=t.displayName),await e.insertInto("editor_scenarios").values(i).execute(),{scenarioId:o,isNew:!0,cleanedUpIds:[]}}function yg(e,t){const r=ee.join(e,".codeyam","editor-scenarios"),s=ee.join(r,"screenshots");for(const a of t){for(const o of[`${a}.json`,`${a}.seed.json`,ee.join("screenshots",`${a}.png`)])try{ce.unlinkSync(ee.join(r,o))}catch{}try{const o=ce.readdirSync(s);for(const i of o)if(i.startsWith(`${a}--`)&&i.endsWith(".png"))try{ce.unlinkSync(ee.join(s,i))}catch{}}catch{}}}function xg(e){const{lookupFilePath:t,scenarioType:r,projectRoot:s}=e;if(r!=="application"&&r!=="user")return{valid:!0};if(!t)return{valid:!0};const a=ee.join(s,".codeyam","glossary.json");let o=[];try{const l=JSON.parse(ce.readFileSync(a,"utf8"));o=jo(l)}catch{}if(!o.some(l=>l.filePath===t)){const l=o.length===0?` glossary.json is empty or could not be parsed. It must be a JSON array: [{"name": "...", "filePath": "${t}", ...}]`:` Found ${o.length} entries but none with filePath "${t}".`;return{valid:!1,error:`No glossary entry found for '${t}'.${l} Add this file to .codeyam/glossary.json before registering app scenarios.`}}return{valid:!0,needsAnalysis:!0}}function bg(e){const{componentName:t,url:r}=e;return!t||!r?{valid:!0}:Ys(r)?{valid:!0}:{valid:!1,error:`Scenario has componentName "${t}" but URL "${r}" is not an isolation route. Component scenarios must use an isolation URL like /isolated-components/${t}?s=ScenarioName or /codeyam-isolate/${t}?s=ScenarioName. Either change the URL to an isolation route, or remove componentName to register as an application scenario.`}}const wg=vg;async function vg(e,t){const r=new Map,s=new Map;for(const i of t)if(i.filePath){r.set(`${i.name}::${i.filePath}`,i);const l=s.get(i.filePath);(!l||!l.isDefaultExport||i.isDefaultExport)&&s.set(i.filePath,i)}const a=await e.selectFrom("editor_scenarios").selectAll().where(i=>i.or([i("component_path","is not",null),i("page_file_path","is not",null)])).execute();if(a.length===0)return{updated:0};let o=0;for(const i of a){const l=i,c=l.component_path||l.page_file_path;if(!c)continue;const p=l.component_name&&r.get(`${l.component_name}::${c}`)||s.get(c);if(!p||l.entity_sha===p.sha)continue;let u=null;l.component_name?u=l.component_name:l.page_file_path&&l.page_file_path.startsWith("app/")?u=It(_t(l.page_file_path)):l.url&&(u=ct(l.url)),await e.updateTable("editor_scenarios").set({entity_sha:p.sha,...u?{display_name:u}:{}}).where("id","=",l.id).execute(),o++}return{updated:o}}function Ng(e){const{activeAnalyzedScenario:t,analyzedPreviewUrl:r,activeScenarioId:s,scenarios:a,proxyUrl:o,devServerUrl:i,zoomComponent:l}=e;if(t&&r)return r;if(t&&!r)return null;if(s){const p=a.find(u=>u.id===s);if(p!=null&&p.url){const u=o||i;return u?p.url.startsWith("/")?`${u}${p.url}`:p.url:null}}const c=o||i;if(!c)return null;if(l&&s){const p=a.find(h=>h.id===s),u=p?Zt(p.name):"Default";return`${c}/__codeyam__/${l}/${u}`}return c}function Rc(e,t){if(!e||!t)return e;try{const r=new URL(e),s=t.indexOf("?");return s>=0?(r.pathname=t.slice(0,s),r.search=t.slice(s)):(r.pathname=t,r.search=""),r.href}catch{return e}}function Cg(e,t){return e?e!==t:!1}function Ii(e){if(e.length!==0)return e.find(t=>t.type==="application")||e[0]}function Na(e,t,r){if(!e.viewportWidth||!e.viewportHeight)return r??null;const s=t.find(a=>a.width===e.viewportWidth&&a.height===e.viewportHeight);return{name:(s==null?void 0:s.name)||"Custom",width:e.viewportWidth,height:e.viewportHeight}}function Sg(e,t){const r=t.width,s=t.height??900,a=e.width,o=e.height;return r<=a&&s<=o?1:Math.min(a/r,o/s)}async function _g({params:e}){var l;const{sha:t,scenarioId:r}=e;if(!t||!r)throw X("Invalid parameters",{status:400});const s=await xn(t);if(!s)throw X("Entity not found",{status:404});const a=await $s(s),o=((l=a==null?void 0:a.scenarios)==null?void 0:l.find(c=>c.id===r))||null;if(!o)throw X("Scenario not found",{status:404});const i=await ze();return X({entity:s,scenario:o,analysis:a,projectSlug:i})}const Ca=[{name:"Mobile",width:375,height:667},{name:"Tablet",width:768,height:1024},{name:"Laptop",width:1024,height:768},{name:"Desktop",width:1440,height:900}],kg=Qe(function(){const{entity:t,scenario:r,analysis:s,projectSlug:a}=tt(),o=Mt(),i=fe(null),l=fe(null),[c,p]=M(null),[u,h]=M(1440),[m,f]=M({name:"Desktop",width:1440,height:900}),[g,y]=M(!1),[x,w]=M(null),[b,v]=M("chat"),[N,k]=M(0),[E,C]=M(null),S=ie(oe=>{C(oe||null),k(ge=>ge+1)},[]),{customSizes:_,addCustomSize:j}=Bs(a),$=ae(()=>[...Ca,..._],[_]),{interactiveServerUrl:P,isStarting:I,isLoading:R,showIframe:T,iframeKey:G,onIframeLoad:J}=vn({analysisId:s==null?void 0:s.id,scenarioId:r==null?void 0:r.id,scenarioName:r==null?void 0:r.name,projectSlug:a,enabled:!0,refreshTrigger:N}),F=ae(()=>Rc(P,E),[P,E]),{lastLine:H}=Ut(a,I||R),U=()=>{o(`/entity/${t.sha}`)},z=(oe,ge)=>{h(oe);const _e=$.find(pe=>pe.width===oe&&pe.height===ge);p(_e||null),f({name:(_e==null?void 0:_e.name)||"Custom",width:oe,height:ge})},A=oe=>{p(oe),h(oe.width),f({name:oe.name,width:oe.width,height:oe.height})},Y=oe=>{j(oe,m.width,m.height??900),y(!1),f(ge=>({...ge,name:oe}))},V=()=>{var ge;v("chat"),(ge=l.current)==null||ge.sendInput("Create a new scenario for this entity based on the work we've just done. Create a name and description that reflects what the live preview is showing. Use the scenario data you've changed to create a new scenario in the database. If the data structure was fixed in any way you need to update that in the database as well and backfill all existing scenarios, then save to the database and capture a screenshot. Remember the database is at `.codeyam/db.sqlite3`, the scenarios table has all scenarios and the analyses table contains the scenariosDataStructure is its metadata.")},W=((s==null?void 0:s.scenarios)||[]).filter(oe=>{var ge;return!((ge=oe.metadata)!=null&&ge.sameAsDefault)}),Q=W.findIndex(oe=>oe.id===(r==null?void 0:r.id)),B=Q+1,D=W.length,O=Q>0,q=Q<W.length-1,re=()=>{if(O){const oe=W[Q-1];o(`/entity/${t.sha}/scenarios/${oe.id}/dev`)}},le=()=>{if(q){const oe=W[Q+1];o(`/entity/${t.sha}/scenarios/${oe.id}/dev`)}},he=I||R||!T;return d("div",{className:"fixed inset-0 bg-[#2d2d2d] flex flex-col",children:[d("div",{className:"bg-[#3d3d3d] h-12 flex items-center px-4 gap-4 shrink-0 z-20",children:[d("div",{className:"flex items-center gap-3 flex-1 min-w-0",children:[n("img",{src:Ps,alt:"CodeYam",className:"h-6 brightness-0 invert"}),n("span",{className:"text-white font-medium text-sm whitespace-nowrap",children:t.name}),d("div",{className:"flex items-center gap-2 shrink-0",children:[n("button",{onClick:re,disabled:!O,className:`${O?"text-white hover:text-gray-300":"text-gray-600 cursor-not-allowed"} transition-colors`,"aria-label":"Previous scenario",children:n("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",children:n("path",{d:"M12.5 15L7.5 10L12.5 5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})})}),d("span",{className:"text-gray-400 text-sm",children:[B,"/",D]}),n("button",{onClick:le,disabled:!q,className:`${q?"text-white hover:text-gray-300":"text-gray-600 cursor-not-allowed"} transition-colors`,"aria-label":"Next scenario",children:n("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",children:n("path",{d:"M7.5 15L12.5 10L7.5 5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})})})]}),d("div",{className:"flex items-center gap-2 ml-2 min-w-0",children:[n("span",{className:"text-white font-semibold text-xs whitespace-nowrap shrink-0",children:r==null?void 0:r.name}),(r==null?void 0:r.description)&&d("div",{className:"relative group min-w-0",children:[n("span",{className:"text-gray-400 text-xs truncate block",children:r.description}),n("div",{className:"absolute left-0 top-full mt-1 hidden group-hover:block z-50 bg-black text-white text-xs px-3 py-2 rounded shadow-lg max-w-md",children:r.description})]})]}),n("span",{className:"bg-[#005c75] text-white text-[10px] font-bold px-2 py-0.5 rounded uppercase tracking-wider ml-2",children:"Dev Mode"})]}),n("button",{onClick:U,className:"text-white hover:text-gray-300 transition-colors ml-4","aria-label":"Close dev mode",children:n("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",children:n("path",{d:"M15 5L5 15M5 5L15 15",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"})})})]}),d("div",{className:"flex-1 flex min-h-0",children:[d("div",{className:"flex-1 flex flex-col min-w-0",children:[d("div",{className:"bg-[#e5e7eb] border-b border-[rgba(0,0,0,0.1)] shrink-0 z-10 h-6 flex items-center justify-center relative",children:[n("div",{className:"absolute inset-0 flex justify-center",children:n("div",{style:{maxWidth:`${Ca[Ca.length-1].width}px`,width:"100%"},children:n(Ao,{currentViewportWidth:u,currentPresetName:m.name,onDevicePresetClick:A,devicePresets:$,hideLabel:!0,onHoverChange:w,lightMode:!0})})}),d("div",{className:"relative z-10 flex items-center gap-2",children:[d("div",{className:"relative w-28 h-5",children:[d("div",{className:"absolute inset-0 bg-white text-gray-900 text-xs px-2 rounded flex items-center justify-between pointer-events-none border border-gray-300",children:[n("span",{className:"leading-none",children:(x==null?void 0:x.name)||m.name}),n("svg",{width:"10",height:"10",viewBox:"0 0 12 12",fill:"none",className:"shrink-0",children:n("path",{d:"M3 4.5L6 7.5L9 4.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})})]}),d("select",{value:m.name,onChange:oe=>{const ge=$.find(_e=>_e.name===oe.target.value);ge&&A(ge)},className:"relative w-full h-full opacity-0 cursor-pointer",children:[$.map(oe=>n("option",{value:oe.name,children:oe.name},oe.name)),m.name==="Custom"&&n("option",{value:"Custom",children:"Custom"})]})]}),n("input",{type:"number",value:m.width,onChange:oe=>{const ge=parseInt(oe.target.value,10);!isNaN(ge)&&ge>0&&z(ge,m.height??900)},className:"bg-white text-gray-900 text-xs px-1 rounded border border-gray-300 outline-none w-16 text-center h-5 leading-none",min:"200",max:"3840"}),n("span",{className:"text-gray-400 text-xs h-5 flex items-center leading-none",children:"x"}),n("span",{className:"bg-gray-100 text-gray-600 text-xs px-1 rounded w-14 text-center h-5 flex items-center justify-center leading-none",children:m.height??900}),m.name==="Custom"&&n("button",{onClick:()=>y(!0),className:"bg-white text-gray-900 text-xs px-2 rounded h-5 flex items-center leading-none border border-gray-300 hover:bg-gray-50 transition-colors",children:"Save"})]})]}),n("div",{className:"flex-1 flex items-center justify-center overflow-auto p-8",style:{backgroundImage:`
|
|
120
|
+
linear-gradient(45deg, #ebebeb 25%, transparent 25%),
|
|
121
|
+
linear-gradient(-45deg, #ebebeb 25%, transparent 25%),
|
|
122
|
+
linear-gradient(45deg, transparent 75%, #ebebeb 75%),
|
|
123
|
+
linear-gradient(-45deg, transparent 75%, #ebebeb 75%)
|
|
124
|
+
`,backgroundSize:"16px 16px",backgroundPosition:"0 0, 0 8px, 8px -8px, -8px 0px",backgroundColor:"#fafafa"},children:P?d("div",{className:"relative bg-white w-full h-full",style:{maxWidth:`${m.width}px`,maxHeight:`${m.height}px`},children:[he&&n("div",{className:"absolute inset-0 flex items-center justify-center z-10",children:d("div",{className:"flex flex-col items-center justify-center gap-6 bg-white rounded-lg p-8 shadow-sm w-[500px] h-[300px]",children:[n("div",{className:"mb-4",children:n(Bt,{})}),d("div",{className:"flex flex-col gap-3 text-center",children:[n("h2",{className:"text-xl font-medium text-black leading-[28px] m-0 font-['IBM_Plex_Sans']",children:"Loading Preview"}),n("p",{className:"text-sm text-[#666] leading-5 m-0 font-['IBM_Plex_Sans']",children:"Waiting for the dev server to be ready"}),H&&d("p",{className:"text-xs font-mono text-[#005c75] text-center leading-5 m-0 mt-3 font-['IBM_Plex_Mono'] uppercase",children:[n(zn,{}),H]})]})]})}),n("iframe",{ref:i,src:F||P,className:"w-full h-full border-none",title:`Dev mode preview: ${r==null?void 0:r.name}`,onLoad:J,style:{opacity:T?1:0}},G)]}):d("div",{className:"flex flex-col items-center justify-center gap-6 w-[500px] h-[300px] bg-white rounded-lg p-8 shadow-sm",children:[n("div",{className:"mb-4",children:n(Bt,{})}),d("div",{className:"flex flex-col gap-3 text-center",children:[n("h2",{className:"text-xl font-medium text-black leading-[28px] m-0 font-['IBM_Plex_Sans']",children:"Starting Dev Mode"}),n("p",{className:"text-sm text-[#666] leading-5 m-0 font-['IBM_Plex_Sans']",children:"Setting up a sandboxed environment with live preview"}),H&&d("p",{className:"text-xs font-mono text-[#005c75] text-center leading-5 m-0 mt-3 font-['IBM_Plex_Mono'] uppercase",children:[n(zn,{}),H]})]})]})})]}),d("aside",{className:"w-[50%] min-w-[400px] max-w-[800px] bg-[#1e1e1e] border-l border-[#3d3d3d] shrink-0 flex flex-col overflow-hidden",children:[d("div",{className:"border-b border-[#3d3d3d] px-4 shrink-0 flex items-center justify-between",children:[d("div",{className:"flex items-center gap-0",children:[d("button",{onClick:()=>v("chat"),className:`px-3 py-2 text-xs font-medium transition-colors relative cursor-pointer ${b==="chat"?"text-white":"text-gray-500 hover:text-gray-300"}`,children:["Chat",b==="chat"&&n("span",{className:"absolute bottom-0 left-3 right-3 h-0.5 bg-[#005c75]"})]}),d("button",{onClick:()=>v("scenarios"),className:`px-3 py-2 text-xs font-medium transition-colors relative cursor-pointer ${b==="scenarios"?"text-white":"text-gray-500 hover:text-gray-300"}`,children:["Scenarios",b==="scenarios"&&n("span",{className:"absolute bottom-0 left-3 right-3 h-0.5 bg-[#005c75]"})]})]}),b==="chat"&&n("button",{onClick:V,disabled:!P,className:"px-3 py-1 text-[11px] font-medium rounded bg-[#005c75] text-white hover:bg-[#004a5c] transition-colors disabled:bg-gray-600 disabled:text-gray-400 disabled:cursor-not-allowed cursor-pointer",children:"Save Scenario"})]}),n("div",{style:{display:b==="chat"?"flex":"none"},className:"flex-1 overflow-hidden flex-col",children:n(Ac,{ref:l,entityName:t.name,entityType:t.entityType,entitySha:t.sha,entityFilePath:t.filePath||t.localFilePath,scenarioName:r==null?void 0:r.name,scenarioDescription:r==null?void 0:r.description,analysisId:s==null?void 0:s.id,projectSlug:a,onRefreshPreview:S})}),b==="scenarios"&&n(tg,{scenarios:W,currentScenarioId:r==null?void 0:r.id,entitySha:t.sha,cacheBuster:0})]})]}),n(Ec,{serverUrl:P,isStarting:I,projectSlug:a}),g&&n(Po,{width:m.width,height:m.height??900,onSave:Y,onCancel:()=>y(!1)})]})}),Eg=Object.freeze(Object.defineProperty({__proto__:null,default:kg,loader:_g},Symbol.toStringTag,{value:"Module"}));async function Ag({request:e}){if(e.method!=="POST")return new Response("Method not allowed",{status:405});try{const t=await e.json(),{url:r,filename:s,viewportWidth:a,viewportHeight:o}=t;if(!r||!s)return new Response(JSON.stringify({error:"url and filename are required"}),{status:400,headers:{"Content-Type":"application/json"}});const i=process.env.CODEYAM_ROOT_PATH||process.cwd(),l=L.join(i,".codeyam","journal","screenshots");await Pe.mkdir(l,{recursive:!0});const c=s.replace(/[^a-zA-Z0-9_\-T]/g,"_"),p=L.join(l,`${c}.png`),u=L.dirname(new URL(import.meta.url).pathname);let h=u;for(let b=0;b<5;b++){const v=L.dirname(h);if(L.basename(v)==="webserver"||L.basename(h)==="webserver"){h=L.basename(h)==="webserver"?h:v;break}h=v}const m=[L.join(h,"scripts","journalCapture.ts"),L.join(h,"app","lib","journalCapture.ts"),L.join(i,"codeyam-cli","src","webserver","app","lib","journalCapture.ts"),L.resolve(u,"..","lib","journalCapture.ts")];let f="";for(const b of m)try{await Pe.access(b),f=b;break}catch{}f||(console.warn(`[editor-journal-screenshot] journalCapture.ts not found in any of: ${m.join(", ")}`),f=m[0]);const g=ws({bodyWidth:a,bodyHeight:o,codeyamRoot:i}),y=JSON.stringify({url:r,outputPath:p,viewportWidth:g.width,viewportHeight:g.height}),x=await new Promise(b=>{const v=St("npx",["tsx",f,y],{cwd:i,env:{...process.env}});let N="",k="";v.stdout.on("data",E=>{N+=E.toString()}),v.stderr.on("data",E=>{k+=E.toString()}),v.on("close",E=>{b(E===0?{success:!0,output:N}:{success:!1,output:N,error:k||`Process exited with code ${E}`})}),v.on("error",E=>{b({success:!1,output:"",error:E.message})})});if(!x.success)return new Response(JSON.stringify({error:"Failed to capture screenshot",details:x.error}),{status:500,headers:{"Content-Type":"application/json"}});const w=`screenshots/${c}.png`;return new Response(JSON.stringify({success:!0,path:w}),{headers:{"Content-Type":"application/json"}})}catch(t){const r=t instanceof Error?t.message:String(t);return console.error("[editor-journal-screenshot] Error:",t),new Response(JSON.stringify({error:r}),{status:500,headers:{"Content-Type":"application/json"}})}}const Pg=Object.freeze(Object.defineProperty({__proto__:null,action:Ag},Symbol.toStringTag,{value:"Module"})),Dc=oo({dimensions:{height:720,width:1200},updateDimensions:()=>{},iframeRef:{current:null},scale:1,updateScale:()=>{},maxWidth:1200,updateMaxWidth:()=>{}}),Mo=()=>{const e=ks(Dc);if(!e)throw new Error("useWebContainer must be used within a WebContainerProvider");return e},Ws=({children:e})=>{const[t,r]=M({height:720,width:1200}),[s,a]=M(1),[o,i]=M(1200),l=fe(null),c=ie(({height:h,width:m})=>{r(f=>({height:h??f.height,width:m??f.width}))},[]),p=ie(h=>{a(h)},[]),u=ie(h=>{i(h)},[]);return n(Dc.Provider,{value:{dimensions:t,updateDimensions:c,iframeRef:l,scale:s,updateScale:p,maxWidth:o,updateMaxWidth:u},children:e})},jg=typeof window<"u";function Tg(){const[e,t]=M(null);return se(()=>{import("react-resizable").then(r=>{t(()=>r.ResizableBox)}),Promise.resolve({ })},[]),e}const Mg=1200,$g=720,Ri=30,Ig=({id:e,scenarioName:t,iframeUrl:r,defaultWidth:s=1440,defaultHeight:a=900,onDataOverride:o,onIframeLoad:i,onScaleChange:l,onDimensionChange:c})=>{const p=Tg(),[u,h]=M(!1),[m,f]=M(!1),[g,y]=M(Mg),[x,w]=M($g),[b,v]=M(null),[N,k]=M(null),{dimensions:E,updateDimensions:C,iframeRef:S,updateScale:_,updateMaxWidth:j}=Mo(),$=ae(()=>Math.min(1,g/E.width),[g,E.width]),P=N!==null?N:$;se(()=>{u||(_(P),l==null||l(P))},[P,_,l,u]),se(()=>{j(g)},[g,j]);const I=ie(()=>{h(!0),k($)},[$]),R=ie(()=>{h(!1),k(null)},[]),T=ie((U,z)=>{const A=N!==null?N:1,Y=Math.round(z.size.width/A);C({width:Y}),c==null||c(Y,E.height)},[C,N,c,E.height]),G=ie(()=>{setTimeout(()=>{f(!0)},100),i&&i()},[i]);se(()=>{const U=z=>{if(z.data.type==="codeyam-resize"){if(t&&z.data.name!==t||E.height===z.data.height||z.data.height===0)return;C({height:z.data.height})}};return window.addEventListener("message",U),()=>{window.removeEventListener("message",U)}},[S,t,s,E,C]),se(()=>{m&&o&&o(S.current)},[m,o,S]),se(()=>{if(!t)return;const U=setInterval(()=>{var z,A;(A=(z=S==null?void 0:S.current)==null?void 0:z.contentWindow)==null||A.postMessage({type:"codeyam-respond",name:t},"*")},1e3);return()=>clearInterval(U)},[t,S]),se(()=>{const U=()=>{const z=document.getElementById("scenario-container");if(!z)return;const A=z.getBoundingClientRect(),Y=z.clientWidth-Ri*2,V=window.innerHeight-A.top-Ri*2,W=Math.max(V,400),Q=window.innerHeight-A.top;y(Y),w(W),v(Q)};return U(),window.addEventListener("resize",U),()=>window.removeEventListener("resize",U)},[]),se(()=>{C({width:s,height:a})},[s,a,C]);const J=ae(()=>E.width*P,[E.width,P]),F=ae(()=>{const U=E.height,z=U*P;return U&&U!==720&&U!==900&&z<x?z:x},[E.height,x,P]),H=ie(()=>{window.history.back()},[]);return!jg||!p?n("div",{className:"relative bg-gray-100 w-full h-full flex items-center justify-center",children:n("p",{className:"text-gray-500",children:"Loading interactive view..."})}):d("div",{id:"scenario-container",className:"relative bg-gray-100 w-full flex items-center justify-center",style:b?{height:`${b}px`}:{},children:[u&&n("div",{className:"fixed inset-0 z-50 bg-transparent"}),n("style",{children:`
|
|
125
|
+
.react-resizable-handle-e {
|
|
126
|
+
display: flex !important;
|
|
127
|
+
align-items: center !important;
|
|
128
|
+
justify-content: center !important;
|
|
129
|
+
width: 6px !important;
|
|
130
|
+
height: 48px !important;
|
|
131
|
+
right: -8px !important;
|
|
132
|
+
top: 50% !important;
|
|
133
|
+
transform: translateY(-50%) !important;
|
|
134
|
+
cursor: ew-resize !important;
|
|
135
|
+
background: #d1d5db !important;
|
|
136
|
+
border-radius: 3px !important;
|
|
137
|
+
opacity: 0 !important;
|
|
138
|
+
transition: all 0.2s ease !important;
|
|
139
|
+
}
|
|
140
|
+
.react-resizable-handle-e:hover {
|
|
141
|
+
opacity: 0.8 !important;
|
|
142
|
+
background: #9ca3af !important;
|
|
143
|
+
}
|
|
144
|
+
.react-resizable:hover .react-resizable-handle-e {
|
|
145
|
+
opacity: 0.4 !important;
|
|
146
|
+
}
|
|
147
|
+
`}),n(p,{width:J,height:F,minConstraints:[300,200],maxConstraints:[g,x],className:"relative bg-white rounded-lg shadow-md",resizeHandles:["e"],onResizeStart:I,onResizeStop:R,onResize:T,children:n("div",{className:"overflow-auto",style:{width:`${J}px`,height:`${F}px`},children:n("div",{style:{width:`${E.width}px`,height:`${E.height}px`,transform:`scale(${P})`,transformOrigin:"top left"},children:r?n("iframe",{ref:S,className:"w-full h-full rounded-lg",src:r,onLoad:G,sandbox:"allow-scripts allow-same-origin"}):d("p",{className:"w-full h-full flex flex-col gap-3 items-center justify-center",children:[n("span",{className:"text-xl font-light",children:"Oops! Looks like this scenario is not available yet. Please check back later."}),n("span",{className:"text-blue-600 cursor-pointer",onClick:H,children:"Go back"})]})})})},`resizable-box-${e}`)]})};function Rg({presets:e,customSizes:t,currentWidth:r,currentHeight:s,scale:a,onSizeChange:o,onSaveCustomSize:i,onRemoveCustomSize:l,className:c=""}){const[p,u]=M(!1),[h,m]=M(String(r)),[f,g]=M(String(s)),[y,x]=M(!1),[w,b]=M(!1),v=fe(null);se(()=>{y||m(String(r))},[r,y]),se(()=>{w||g(String(s))},[s,w]),se(()=>{const P=I=>{v.current&&!v.current.contains(I.target)&&u(!1)};return document.addEventListener("mousedown",P),()=>document.removeEventListener("mousedown",P)},[]);const N=ae(()=>{const P=e.find(R=>R.width===r&&R.height===s);if(P)return P.name;const I=t.find(R=>R.width===r&&R.height===s);return I?I.name:"Custom"},[e,t,r,s]),k=N==="Custom",E=P=>{o(P.width,P.height),u(!1)},C=P=>{const I=P.target.value;m(I);const R=parseInt(I,10);!isNaN(R)&&R>0&&o(R,s)},S=P=>{const I=P.target.value;g(I);const R=parseInt(I,10);!isNaN(R)&&R>0&&o(r,R)},_=()=>{x(!1);const P=parseInt(h,10);(isNaN(P)||P<=0)&&m(String(r))},j=()=>{b(!1);const P=parseInt(f,10);(isNaN(P)||P<=0)&&g(String(s))},$=P=>{(P.key==="Enter"||P.key==="Escape")&&P.target.blur()};return d("div",{className:`flex items-center gap-3 ${c}`,children:[d("div",{className:"relative",ref:v,children:[d("button",{onClick:()=>u(!p),className:"flex items-center gap-2 px-3 py-1.5 bg-white border border-gray-300 rounded-md text-sm font-medium text-gray-700 hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-[#005c75] focus:ring-offset-1 min-w-[120px] justify-between",children:[n("span",{children:N}),n("svg",{className:`w-4 h-4 transition-transform ${p?"rotate-180":""}`,fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",children:n("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M19 9l-7 7-7-7"})})]}),p&&n("div",{className:"absolute top-full left-0 mt-1 min-w-full bg-white border border-gray-200 rounded-md shadow-lg z-50",children:d("div",{className:"py-1",children:[e.length>0&&d(ye,{children:[n("div",{className:"px-3 py-1 text-xs font-semibold text-gray-500 uppercase tracking-wider whitespace-nowrap",children:"Presets"}),e.map(P=>d("button",{onClick:()=>E(P),className:`w-full text-left px-3 py-2 text-sm hover:bg-gray-100 flex justify-between items-center gap-4 whitespace-nowrap ${N===P.name?"bg-[#f0f7f9] text-[#005c75]":"text-gray-700"}`,children:[n("span",{children:P.name}),d("span",{className:"text-xs text-gray-500",children:[P.width," x ",P.height]})]},P.name))]}),t.length>0&&d(ye,{children:[n("div",{className:"border-t border-gray-100 my-1"}),n("div",{className:"px-3 py-1 text-xs font-semibold text-gray-500 uppercase tracking-wider whitespace-nowrap",children:"Custom"}),[...t].sort((P,I)=>P.width-I.width).map(P=>d("div",{className:`flex items-center gap-1 hover:bg-gray-100 ${N===P.name?"bg-[#f0f7f9] text-[#005c75]":"text-gray-700"}`,children:[d("button",{onClick:()=>E(P),className:"flex-1 text-left px-3 py-2 text-sm flex justify-between items-center gap-4 whitespace-nowrap cursor-pointer",children:[n("span",{children:P.name}),d("span",{className:"text-xs text-gray-500",children:[P.width," x ",P.height]})]}),l&&n("button",{onClick:I=>{I.stopPropagation(),N===P.name&&e.length>0&&o(e[0].width,e[0].height),l(P.name)},className:"p-1.5 mr-1 text-gray-400 hover:text-red-500 hover:bg-red-50 rounded cursor-pointer transition-colors",title:"Remove custom size",children:n("svg",{className:"w-4 h-4",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",children:n("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M6 18L18 6M6 6l12 12"})})})]},P.name))]})]})})]}),d("div",{className:"flex items-center gap-1 text-sm",children:[d("div",{className:"flex items-center",children:[n("input",{type:"text",value:h,onChange:C,onFocus:()=>x(!0),onBlur:_,onKeyDown:$,className:"w-16 px-2 py-1 text-right border border-gray-300 rounded-l-md text-sm focus:outline-none focus:ring-2 focus:ring-[#005c75] focus:border-[#005c75]"}),n("span",{className:"px-2 py-1 bg-gray-100 border border-l-0 border-gray-300 rounded-r-md text-gray-500 text-sm",children:"px"})]}),n("span",{className:"text-gray-400 mx-1",children:"×"}),d("div",{className:"flex items-center",children:[n("input",{type:"text",value:f,onChange:S,onFocus:()=>b(!0),onBlur:j,onKeyDown:$,className:"w-16 px-2 py-1 text-right border border-gray-300 rounded-l-md text-sm focus:outline-none focus:ring-2 focus:ring-[#005c75] focus:border-[#005c75]"}),n("span",{className:"px-2 py-1 bg-gray-100 border border-l-0 border-gray-300 rounded-r-md text-gray-500 text-sm",children:"px"})]}),a!==void 0&&a<1&&d("span",{className:"text-xs text-gray-500 ml-1",children:["(",Math.round(a*100),"%)"]})]}),k&&n("button",{onClick:i,className:"px-3 py-1.5 bg-[#005c75] text-white text-sm font-medium rounded-md hover:bg-[#004a5c] focus:outline-none focus:ring-2 focus:ring-[#005c75] focus:ring-offset-1 transition-colors",children:"Save Custom Size"})]})}function Sa(e,t,r){if(Array.isArray(e)){if(!isNaN(parseInt(t)))return e[parseInt(t)];for(const s of e)if(s.name===t||s.title===t||s.id===t)return s}return e[t]}function Ya(e){return e&&(typeof e=="object"||Array.isArray(e))}function Dg(e){return Array.isArray(e)?e.length:void 0}function Og(e){const{data:t,structure:r}=e;if(!(!t&&!r)){if(Array.isArray(r))return Array.isArray(t)?t.map((s,a)=>a.toString()):[];if(typeof r=="object")return[...new Set([...Object.keys(t),...Object.keys(r)])].sort((a,o)=>{const i=Ya(t[a]),l=Ya(t[o]);return i&&!l?1:!i&&l?-1:a.localeCompare(o)});if(typeof t=="object")return Object.keys(t).sort((a,o)=>a.localeCompare(o))}}function Fg({scenarioFormData:e,handleInputChange:t}){return d("div",{className:"p-3 flex flex-col gap-3",children:[d("div",{className:"grid w-full max-w-sm items-center gap-1.5",children:[n("label",{htmlFor:"name",className:"text-sm font-medium text-gray-700",children:"Name"}),n("input",{type:"text",id:"name",placeholder:"Name",name:"name",value:e.name,onChange:t,required:!0,className:"w-full px-3 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500"})]}),d("div",{className:"grid w-full gap-1.5 pt-2",children:[n("label",{htmlFor:"description",className:"text-sm font-medium text-gray-700",children:"Description"}),n("textarea",{placeholder:"Type your message here.",id:"description",name:"description",value:e.description,onChange:t,required:!0,className:"w-full px-3 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500 min-h-[100px]"})]}),n("button",{type:"submit",className:"mt-3 w-full px-4 py-2 bg-blue-600 text-white rounded-md hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-blue-500 font-medium",children:"Save Name & Description"})]})}function Lg({path:e,namedPath:t,isArray:r,count:s,onClick:a}){const o=ie(()=>{a&&a(e)},[a,e]);return d("div",{className:"bg-blue-50 p-3 rounded-lg flex items-center justify-between cursor-pointer group hover:bg-blue-100 transition-colors border border-blue-200",onClick:o,children:[d("div",{className:"flex items-center gap-3",children:[r&&n("svg",{className:"w-4 h-4 text-gray-500",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",children:n("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M4 6h16M4 12h16M4 18h16"})}),d("div",{className:"capitalize font-medium text-gray-900",children:[t[t.length-1],s!==void 0&&` (${s})`]})]}),d("div",{className:"flex items-center gap-3",children:[r&&n("svg",{className:"w-5 h-5 text-red-500 opacity-0 group-hover:opacity-100 transition-opacity",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",children:n("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M19 7l-.867 12.142A2 2 0 0116.138 21H7.862a2 2 0 01-1.995-1.858L5 7m5 4v6m4-6v6m1-10V4a1 1 0 00-1-1h-4a1 1 0 00-1 1v3M4 7h16"})}),n("svg",{className:"w-4 h-4 text-gray-400",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",children:n("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M9 5l7 7-7 7"})})]})]})}var Oc=(e=>(e.STRING="string",e.NUMBER="number",e.BOOLEAN="boolean",e.UNION="union",e.OBJECT="object",e.ARRAY="array",e))(Oc||{});const zg=({name:e,value:t,options:r,onChange:s})=>{const a=ie(o=>{s({target:{name:e,value:o.target.value}})},[e,s]);return n("select",{name:e,value:t,onChange:a,className:"w-full px-3 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500",children:r.map((o,i)=>n("option",{value:o.trim(),children:o.trim()},i))})},Bg=({name:e,value:t,onChange:r})=>{const s=ie(a=>{const o=a.target.checked;r({target:{name:e,value:o}})},[e,r]);return n("label",{className:"flex items-center gap-2 cursor-pointer",children:n("input",{type:"checkbox",name:e,checked:t,onChange:s,className:`w-10 h-6 rounded-full appearance-none cursor-pointer transition-colors relative
|
|
148
|
+
bg-gray-300 checked:bg-blue-600
|
|
149
|
+
after:content-[''] after:absolute after:top-1 after:left-1 after:w-4 after:h-4
|
|
150
|
+
after:bg-white after:rounded-full after:transition-transform
|
|
151
|
+
checked:after:translate-x-4`})})};function Yg({dataType:e,path:t,value:r,onChange:s}){const a=ae(()=>t[t.length-1],[t]),o=ae(()=>t.join("-"),[t]),i=ie(c=>{s(t,c.target.value)},[s,t]),l=ie(c=>{s(t,c.target.value)},[s,t]);return d("div",{className:"grid w-full max-w-sm items-center gap-1.5",children:[n("label",{htmlFor:o,className:"capitalize text-sm font-medium text-gray-700",children:a==="~~codeyam-code~~"?"Dynamic Field":a}),e.includes("|")?n(zg,{name:o,value:r,options:e.split("|"),onChange:i}):e===Oc.BOOLEAN?n(Bg,{name:o,value:r??!1,onChange:l}):n("input",{id:o,name:o,type:"text",value:JSON.stringify(r??"").replace(/"/g,""),onChange:i,className:"w-full px-3 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500"},`Input-${o}`)]})}function Ug({analysis:e,scenarioName:t,dataItem:r,onResult:s,onGenerateData:a}){const[o,i]=M(!1),[l,c]=M(""),p=ie(async()=>{if(!a){console.error("onGenerateData prop is required for AI data generation");return}i(!0);try{const h=e.scenarios.find(x=>x.name===t);if(!h)throw new Error("Scenario not found");const m=e.scenarios.find(x=>x.name===Ts),f=await a(l,r);if(!f){console.error("Error getting AI guess for scenario data"),i(!1);return}const g=(x,w)=>{const b=Object.assign({},x);return y(x)&&y(w)&&Object.keys(w).forEach(v=>{y(w[v])?v in x?b[v]=g(x[v],w[v]):Object.assign(b,{[v]:w[v]}):Object.assign(b,{[v]:w[v]})}),b},y=x=>x&&typeof x=="object"&&!Array.isArray(x);h.metadata.data=g(g((m==null?void 0:m.metadata.data)||{},h.metadata.data),f.data||{}),s(h),i(!1),c("")}catch(h){console.error("Error generating AI data:",h),i(!1)}},[e,l,r,t,s,a]),u=ie(h=>{c(h.target.value)},[]);return d("div",{className:"w-full p-3 flex flex-col gap-2 rounded-lg border-2 border-blue-200 text-sm bg-blue-50",children:[n("div",{className:"font-medium text-gray-700",children:"Describe the data changes to the AI"}),n("textarea",{className:"peer w-full h-16 p-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500",placeholder:"Type your message here.",onChange:u,value:l}),n("button",{type:"button",disabled:o,className:`w-full px-4 py-2 bg-blue-600 text-white rounded-md hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-blue-500 disabled:bg-gray-400 disabled:cursor-not-allowed font-medium ${l.length>0?"flex":"hidden peer-focus-within:flex"} items-center justify-center gap-2`,onClick:()=>void p(),children:o?d(ye,{children:[d("svg",{className:"animate-spin h-4 w-4 text-white",xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",children:[n("circle",{className:"opacity-25",cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeWidth:"4"}),n("path",{className:"opacity-75",fill:"currentColor",d:"M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"})]}),"Please wait"]}):"Generate Data"})]})}function Wg({namedPath:e,path:t,last:r,onClick:s}){const a=ie(()=>s(r?t.slice(0,-1):t),[r,t,s]);return n("div",{className:"capitalize cursor-pointer hover:text-blue-600 transition-colors",onClick:a,children:e[e.length-1]})}function Jg({dataItem:e,onClick:t}){const r=ie(()=>t([]),[t]),s=ae(()=>e.namedPath.length>=2?e.namedPath.length-2:0,[e]);return d("div",{className:"text-sm flex items-center gap-2 py-3 px-2 border-b border-t border-gray-300 bg-gray-50",children:[n("svg",{className:"w-4 h-4 cursor-pointer hover:text-blue-600",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",onClick:r,children:n("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M15 19l-7-7 7-7"})}),e.namedPath.length>2&&d("div",{className:"flex items-center gap-1",children:[n("div",{children:"..."}),n("svg",{className:"w-3 h-3",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",children:n("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M9 5l7 7-7 7"})})]}),e.namedPath.slice(s).map((a,o)=>d("div",{className:"flex items-center gap-1",children:[n(Wg,{namedPath:e.namedPath.slice(0,o+s+1),path:e.path.slice(0,o+s+1),last:o+s===e.namedPath.length-1,onClick:t}),o+s<e.namedPath.length-1&&n("svg",{className:"w-3 h-3",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",children:n("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M9 5l7 7-7 7"})})]},`path-${a}-${o+s}`))]})}function Di({analysis:e,scenarioName:t,dataItem:r,onClick:s,onChange:a,onAIResult:o,onGenerateData:i,saveFeedback:l}){const c=ae(()=>r.data,[r]),p=ae(()=>Og(r),[r]);return d("div",{className:"w-full flex flex-col gap-6 px-3 mt-3",children:[r.path.length>0&&n(Jg,{dataItem:r,onClick:s}),d("div",{className:"flex flex-col gap-3",children:[n(Ug,{analysis:e,scenarioName:t,dataItem:r,onResult:o,onGenerateData:i}),p==null?void 0:p.map((u,h)=>{var f;if(Ya(c[u])){let g=u;isNaN(Number(u))||(g=c[u].name??c[u].title??c[u].id??`${r.path[r.path.length-1].replace(/s$/,"")} ${parseInt(u)+1}`);const y=[...r.path,u],x=[...r.namedPath,g];return n(Lg,{path:y,namedPath:x,isArray:Array.isArray(c),count:Dg(c[u]),onClick:s},`data-${u}-${h}`)}if(u==="id")return null;const m=[...r.path,u];return n(Yg,{dataType:((f=r.structure)==null?void 0:f[u])??"string",path:m,value:c[u],onChange:a},`InputField-${m.join("-")}`)})]}),n("input",{type:"hidden",name:"recapture",id:"recapture-input",value:"false"}),d("div",{className:"flex gap-2",children:[n("button",{type:"submit",onClick:()=>{const u=document.getElementById("recapture-input");u&&(u.value="false")},disabled:l==null?void 0:l.isSaving,className:"flex-1 px-4 py-2 bg-blue-600 text-white rounded-md hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-blue-500 font-medium disabled:opacity-50 disabled:cursor-not-allowed",children:l!=null&&l.isSaving?"Saving...":"Save Changes"}),n("button",{type:"submit",onClick:()=>{const u=document.getElementById("recapture-input");u&&(u.value="true")},disabled:l==null?void 0:l.isSaving,className:"flex-1 px-4 py-2 bg-gray-100 text-gray-700 border border-gray-300 rounded-md hover:bg-gray-200 focus:outline-none focus:ring-2 focus:ring-blue-500 font-medium disabled:opacity-50 disabled:cursor-not-allowed",children:"Save & Recapture"})]}),(l==null?void 0:l.message)&&!(l!=null&&l.isSaving)&&n("div",{className:`mt-3 p-3 rounded-md text-sm font-medium ${l.isError?"bg-red-50 text-red-700 border border-red-200":"bg-green-50 text-green-700 border border-green-200"}`,children:l.message})]})}function Oi({title:e,children:t,defaultOpen:r=!1,borderT:s=!1,borderB:a=!1}){const[o,i]=M(r),l=[];return s&&l.push("border-t"),a&&l.push("border-b"),d("div",{className:`${l.join(" ")} border-gray-300`,children:[d("button",{type:"button",onClick:()=>i(!o),className:"w-full px-4 py-3 flex items-center justify-between bg-gray-50 hover:bg-gray-100 transition-colors text-left font-semibold text-gray-900",children:[n("span",{children:e}),n("svg",{className:`transition-transform ${o?"rotate-180":""}`,fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",style:{width:"20px",height:"20px",minWidth:"20px",minHeight:"20px",maxWidth:"20px",maxHeight:"20px",flexShrink:0},children:n("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M19 9l-7 7-7-7"})})]}),o&&n("div",{className:"px-4 py-3",children:t})]})}const Hg=({currentScenario:e,defaultScenario:t,dataStructure:r,analysis:s,shouldCreateNewScenario:a,onSave:o,onNavigate:i,iframeRef:l,onGenerateData:c,saveFeedback:p})=>{const u=ie((C,S)=>{const _=Object.assign({},C),j=$=>$&&typeof $=="object"&&!Array.isArray($);return j(C)&&j(S)&&Object.keys(S).forEach($=>{j(S[$])?$ in C?_[$]=u(C[$],S[$]):Object.assign(_,{[$]:S[$]}):Object.assign(_,{[$]:S[$]})}),_},[]),[h,m]=M({name:e.name,description:e.description,data:u(t.metadata.data,e.metadata.data)}),[f,g]=M(null),y=ae(()=>({...h.data}),[h]),x=ae(()=>({...y.mockData?{"Retrieved Data":y.mockData}:{},...y.argumentsData?{"Function Arguments":y.argumentsData}:{}}),[y]),w=ae(()=>{const C={...r.arguments?{"Function Arguments":r.arguments}:{},...r.dataForMocks?{"Retrieved Data":r.dataForMocks}:{}};return Object.keys(C).reduce((S,_)=>{if(_.includes(".")){const[j,$]=_.split(".");S[j]||(S[j]={}),S[j][$]=C[_]}else S[_]=C[_];return S},{})},[r]),b=ie(async C=>{C.preventDefault();const S=C.target.querySelector('input[name="recapture"]'),_=(S==null?void 0:S.value)==="true",j={mockData:h.data.mockData??{},argumentsData:h.data.argumentsData??[]};console.log("[ScenarioEditor] Saving scenario data:",{scenarioName:h.name,shouldRecapture:_,dataToSave:j,rawFormData:h.data,iframePayload:{arguments:y.argumentsData??[],...y.mockData??{}}}),console.log("[ScenarioEditor] Full dataToSave JSON:",JSON.stringify(j,null,2).substring(0,1e3));const $=s==null?void 0:s.scenarios.map(P=>!a&&P.name===e.name?{...P,name:h.name,description:h.description,metadata:{...P.metadata,data:j}}:P);a&&$.push({name:h.name,description:h.description,metadata:{data:j,interactiveExamplePath:s==null?void 0:s.scenarios[0].metadata.interactiveExamplePath}}),console.log("[ScenarioEditor] Updated scenarios to save:",$),o&&await o($,{recapture:_}),i&&i(h.name)},[s,e.name,h,y,a,o,i]),v=ie(C=>{m(S=>({...S,[C.target.name]:C.target.value}))},[]),N=ie(C=>{g(S=>{if(!S)return null;for(const _ of[{arguments:C.metadata.data.argumentsData},C.metadata.data.mockData]){let j=_;for(const $ of S.path)if(j=Sa(j,$),!j)break;j&&(S.data=j)}return{...S}}),m({name:C.name,description:C.description,data:C.metadata.data})},[]),k=ie((C,S)=>{m(_=>{for(const j of[{"Function Arguments":_.data.argumentsData},{"Retrieved Data":_.data.mockData}]){let $=j;for(const P of C.slice(0,-1))if($=Sa($,P),!$)break;if($){const P=$[C[C.length-1]];g(I=>I?(I.namedPath[I.namedPath.length-1]===P&&(I.namedPath[I.namedPath.length-1]=S.toString()),I.data[C[C.length-1]]=S,{...I}):null),$[C[C.length-1]]=S}}return{..._}})},[]),E=ie(C=>{var $,P,I;if(C.length===0){g(null);return}let S=x;const _=[];let j=w;for(const R of C){if(_.push(isNaN(parseInt(R))?R:(($=S[R])==null?void 0:$.name)??((P=S[R])==null?void 0:P.title)??((I=S[R])==null?void 0:I.id)??R),S=Sa(S,R),!S){console.log("Data not found",S,R),g(null);return}Array.isArray(j)?j=j[0]:j=j[R]}g({path:C,namedPath:_,data:S,structure:j})},[x,w]);return se(()=>{const C=S=>{var _;S.data.type==="codeyam-log"&&((_=S.data.data)!=null&&_.includes("Error"))&&console.error("[ScenarioEditor] Error from iframe:",S.data.data)};return window.addEventListener("message",C),()=>window.removeEventListener("message",C)},[]),se(()=>{var C;if((C=l==null?void 0:l.current)!=null&&C.contentWindow){const S={arguments:y.argumentsData??[],...y.mockData??{}},_={type:"codeyam-override-data",name:e.name,data:JSON.stringify(S)};console.log("[ScenarioEditor] → SENDING codeyam-override-data:",{type:_.type,name:_.name,dataPreview:JSON.stringify(S).substring(0,200)+"...",fullData:S}),l.current.contentWindow.postMessage(_,"*")}},[y,e,l]),n("form",{method:"post",onSubmit:C=>void b(C),children:f?n(Di,{analysis:s,scenarioName:h.name,dataItem:f,onClick:E,onChange:k,onAIResult:N,onGenerateData:c,saveFeedback:p}):d(ye,{children:[n(Oi,{title:"Edit Name and Description",borderT:!0,children:n(Fg,{scenarioFormData:h,handleInputChange:v})}),e.metadata.data&&n(Oi,{title:"Edit Scenario Data",defaultOpen:!0,borderT:!0,borderB:!0,children:n(Di,{analysis:s,scenarioName:h.name,dataItem:{path:[],namedPath:[],data:x,structure:w},onClick:E,onChange:k,onAIResult:N,onGenerateData:c,saveFeedback:p})})]})})};function Js({scenarioId:e,scenarioName:t,iframeUrl:r,isStarting:s,isLoading:a,showIframe:o,iframeKey:i,onIframeLoad:l,onScaleChange:c,onDimensionChange:p,projectSlug:u,defaultWidth:h=1440,defaultHeight:m=900,retryCount:f=0}){const{lastLine:g}=Ut(u??null,s||a);return r?d("div",{className:"flex-1 min-h-0 relative",style:{background:"transparent"},children:[n("div",{style:{opacity:o?1:0,background:"transparent"},children:n(Ig,{id:e,scenarioName:t,iframeUrl:r,defaultWidth:h,defaultHeight:m,onIframeLoad:l,onScaleChange:c,onDimensionChange:p},i)}),!o&&(s||a)&&n("div",{className:"absolute inset-0 flex items-center justify-center z-10",children:d("div",{className:"flex flex-col items-center justify-center gap-6 bg-white rounded-lg p-8 shadow-sm w-[500px] h-[300px]",children:[n("div",{className:"mb-4",children:n(Bt,{})}),d("div",{className:"flex flex-col gap-3 text-center",children:[n("h2",{className:"text-xl font-medium text-black leading-[28px] m-0 font-['IBM_Plex_Sans']",children:"Starting Interactive Mode"}),n("p",{className:"text-sm text-[#666] leading-5 m-0 font-['IBM_Plex_Sans']",children:"Setting up a sandboxed environment for your component"}),g&&d("p",{className:"text-xs font-mono text-[#005c75] text-center leading-5 m-0 mt-3 font-['IBM_Plex_Mono'] uppercase",children:[n(zn,{}),g]})]})]})})]}):n("div",{className:"flex-1 flex flex-col items-center justify-center p-12 text-center",children:d("div",{className:"flex flex-col items-center justify-center gap-6 w-[500px] h-[300px] bg-white rounded-lg p-8 shadow-sm",children:[n("div",{className:"mb-4",children:n(Bt,{})}),d("div",{className:"flex flex-col gap-3 text-center",children:[n("h2",{className:"text-xl font-medium text-black leading-[28px] m-0 font-['IBM_Plex_Sans']",children:"Starting Interactive Mode"}),n("p",{className:"text-sm text-[#666] leading-5 m-0 font-['IBM_Plex_Sans']",children:"Setting up a sandboxed environment for your component"}),g&&d("p",{className:"text-xs font-mono text-[#005c75] text-center leading-5 m-0 mt-3 font-['IBM_Plex_Mono'] uppercase",children:[n(zn,{}),g]})]})]})})}const Vg=({data:e})=>[{title:e!=null&&e.scenario?`Edit ${e.scenario.name} - CodeYam`:"Edit Scenario - CodeYam"},{name:"description",content:"Edit scenario data"}];async function Gg({params:e}){var c,p;const{sha:t,scenarioId:r}=e;if(!t)throw new Response("Entity SHA is required",{status:400});if(!r)throw new Response("Scenario ID is required",{status:400});const s=await Ms(t,!0),a=s&&s.length>0?s[0]:null;if(!a)throw new Response("Analysis not found",{status:404});const o=(c=a.scenarios)==null?void 0:c.find(u=>u.id===r);if(!o)throw new Response("Scenario not found",{status:404});const i=(p=a.scenarios)==null?void 0:p.find(u=>u.name===Ts),l=await ze();return X({analysis:a,scenario:o,defaultScenario:i||o,entitySha:t,projectSlug:l})}function Kg(){var R,T,G;const e=tt(),t=e.analysis,r=e.scenario,s=e.defaultScenario,a=e.entitySha,o=e.projectSlug,i=Mt(),{iframeRef:l}=Mo(),[c,p]=M(!1),[u,h]=M(null),[m,f]=M(null),[g,y]=M(!1),[x,w]=M(!1),[b,v]=M(null),{interactiveServerUrl:N,isStarting:k,isLoading:E,showIframe:C,iframeKey:S,onIframeLoad:_}=vn({analysisId:t==null?void 0:t.id,scenarioId:r==null?void 0:r.id,scenarioName:r==null?void 0:r.name,projectSlug:o,enabled:!0}),j=ie(async(J,F)=>{p(!0),h(null),f(null),console.log("[EditScenario] Starting save with options:",F),console.log("[EditScenario] Scenarios to save:",J);try{const H={analysis:t,scenarios:J};console.log("[EditScenario] Sending to /api/save-scenarios:",{analysisId:t.id,scenarioCount:J.length,scenarioNames:J.map(A=>A.name)});const U=await fetch("/api/save-scenarios",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(H)}),z=await U.json();if(console.log("[EditScenario] API response:",z),!U.ok||!z.success)throw new Error(z.error||"Failed to save scenarios");if(console.log("[EditScenario] Scenarios saved successfully"),F!=null&&F.recapture&&r.id&&N){console.log("[EditScenario] ========== DIRECT CAPTURE START =========="),console.log("[EditScenario] Taking screenshot from running server",{scenarioId:r.id,projectId:t.projectId,serverUrl:N}),h("Changes saved. Capturing screenshot...");const A={serverUrl:N,scenarioId:r.id,projectId:t.projectId,viewportWidth:1440};console.log("[EditScenario] Capture request body:",A);const Y=await fetch("/api/capture-screenshot",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(A)});console.log("[EditScenario] Capture response status:",Y.status);const V=await Y.json();if(console.log("[EditScenario] Capture response body:",V),!Y.ok||!V.success)throw console.error("[EditScenario] Capture failed:",V),new Error(V.error||"Failed to capture screenshot");console.log("[EditScenario] Screenshot captured successfully:",V),console.log("[EditScenario] ========== DIRECT CAPTURE COMPLETE =========="),h("Recapture successful")}else if(F!=null&&F.recapture&&!N){console.log("[EditScenario] No running server, using queued recapture");const A=new FormData;A.append("analysisId",t.id||""),A.append("scenarioId",r.id||"");const Y=await fetch("/api/recapture-scenario",{method:"POST",body:A}),V=await Y.json();if(!Y.ok||!V.success)throw new Error(V.error||"Failed to trigger recapture");console.log("Recapture queued:",V),f(V.jobId),h("Changes saved. Screenshot recapture queued.")}else h("Changes saved successfully.")}catch(H){console.error("Error saving scenarios:",H),h(`Error: ${H instanceof Error?H.message:String(H)}`)}finally{p(!1)}},[t,r.id,N]),$=ie(J=>{},[]),P=ie(async(J,F)=>{var z;const H=await fetch("/api/generate-scenario-data",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({description:J,existingScenarios:t.scenarios,scenariosDataStructure:(z=t.metadata)==null?void 0:z.scenariosDataStructure,editingMockName:r.name,editingMockData:F==null?void 0:F.data})}),U=await H.json();if(!H.ok||!U.success)throw new Error(U.error||"Failed to generate scenario data");return U.data},[t,r.name]),I=ie(async()=>{var J;if(!r.id){v("Cannot delete scenario without ID");return}y(!0),v(null);try{const F=await fetch("/api/delete-scenario",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({scenarioId:r.id,screenshotPaths:((J=r.metadata)==null?void 0:J.screenshotPaths)||[]})}),H=await F.json();if(!F.ok||!H.success)throw new Error(H.error||"Failed to delete scenario");i(`/entity/${a}`)}catch(F){console.error("[EditScenario] Error deleting scenario:",F),v(F instanceof Error?F.message:"Failed to delete scenario"),w(!1)}finally{y(!1)}},[r.id,(R=r.metadata)==null?void 0:R.screenshotPaths,a,i]);return d("div",{className:"h-screen bg-gray-50 flex flex-col",children:[d("header",{className:"bg-white border-b border-gray-200 px-8 py-6 shrink-0",children:[n("div",{className:"mb-4",children:d(ve,{to:`/entity/${a}`,className:"text-blue-600 no-underline text-sm font-medium transition-colors hover:text-blue-700 hover:underline",children:["← Back to ",(T=t.entity)==null?void 0:T.name]})}),d("h1",{className:"text-[32px] font-bold text-gray-900 m-0 mb-3",children:["Edit Scenario: ",r.name]}),r.description&&n("p",{className:"text-gray-600 text-[15px] leading-relaxed m-0",children:r.description})]}),d("div",{className:"flex flex-1 gap-0 min-h-0",children:[d("aside",{className:"w-[400px] bg-white border-r border-gray-200 overflow-y-auto shrink-0",children:[n(Hg,{currentScenario:r,defaultScenario:s,dataStructure:((G=t.metadata)==null?void 0:G.scenariosDataStructure)||{},analysis:t,shouldCreateNewScenario:!1,onSave:j,onNavigate:$,iframeRef:l,onGenerateData:P,saveFeedback:{isSaving:c,message:u,isError:(u==null?void 0:u.startsWith("Error"))??!1}}),u==="Recapture successful"&&n("div",{className:"px-4 pb-4",children:n(ve,{to:`/entity/${a}`,className:"text-blue-600 hover:text-blue-700 hover:underline text-sm",children:"View updated screenshot on entity page →"})}),d("div",{className:"border-t border-gray-200 p-4 mt-4",children:[n("div",{className:"text-sm text-gray-600 mb-3",children:"Permanently remove this scenario and its screenshots."}),x?d("div",{className:"space-y-3",children:[d("div",{className:"text-sm text-red-600 font-medium",children:['Are you sure you want to delete "',r.name,'"?']}),d("div",{className:"flex gap-2",children:[n("button",{onClick:()=>void I(),disabled:g,className:"flex-1 px-4 py-2 bg-red-600 text-white rounded-md text-sm font-medium hover:bg-red-700 disabled:bg-red-400 disabled:cursor-not-allowed transition-colors",children:g?"Deleting...":"Yes, Delete"}),n("button",{onClick:()=>w(!1),disabled:g,className:"flex-1 px-4 py-2 bg-gray-100 text-gray-700 border border-gray-300 rounded-md text-sm font-medium hover:bg-gray-200 disabled:opacity-50 transition-colors",children:"Cancel"})]})]}):n("button",{onClick:()=>w(!0),className:"w-full px-4 py-2 bg-red-50 text-red-600 border border-red-200 rounded-md text-sm font-medium hover:bg-red-100 transition-colors",children:"Delete Scenario"}),b&&n("div",{className:"mt-3 text-sm text-red-600 bg-red-50 px-3 py-2 rounded-md",children:b})]})]}),n("main",{className:"flex-1 bg-gray-100 overflow-auto flex flex-col min-w-0",children:n(Js,{scenarioId:r.id||r.name,scenarioName:r.name,iframeUrl:N,isStarting:k,isLoading:E,showIframe:C,iframeKey:S,onIframeLoad:_,projectSlug:o,defaultWidth:1440,defaultHeight:900})})]})]})}const qg=Qe(function(){return n(Ws,{children:n(Kg,{})})}),Qg=Object.freeze(Object.defineProperty({__proto__:null,default:qg,loader:Gg,meta:Vg},Symbol.toStringTag,{value:"Module"}));function Zg(e){return Un.createHash("sha256").update(JSON.stringify(e)).digest("hex")}function Xg(e){const t=e.match(/^(GET|POST|PUT|DELETE|PATCH)\s+(\/\S+)$/);return t?{method:t[1],pathPattern:t[2]}:{method:null,pathPattern:e}}function e0(e){const t=[],r=e.replace(/:([a-zA-Z_][a-zA-Z0-9_]*)/g,(s,a)=>(t.push(a),"([^/]+)"));return{regex:new RegExp(`^${r}$`),paramNames:t}}function t0(e,t){if(t.includes(e))return e;const r=e.lastIndexOf("/");if(r>0){const s=e.substring(0,r);if(t.includes(s))return s}return null}function n0(){let e=[],t={},r=null,s=null,a=!1,o=null;function i(p){const u=[],h=p.routes;if(h&&typeof h=="object")for(const[m,f]of Object.entries(h)){const{method:g,pathPattern:y}=Xg(m),{regex:x,paramNames:w}=e0(y),b=typeof f=="object"&&f!==null?f:{body:f};u.push({method:g,pathPattern:y,pathRegex:x,paramNames:w,response:{body:b.body,status:typeof b.status=="number"?b.status:200}})}return u}function l(p){const u=p.state;if(u&&typeof u=="object"){a=!0,t={};for(const[h,m]of Object.entries(u))t[h]=Array.isArray(m)?JSON.parse(JSON.stringify(m)):[];r=JSON.stringify(u)}else a=!1,t={},r=null}return{loadScenario(p){const u=Zg(p);s&&u===s||(s=u,o=p,e=i(p),l(p))},matchRequest(p,u,h){if(!o&&e.length===0&&!a)return null;const m=Object.keys(t);if(a){const g=t0(u,m);if(g&&p==="GET"&&g===u)return{body:t[g],status:200};if(g){const y=c(p,u);if(p==="POST"&&g===u&&y){const x=t[g],w=typeof h=="object"&&h!==null?{...h}:{};if(!("id"in w)){const b=x.reduce((v,N)=>{const k=typeof N.id=="number"?N.id:0;return Math.max(v,k)},0);w.id=b+1}return x.push(w),{body:w,status:y.response.status}}if(p==="DELETE"&&y&&y.params){const x=y.params.id,w=t[g],b=w.findIndex(v=>String(v.id)===String(x));return b===-1?{body:{error:"Not found"},status:404}:(w.splice(b,1),{body:null,status:y.response.status})}if(p==="PUT"&&y&&y.params){const x=y.params.id,w=t[g],b=w.findIndex(N=>String(N.id)===String(x));if(b===-1)return{body:{error:"Not found"},status:404};const v=typeof h=="object"&&h!==null?{...h}:w[b];return w[b]=v,{body:v,status:y.response.status}}}}const f=c(p,u);if(f)return{body:f.response.body??null,status:f.response.status,params:f.params};if(o&&p==="GET"){const g=u.match(/^\/api\/(.+)$/);if(g){const y=g[1];if(y in o&&y!=="routes"&&y!=="state")return{body:o[y],status:200}}}return null},resetState(){if(r){const p=JSON.parse(r);t={};for(const[u,h]of Object.entries(p))t[u]=Array.isArray(h)?JSON.parse(JSON.stringify(h)):[]}},getState(){return{...t}}};function c(p,u){for(const h of e)if(h.method!==null&&h.method===p&&h.paramNames.length===0&&h.pathRegex.exec(u))return{response:h.response};if(p==="GET"){for(const h of e)if(h.method===null&&h.paramNames.length===0&&h.pathRegex.exec(u))return{response:h.response}}for(const h of e)if(h.paramNames.length>0){if((h.method??"GET")!==p)continue;const f=h.pathRegex.exec(u);if(f){const g={};for(let y=0;y<h.paramNames.length;y++)g[h.paramNames[y]]=f[y+1];return{response:h.response,params:g}}}return null}}function r0(e){var a,o;const t=ee.join(e,"package.json");if(!ce.existsSync(t))return{error:"No package.json found."};let r="npm",s=["run","dev"];try{const i=JSON.parse(ce.readFileSync(t,"utf8"));if(ce.existsSync(ee.join(e,"pnpm-lock.yaml"))?r="pnpm":ce.existsSync(ee.join(e,"yarn.lock"))?r="yarn":ce.existsSync(ee.join(e,"bun.lockb"))&&(r="bun"),!((a=i.scripts)!=null&&a.dev))if((o=i.scripts)!=null&&o.start)s=["run","start"];else return{error:'No "dev" or "start" script found in package.json.'}}catch{}return{command:r,args:s}}function s0(e,t){const r=t.toString(),s={PORT:r},a=ee.join(e,".codeyam","config.json");if(ce.existsSync(a))try{const c=(JSON.parse(ce.readFileSync(a,"utf8")).webapps||[])[0];if(c!=null&&c.startCommand){const{command:p,args:u,env:h}=c.startCommand,m=(u||[]).map(f=>f.includes("$PORT")?f.replace(/\$PORT/g,r):f);if(h)for(const[f,g]of Object.entries(h))typeof g=="string"&&g.includes("$PORT")?s[f]=g.replace(/\$PORT/g,r):typeof g=="string"&&(s[f]=g);return{command:p,args:m,env:s}}}catch{}const o=r0(e);return"error"in o?o:{command:o.command,args:o.args,env:s}}function Fc(e){return{proxyPort:e+1,devServerPort:e+2}}const a0=[/Local:\s+(https?:\/\/[^\s]+)/,/Ready on\s+(https?:\/\/[^\s]+)/i,/started at\s+(https?:\/\/[^\s]+)/i,/listening on\s+(https?:\/\/[^\s]+)/i,/waiting on\s+(https?:\/\/[^\s]+)/i,/http:\/\/localhost:\d+/];function o0(e){for(const t of a0){const r=e.match(t);if(r){const s=r[1]||r[0];return i0(s).trim()}}return null}function i0(e){return e.replace(/\x1b\[[0-9;]*m/g,"")}function Lc(){const e=globalThis.__codeyam_editor_dev_server__;return e&&e.status==="running"&&e.url?e.url:null}async function l0(e,t={}){const{intervalMs:r=2e3,maxAttempts:s=15}=t,a=`http://localhost:${e}`;for(let o=0;o<s;o++){try{const i=await fetch(a,{method:"HEAD",signal:AbortSignal.timeout(2e3)});if(i.ok||i.status===304)return a}catch{}o<s-1&&await new Promise(i=>setTimeout(i,r))}return null}function c0(e){const{exitCode:t,uptime:r,retryCount:s,wasRunning:a}=e,o=r<1e4;return t!==0&&t!==null&&o&&s===0?{action:"retry"}:t!==0&&t!==null?{action:"error"}:a===!1?{action:"error"}:{action:"stopped"}}class d0 extends _r{emitDataMutationForwarded(t,r){this.emit("event",{type:"data-mutation-forwarded",method:t,pathname:r,timestamp:Date.now()})}}const Ua="__codeyam_mock_state_event_emitter__";if(!globalThis[Ua]){const e=new d0;e.setMaxListeners(20),globalThis[Ua]=e}const u0=globalThis[Ua];function p0(e){try{return new URL(e).toString().replace(/\/$/,"")}catch{return e}}async function h0(e){const t=["127.0.0.1","::1"];for(const r of t)try{if(await new Promise(a=>{const o=new Hl.Socket;o.setTimeout(1e3),o.once("connect",()=>{o.destroy(),a(!0)}),o.once("error",()=>{o.destroy(),a(!1)}),o.once("timeout",()=>{o.destroy(),a(!1)}),o.connect(e,r)}))return r}catch{}return null}const zc="__codeyam_editor_proxy__",Bc="__codeyam_preview_health__";function Yc(){return globalThis[Bc]??null}function Uc(e){globalThis[Bc]=e}function m0(){return Yc()}function Wc(){Uc(null)}const f0=`<script data-codeyam-health>
|
|
152
|
+
(function() {
|
|
153
|
+
var errors = [];
|
|
154
|
+
var reported = false;
|
|
155
|
+
function report(type, msg, stack) {
|
|
156
|
+
errors.push({ type: type, message: msg, stack: stack, timestamp: Date.now() });
|
|
157
|
+
if (!reported) {
|
|
158
|
+
reported = true;
|
|
159
|
+
setTimeout(function() { flush(); }, 500);
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
function flush() {
|
|
163
|
+
fetch('/__codeyam__/preview-health', {
|
|
164
|
+
method: 'POST',
|
|
165
|
+
headers: { 'Content-Type': 'application/json' },
|
|
166
|
+
body: JSON.stringify({ errors: errors, url: location.href })
|
|
167
|
+
}).catch(function(){});
|
|
168
|
+
reported = false;
|
|
169
|
+
errors = [];
|
|
170
|
+
}
|
|
171
|
+
window.addEventListener('error', function(e) {
|
|
172
|
+
report('error', e.message, e.error && e.error.stack);
|
|
173
|
+
});
|
|
174
|
+
window.addEventListener('unhandledrejection', function(e) {
|
|
175
|
+
report('unhandledrejection', String(e.reason), e.reason && e.reason.stack);
|
|
176
|
+
});
|
|
177
|
+
var origError = console.error;
|
|
178
|
+
console.error = function() {
|
|
179
|
+
report('console.error', Array.prototype.join.call(arguments, ' '));
|
|
180
|
+
origError.apply(console, arguments);
|
|
181
|
+
};
|
|
182
|
+
window.addEventListener('load', function() {
|
|
183
|
+
setTimeout(function() {
|
|
184
|
+
var hasContent = document.body && document.body.innerText.trim().length > 0;
|
|
185
|
+
fetch('/__codeyam__/preview-health', {
|
|
186
|
+
method: 'POST',
|
|
187
|
+
headers: { 'Content-Type': 'application/json' },
|
|
188
|
+
body: JSON.stringify({
|
|
189
|
+
loaded: true,
|
|
190
|
+
hasContent: hasContent,
|
|
191
|
+
url: location.href,
|
|
192
|
+
errorCount: errors.length
|
|
193
|
+
})
|
|
194
|
+
}).catch(function(){});
|
|
195
|
+
}, 1000);
|
|
196
|
+
});
|
|
197
|
+
})();
|
|
198
|
+
<\/script>`,g0=500;let zt={data:null,timestamp:0},un,mr,Hs=null,Vs=null,Gs=null,Wa=null;const Fi=10*1024*1024;function Ks(){return globalThis[zc]??null}function Jc(e){globalThis[zc]=e}function Hc(){const e="__codeyam_mock_state__";return globalThis[e]||(globalThis[e]=n0()),globalThis[e]}function Vc(){const e=Ks();return e?`http://localhost:${e.port}`:null}function y0(){const e=Date.now();if(zt.data!==null&&e-zt.timestamp<g0)return zt.data;const t=we()||process.env.CODEYAM_ROOT_PATH||process.cwd(),r=ee.join(t,".codeyam","active-scenario.json");try{if(!ce.existsSync(r))return zt={data:null,timestamp:e},null;const s=JSON.parse(ce.readFileSync(r,"utf-8")),a=s.scenarioId;if(!a)return Gs=s.prototypeId||null,zt={data:null,timestamp:e},null;const o=ee.join(t,".codeyam","editor-scenarios",`${a}.json`);if(!ce.existsSync(o))return console.log(`[editorProxy] Scenario data file not found: ${o}`),zt={data:null,timestamp:e},null;const i=JSON.parse(ce.readFileSync(o,"utf-8"));un=i.session||null,mr=i.sessionCookies||void 0,Hs=i.localStorage||null,Vs=a;const l=s.type||i.type||null;Wa=l;let c;return(l==="application"||l==="user")&&i.seed?i.externalApis&&typeof i.externalApis=="object"?c={routes:i.externalApis}:c={}:c=i,zt={data:c,timestamp:e},Hc().loadScenario(c),c}catch(s){return console.warn("[editorProxy] Error reading scenario data:",s),zt={data:null,timestamp:e},null}}function x0(e){return new Promise(t=>{const r=[];let s=0;e.on("data",a=>{s+=a.length,s>Fi?(t(null),e.resume()):r.push(a)}),e.on("end",()=>{s>Fi||t(Buffer.concat(r))}),e.on("error",()=>{t(null)})})}function $o(e){return e.startsWith("[")&&e.endsWith("]")?e.slice(1,-1):e}function Li(e,t,r,s){const a=new URL(r),o=$o(a.hostname),i={...e.headers,host:`${a.hostname}:${a.port}`};delete i["accept-encoding"],s&&(i["content-length"]=String(s.length));const l={hostname:o,port:a.port,path:e.url,method:e.method,headers:i},c=mo.request(l,p=>{const u=p.statusCode||200;u>=400&&console.warn(`[editorProxy] Target returned ${u} for ${e.method} ${e.url}`);const h={...p.headers};if(Gc(h),(p.headers["content-type"]||"").includes("text/html")){Wc();const f=[];p.on("data",g=>f.push(g)),p.on("end",()=>{const g=Buffer.concat(f).toString("utf-8"),y=Kc(Hs,Vs||"",Gs),x=qc(g,y);delete h["content-length"],delete h["content-encoding"],h["cache-control"]="no-store, must-revalidate",t.writeHead(u,h),t.end(x)});return}t.writeHead(u,h),p.pipe(t,{end:!0})});c.on("error",p=>{console.warn(`[editorProxy] Forward error for ${e.method} ${e.url}: ${p.message}`),t.headersSent||(t.writeHead(502,{"Content-Type":"text/plain"}),t.end("Bad Gateway — dev server unreachable"))}),s&&s.length>0?c.end(s):c.end()}function b0(e,t,r){const s=new URL(r),a=$o(s.hostname),{"accept-encoding":o,...i}=e.headers,l={hostname:a,port:s.port,path:e.url,method:e.method,headers:{...i,host:`${s.hostname}:${s.port}`}},c=mo.request(l,p=>{const u=p.statusCode||200;u>=400&&console.warn(`[editorProxy] Target returned ${u} for ${e.method} ${e.url}`);const h={...p.headers};if(Gc(h),(p.headers["content-type"]||"").includes("text/html")){Wc();const f=[];p.on("data",g=>f.push(g)),p.on("end",()=>{const g=Buffer.concat(f).toString("utf-8"),y=Kc(Hs,Vs||"",Gs),x=qc(g,y);delete h["content-length"],delete h["content-encoding"],h["cache-control"]="no-store, must-revalidate",t.writeHead(u,h),t.end(x)});return}t.writeHead(u,h),p.pipe(t,{end:!0})});c.on("error",p=>{console.warn(`[editorProxy] Forward error for ${e.method} ${e.url}: ${p.message}`),t.headersSent||(t.writeHead(502,{"Content-Type":"text/plain"}),t.end("Bad Gateway — dev server unreachable"))}),e.pipe(c,{end:!0})}function Gc(e){const t=[];if(un!==void 0&&(un!=null&&un.cookieValue?t.push(`session-token=${un.cookieValue}; Path=/; SameSite=Lax`):t.push("session-token=; Path=/; Max-Age=0")),mr&&mr.length>0)for(const s of mr){const a=s.path||"/",o=s.sameSite||"Lax";t.push(`${s.name}=${s.value}; Path=${a}; SameSite=${o}`)}if(t.length===0)return;const r=e["set-cookie"];r?e["set-cookie"]=[...Array.isArray(r)?r:[r],...t]:e["set-cookie"]=t}function w0(e){let t=5381;for(let r=0;r<e.length;r++)t=(t<<5)+t+e.charCodeAt(r)|0;return(t>>>0).toString(36)}function Kc(e,t,r){if(!e||typeof e!="object")return r?`<script data-codeyam-ls>
|
|
199
|
+
(function() {
|
|
200
|
+
if (localStorage.getItem('__codeyam_proto__') === ${JSON.stringify(r)}) return;
|
|
201
|
+
localStorage.clear();
|
|
202
|
+
localStorage.setItem('__codeyam_proto__', ${JSON.stringify(r)});
|
|
203
|
+
})();
|
|
204
|
+
<\/script>`:"";const s=Object.entries(e),a=s.map(([c])=>c),o=s.map(([c,p])=>{const u=typeof p=="string"?p:JSON.stringify(p);return`localStorage.setItem(${JSON.stringify(c)}, ${JSON.stringify(u)});`}).join(`
|
|
205
|
+
`),i=w0(JSON.stringify(e)),l=`${t}:${i}`;return`<script data-codeyam-ls>
|
|
206
|
+
(function() {
|
|
207
|
+
if (localStorage.getItem('__codeyam_ls_sid__') === ${JSON.stringify(l)}) return;
|
|
208
|
+
var prev = JSON.parse(localStorage.getItem('__codeyam_ls_keys__') || '[]');
|
|
209
|
+
for (var i = 0; i < prev.length; i++) localStorage.removeItem(prev[i]);
|
|
210
|
+
${o}
|
|
211
|
+
localStorage.setItem('__codeyam_ls_keys__', ${JSON.stringify(JSON.stringify(a))});
|
|
212
|
+
localStorage.setItem('__codeyam_ls_sid__', ${JSON.stringify(l)});
|
|
213
|
+
})();
|
|
214
|
+
<\/script>`+v0()}function v0(){return`<script data-codeyam-ls-watcher>
|
|
215
|
+
(function() {
|
|
216
|
+
if (window.__codeyam_ls_watcher_installed__) return;
|
|
217
|
+
window.__codeyam_ls_watcher_installed__ = true;
|
|
218
|
+
|
|
219
|
+
var origSet = localStorage.setItem.bind(localStorage);
|
|
220
|
+
var origRemove = localStorage.removeItem.bind(localStorage);
|
|
221
|
+
var origClear = localStorage.clear.bind(localStorage);
|
|
222
|
+
window.__codeyam_orig_setItem__ = origSet;
|
|
223
|
+
window.__codeyam_orig_removeItem__ = origRemove;
|
|
224
|
+
window.__codeyam_orig_clear__ = origClear;
|
|
225
|
+
|
|
226
|
+
function isInternal(key) {
|
|
227
|
+
return typeof key === 'string' && key.indexOf('__codeyam_') === 0;
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
localStorage.setItem = function(key, value) {
|
|
231
|
+
origSet(key, value);
|
|
232
|
+
if (!isInternal(key) && window.parent !== window) {
|
|
233
|
+
window.parent.postMessage({ type: 'codeyam-localstorage-changed', action: 'set', key: key }, '*');
|
|
234
|
+
}
|
|
235
|
+
};
|
|
236
|
+
|
|
237
|
+
localStorage.removeItem = function(key) {
|
|
238
|
+
origRemove(key);
|
|
239
|
+
if (!isInternal(key) && window.parent !== window) {
|
|
240
|
+
window.parent.postMessage({ type: 'codeyam-localstorage-changed', action: 'remove', key: key }, '*');
|
|
241
|
+
}
|
|
242
|
+
};
|
|
243
|
+
|
|
244
|
+
localStorage.clear = function() {
|
|
245
|
+
origClear();
|
|
246
|
+
if (window.parent !== window) {
|
|
247
|
+
window.parent.postMessage({ type: 'codeyam-localstorage-changed', action: 'clear' }, '*');
|
|
248
|
+
}
|
|
249
|
+
};
|
|
250
|
+
|
|
251
|
+
window.addEventListener('message', function(event) {
|
|
252
|
+
if (event.data && event.data.type === 'codeyam-get-localstorage') {
|
|
253
|
+
var data = {};
|
|
254
|
+
for (var i = 0; i < localStorage.length; i++) {
|
|
255
|
+
var k = localStorage.key(i);
|
|
256
|
+
if (k && !isInternal(k)) {
|
|
257
|
+
data[k] = localStorage.getItem(k);
|
|
258
|
+
}
|
|
259
|
+
}
|
|
260
|
+
event.source.postMessage({ type: 'codeyam-localstorage-state', data: data }, '*');
|
|
261
|
+
}
|
|
262
|
+
});
|
|
263
|
+
})();
|
|
264
|
+
<\/script>`}function qc(e,t){const r=(t||"")+f0;return e.includes("</head>")?e.replace("</head>",r+"</head>"):e.includes("</body>")?e.replace("</body>",r+"</body>"):e+r}function N0(e,t){const r=[];e.on("data",s=>r.push(s)),e.on("end",()=>{try{const s=JSON.parse(Buffer.concat(r).toString("utf-8")),a=Yc()||{errors:[],loaded:!1,hasContent:!1,url:"",lastUpdated:0};s.errors&&Array.isArray(s.errors)&&(a.errors=a.errors.concat(s.errors)),s.loaded!==void 0&&(a.loaded=s.loaded),s.hasContent!==void 0&&(a.hasContent=s.hasContent),s.url&&(a.url=s.url),a.lastUpdated=Date.now(),Uc(a)}catch{}t.writeHead(204),t.end()})}function C0(e,t,r,s){const a=new URL(s),o=$o(a.hostname),i=parseInt(a.port,10)||80;console.log(`[editorProxy] WebSocket upgrade: ${e.url} → ${o}:${i}`);const l=Hl.connect(i,o,()=>{const c=`${e.method} ${e.url} HTTP/${e.httpVersion}\r
|
|
265
|
+
`,p=Object.entries(e.headers).filter(([,u])=>u!=null).map(([u,h])=>`${u}: ${Array.isArray(h)?h.join(", "):h}`).join(`\r
|
|
266
|
+
`);l.write(c+p+`\r
|
|
267
|
+
\r
|
|
268
|
+
`),r.length>0&&l.write(r),l.pipe(t,{end:!0}),t.pipe(l,{end:!0})});l.on("error",c=>{console.warn(`[editorProxy] WebSocket proxy error: ${c.message}`),t.destroy()}),t.on("error",()=>{l.destroy()})}function S0(e,t){const r=we()||process.env.CODEYAM_ROOT_PATH||process.cwd(),s=ee.join(r,".codeyam","proxy-config.json");try{ce.mkdirSync(ee.dirname(s),{recursive:!0}),ce.writeFileSync(s,JSON.stringify({proxyUrl:`http://localhost:${e}`,devServerUrl:t}),"utf-8"),console.log(`[editorProxy] Wrote proxy config to ${s}`)}catch(a){console.warn("[editorProxy] Failed to write proxy-config.json:",a)}}function _0(){const e=we()||process.env.CODEYAM_ROOT_PATH||process.cwd(),t=ee.join(e,".codeyam","proxy-config.json");try{ce.existsSync(t)&&ce.unlinkSync(t)}catch{}}async function Ja(e){const t=Ks();if(t)return console.log(`[editorProxy] Proxy already running on port ${t.port} → ${t.targetUrl}`),{port:t.port};await Qc();let r=p0(e.targetUrl),s=e.port;try{const l=new URL(r);if(l.hostname==="localhost"){const c=parseInt(l.port||"80",10),p=await h0(c);p&&(l.hostname=p,r=l.toString().replace(/\/$/,""),console.log(`[editorProxy] Resolved localhost to ${p} for port ${c}`))}}catch{}console.log(`[editorProxy] Starting proxy (requested port ${s}, target ${r})`);const a=Hc(),o=mo.createServer((l,c)=>{(async()=>{const u=new URL(l.url||"/",`http://localhost:${s}`).pathname,h=l.method||"GET";if(h==="OPTIONS"){c.writeHead(204,{"Access-Control-Allow-Origin":"*","Access-Control-Allow-Methods":"GET, POST, PUT, DELETE, PATCH, OPTIONS","Access-Control-Allow-Headers":"Content-Type, Authorization, X-Requested-With","Access-Control-Max-Age":"86400"}),c.end();return}if(h==="POST"&&u==="/__codeyam__/preview-health"){N0(l,c);return}if(y0(),h==="POST"||h==="PUT"||h==="DELETE"||h==="PATCH"){const g=await x0(l);if(g===null){Li(l,c,r,null);return}let y;if(g.length>0)try{y=JSON.parse(g.toString("utf-8"))}catch{}const x=a.matchRequest(h,u,y);if(x){console.log(`[editorProxy] Intercepted ${h} ${u} → mock response (status ${x.status})`),c.writeHead(x.status,{"Content-Type":"application/json","Access-Control-Allow-Origin":"*","X-CodeYam-Proxy":"scenario-data","Cache-Control":"no-store"}),c.end(x.body!=null?JSON.stringify(x.body):"");return}(Wa==="application"||Wa==="user")&&u.startsWith("/api/")&&u0.emitDataMutationForwarded(h,u),Li(l,c,r,g);return}const f=a.matchRequest(h,u);if(f){console.log(`[editorProxy] Intercepted ${h} ${u} → mock response (status ${f.status})`),c.writeHead(f.status,{"Content-Type":"application/json","Access-Control-Allow-Origin":"*","X-CodeYam-Proxy":"scenario-data","Cache-Control":"no-store"}),c.end(f.body!=null?JSON.stringify(f.body):"");return}b0(l,c,r)})()});o.on("upgrade",(l,c,p)=>{C0(l,c,p,r)});const i=10;for(let l=0;l<i;l++){const c=s+l;try{await new Promise((h,m)=>{o.once("error",m),o.listen(c,"0.0.0.0",()=>{o.removeListener("error",m),h()})});const p=o.address();return s=typeof p=="object"&&p!==null?p.port:c,Jc({server:o,port:s,targetUrl:r}),S0(s,r),console.log(`[editorProxy] Proxy started on port ${s}, forwarding to ${r}`),{port:s}}catch(p){if((p==null?void 0:p.code)==="EADDRINUSE"&&l<i-1){console.log(`[editorProxy] Port ${c} in use, trying ${c+1}`);continue}return console.error("[editorProxy] Failed to start proxy:",p),null}}return null}async function Qc(){const e=Ks();if(e)return console.log(`[editorProxy] Stopping proxy on port ${e.port}`),_0(),new Promise(t=>{e.server.close(()=>{console.log("[editorProxy] Proxy stopped"),t()}),Jc(null),setTimeout(t,2e3)})}function Fn(){zt={data:null,timestamp:0},un=void 0,mr=void 0,Hs=null,Vs=null,Gs=null}async function zi(){const e=Ks();if(!e)return console.warn("[editorProxy] Cannot verify — proxy is not running"),!1;try{const t=await fetch(`http://127.0.0.1:${e.port}/`,{method:"HEAD",signal:AbortSignal.timeout(5e3)});return t.status===502?(console.warn("[editorProxy] Verification failed — proxy returned 502 (target unreachable)"),!1):(console.log(`[editorProxy] Verification passed — proxy forwarding to ${e.targetUrl} (status ${t.status})`),!0)}catch{return console.warn(`[editorProxy] Verification failed — could not reach proxy on port ${e.port}`),!1}}async function Zc(){const e=Vc();if(e)return console.log(`[editorProxy] Proxy already running at ${e}`),e;const t=globalThis.__codeyam_editor_dev_server__;if(!t||t.status!=="running"||!t.url)return console.log("[editorProxy] Cannot start proxy — dev server not running"),null;const r=parseInt(process.env.CODEYAM_PORT||"3111",10),{proxyPort:s}=Fc(r);console.log(`[editorProxy] Proxy not running, starting on-demand (port ${s}, target ${t.url})`);const a=await Ja({port:s,targetUrl:t.url});if(a){const o=`http://localhost:${a.port}`;return console.log(`[editorProxy] On-demand proxy started at ${o}`),o}return console.error("[editorProxy] Failed to start on-demand proxy"),null}const k0=["/api/health","/__codeyam__/preview-health"];function Xc(e){const t=[];for(const r of e.split(`
|
|
269
|
+
`))if(r.includes("[JournalCapture] HTTP error:"))t.push(r.replace(/.*\[JournalCapture\] /,""));else if(r.includes("[JournalCapture] API response error:"))t.push(r.replace(/.*\[JournalCapture\] /,""));else if(r.includes("[JournalCapture] Page console.error:"))t.push(r.replace(/.*\[JournalCapture\] Page console\.error:\s*/,""));else if(r.includes("[JournalCapture] Network failed:")){if(k0.some(s=>r.includes(s)))continue;t.push(r.replace(/.*\[JournalCapture\] /,""))}return t}async function ed(e,t,r,s){const a=L.join(e,".codeyam","editor-scenarios","client-errors.json");let o={};try{const i=await Pe.readFile(a,"utf8");o=JSON.parse(i)}catch{}for(const[i,l]of Object.entries(o))i!==t&&l.scenarioName===r&&delete o[i];o[t]={scenarioName:r,capturedAt:new Date().toISOString(),errors:s},await Pe.mkdir(L.dirname(a),{recursive:!0}),await Pe.writeFile(a,JSON.stringify(o,null,2),"utf8")}async function td(e){const t=L.join(e,".codeyam","editor-scenarios","client-errors.json");try{const r=await Pe.readFile(t,"utf8");return JSON.parse(r)}catch{return{}}}function Ha(e){let r=L.dirname(new URL(e).pathname);for(let s=0;s<5;s++){const a=L.dirname(r);if(L.basename(a)==="webserver"||L.basename(r)==="webserver")return L.basename(r)==="webserver"?r:a;r=a}return r}async function Va(e,t){const r=[L.join(e,"scripts","journalCapture.ts"),L.join(e,"app","lib","journalCapture.ts"),L.join(t,"codeyam-cli","src","webserver","app","lib","journalCapture.ts")];for(const s of r)try{return await Pe.access(s),s}catch{}return r[0]}function Ga(e,t,r){return new Promise(s=>{const a=e.endsWith(".ts"),l=St(a?"npx":e,a?["tsx",e,t]:[t],{cwd:r,env:{...process.env}});let c="",p="";l.stdout.on("data",u=>{c+=u.toString()}),l.stderr.on("data",u=>{p+=u.toString()}),l.on("close",u=>{s(u===0?{success:!0,output:c}:{success:!1,output:c,error:p||`Process exited with code ${u}`})}),l.on("error",u=>{s({success:!1,output:"",error:u.message})})})}const nd=3e4,E0="seed-session.json";function A0(e){const t={};try{const r=K.readFileSync(e,"utf-8");for(const s of r.split(`
|
|
270
|
+
`)){const a=s.trim();if(!a||a.startsWith("#"))continue;const o=a.indexOf("=");if(o===-1)continue;const i=a.slice(0,o).trim();let l=a.slice(o+1).trim();(l.startsWith('"')&&l.endsWith('"')||l.startsWith("'")&&l.endsWith("'"))&&(l=l.slice(1,-1)),i&&(t[i]=l)}}catch{}return t}function rd(e){const t=[".env",".env.local",".env.development",".env.development.local"];let r={};for(const s of t){const a=A0(L.join(e,s));r={...r,...a}}return r}function sd(e){const t={};try{const r=L.join(e,".codeyam","config.json"),s=JSON.parse(K.readFileSync(r,"utf-8"));for(const a of s.environmentVariables||[]){const o=a.key||a.name;o&&a.value!==void 0&&(t[o]=a.value)}}catch{}return t}function P0(e){const t=L.join(e,".codeyam","tmp",E0);try{if(!K.existsSync(t))return;const r=K.readFileSync(t,"utf-8"),s=JSON.parse(r);return K.unlinkSync(t),s.cookies&&Array.isArray(s.cookies)?s.cookies:void 0}catch{return}}function Io(e,t,r){const s=nd,a=L.basename(L.dirname(e))===".codeyam"?L.dirname(L.dirname(e)):L.dirname(e);return new Promise(o=>{const i=Date.now(),l=e.endsWith(".ts"),c=l?"npx":e,p=l?["tsx",e,t]:[t],u=rd(a),h=sd(a),m=St(c,p,{cwd:a,env:{...u,...h,...process.env}});let f="",g="",y=!1;const x=setTimeout(()=>{y=!0,m.kill("SIGTERM")},s);m.stdout.on("data",w=>{f+=w.toString()}),m.stderr.on("data",w=>{g+=w.toString()}),m.on("close",w=>{clearTimeout(x);const b=Date.now()-i;if(y)o({success:!1,output:f,error:`Seed adapter timeout after ${s}ms`,durationMs:b});else if(w===0){const v=P0(a);o({success:!0,output:f,durationMs:b,sessionCookies:v})}else o({success:!1,output:f,error:g||`Seed adapter exited with code ${w}`,durationMs:b})}),m.on("error",w=>{clearTimeout(x),o({success:!1,output:"",error:w.message,durationMs:Date.now()-i})})})}function j0(e,t,r){const s=nd,a=L.basename(L.dirname(e))===".codeyam"?L.dirname(L.dirname(e)):L.dirname(e);return new Promise(o=>{const i=Date.now(),l=e.endsWith(".ts"),c=l?"npx":e,p=l?["tsx",e,"--export",t]:["--export",t],u=rd(a),h=sd(a),m=St(c,p,{cwd:a,env:{...u,...h,...process.env}});let f="",g="",y=!1;const x=setTimeout(()=>{y=!0,m.kill("SIGTERM")},s);m.stdout.on("data",w=>{f+=w.toString()}),m.stderr.on("data",w=>{g+=w.toString()}),m.on("close",w=>{clearTimeout(x);const b=Date.now()-i;o(y?{success:!1,output:f,error:`Seed adapter export timeout after ${s}ms`,durationMs:b}:w===0?{success:!0,output:f,durationMs:b}:{success:!1,output:f,error:g||`Seed adapter export exited with code ${w}`,durationMs:b})}),m.on("error",w=>{clearTimeout(x),o({success:!1,output:"",error:w.message,durationMs:Date.now()-i})})})}function wr(e){const t=["seed-adapter.ts","seed-adapter.js"];for(const r of t){const s=L.join(e,".codeyam",r);try{return K.accessSync(s),s}catch{}}return null}function T0(e,t){const r={};for(const[s,a]of Object.entries(e))r[s]=JSON.parse(JSON.stringify(a));for(const[s,a]of Object.entries(t))r[s]=JSON.parse(JSON.stringify(a));return r}function M0(e){const t=L.join(e,".codeyam","editor-scenarios");let r;try{r=K.readdirSync(t)}catch{return[]}const s=[];for(const a of r){if(!a.endsWith(".json")||a.endsWith(".seed.json")||a==="client-errors.json")continue;const o=L.join(t,a);try{if(!K.statSync(o).isFile())continue;const l=JSON.parse(K.readFileSync(o,"utf8"));if(l._metadata){const c=a.replace(/\.json$/,"");s.push({id:c,metadata:l._metadata})}}catch{}}return s}function ad(e,t,r){const s=L.join(e,".codeyam","editor-scenarios",`${t}.json`);let a={};try{a=JSON.parse(K.readFileSync(s,"utf8"))}catch{return}a._metadata=r,K.writeFileSync(s,JSON.stringify(a,null,2),"utf8")}function $0(e,t,r,s={}){const a=L.join(e,".codeyam","editor-scenarios");K.mkdirSync(a,{recursive:!0});const o=L.join(a,`${t}.json`);let i={};try{i=JSON.parse(K.readFileSync(o,"utf8"))}catch{}const l={...i,_metadata:r,...s};K.writeFileSync(o,JSON.stringify(l,null,2),"utf8")}function I0(e,t){const r=L.join(e,".codeyam","editor-scenarios");for(const s of[".json",".seed.json"]){const a=L.join(r,`${t}${s}`);try{K.unlinkSync(a)}catch{}}}const Ro=globalThis.__codeyamTerminalSessions??(globalThis.__codeyamTerminalSessions=new Set);globalThis.__codeyamDetachedPtys??(globalThis.__codeyamDetachedPtys=new Map);function Do(e,t){const r=JSON.stringify({type:"refresh-preview",...e&&{path:e},...t&&{scenarioId:t}});let s=0;for(const a of Ro)try{a.ws.readyState===fo.OPEN&&(a.ws.send(r),s++)}catch{}return s}function R0(){const e=JSON.stringify({type:"hide-results"});let t=0;for(const r of Ro)try{r.ws.readyState===fo.OPEN&&(r.ws.send(e),t++)}catch{}return t}function Oo(e){const t=JSON.stringify({type:"set-viewport",...e});let r=0;for(const s of Ro)try{s.ws.readyState===fo.OPEN&&(s.ws.send(t),r++)}catch{}return r}const D0=Object.freeze(Object.defineProperty({__proto__:null,broadcastHideResults:R0,broadcastPreviewRefresh:Do,broadcastSetViewport:Oo},Symbol.toStringTag,{value:"Module"}));function O0(e){if(e.dimension)try{Oo({name:e.dimension,width:e.viewport.width,height:e.viewport.height})}catch{}Do(e.refreshPath,e.scenarioId)}let an=null;async function Ka(e){const{scenarioId:t,projectRoot:r}=e,s=ee.join(r,".codeyam"),a=ee.join(s,"editor-scenarios");let o=e.scenarioSlug||null;if(!o)try{const h=ee.join(a,`${t}.json`);ce.existsSync(h)?o=JSON.parse(ce.readFileSync(h,"utf-8")).name||t:o=t}catch{o=t}let i=e.scenarioType||null;if(!i)try{const h=ee.join(a,`${t}.json`);ce.existsSync(h)&&(i=JSON.parse(ce.readFileSync(h,"utf-8")).type||null)}catch{}const l=ee.join(s,"active-scenario.json");ce.mkdirSync(s,{recursive:!0}),ce.writeFileSync(l,JSON.stringify({scenarioSlug:o,scenarioName:e.scenarioName||o,scenarioId:t,type:i,dataFile:`.codeyam/editor-scenarios/${t}.json`,switchedAt:new Date().toISOString()},null,2));let c=null,p;const u=i==="application"||i==="user";if(u)if(an&&an.scenarioId===t)c=await an.promise;else{const h=wr(r),m=ee.join(a,`${t}.seed.json`);if(h&&ce.existsSync(m)){const f=Io(h,m).then(g=>({success:g.success,error:g.error,sessionCookies:g.sessionCookies}));an={scenarioId:t,promise:f};try{const g=await f;c={success:g.success,error:g.error},p=g.sessionCookies}finally{an&&an.scenarioId===t&&(an=null)}if(c!=null&&c.success&&p&&p.length>0)try{const g=ee.join(a,`${t}.json`),y=JSON.parse(ce.readFileSync(g,"utf-8"));y.sessionCookies=p,ce.writeFileSync(g,JSON.stringify(y,null,2))}catch{}}else h||(c={success:!1,error:"No seed adapter found"})}return{success:!0,scenarioSlug:o,scenarioId:t,type:i,seeded:u,...c?{seedResult:c}:{},...p&&p.length>0?{sessionCookies:p}:{}}}function F0(e){const t=e||process.env.CODEYAM_ROOT_PATH||process.cwd();try{const r=Ie("git status --porcelain",{cwd:t,encoding:"utf8",stdio:["pipe","pipe","ignore"]});return L0(r)}catch{return[]}}function L0(e){const t=e.trim().split(`
|
|
271
|
+
`).filter(s=>s.length>0),r=[];for(const s of t){const a=s[0],o=s[1];let i=s.slice(2).replace(/^[ \t]+/,""),l,c=!1,p;if(a==="A"||o==="A")l="added",c=a==="A";else if(a==="M"||o==="M")l="modified",c=a==="M";else if(a==="D"||o==="D")l="deleted",c=a==="D";else if(a==="R"||o==="R"){l="renamed",c=a==="R";const u=i.indexOf(" -> ");u!==-1&&(p=i.slice(0,u).trim(),i=i.slice(u+4).trim())}else o==="?"?(l="untracked",c=!1):(l="modified",c=a!==" "&&a!=="?");if(i.endsWith("/")){const u=process.env.CODEYAM_ROOT_PATH||process.cwd(),h=ee.join(u,i);try{const m=(g,y)=>{const x=ce.readdirSync(g,{withFileTypes:!0}),w=[];for(const b of x){const v=ee.join(g,b.name),N=ee.relative(u,v);b.isDirectory()?w.push(...m(v,y)):b.isFile()&&w.push(N)}return w},f=m(h,u);for(const g of f)r.push({path:g,status:l,staged:c,...p&&{oldPath:p}})}catch(m){console.error(`Failed to expand directory ${i}:`,m)}}else r.push({path:i,status:l,staged:c,...p&&{oldPath:p}})}return r}function z0(e){const t=e||process.env.CODEYAM_ROOT_PATH||process.cwd();try{return Ie("git branch --show-current",{cwd:t,encoding:"utf8",stdio:["pipe","pipe","ignore"]}).trim()||null}catch(r){return console.error("Failed to get current branch:",r),null}}function B0(e){const t=e||process.env.CODEYAM_ROOT_PATH||process.cwd();try{const s=Ie('git symbolic-ref refs/remotes/origin/HEAD 2>/dev/null || echo ""',{cwd:t,encoding:"utf8",stdio:["pipe","pipe","ignore"]}).trim().match(/refs\/remotes\/origin\/(.+)/);if(s)return s[1];try{return Ie("git show-ref --verify --quiet refs/heads/main",{cwd:t,stdio:["pipe","pipe","ignore"]}),"main"}catch{try{return Ie("git show-ref --verify --quiet refs/heads/master",{cwd:t,stdio:["pipe","pipe","ignore"]}),"master"}catch{return"main"}}}catch(r){return console.error("Failed to get default branch:",r),"main"}}function Y0(e){const t=e||process.env.CODEYAM_ROOT_PATH||process.cwd();try{return Ie('git branch --format="%(refname:short)"',{cwd:t,encoding:"utf8",stdio:["pipe","pipe","ignore"]}).trim().split(`
|
|
272
|
+
`).filter(s=>s.length>0)}catch(r){return console.error("Failed to get branches:",r),[]}}function Kn(){const e=we();return e?F0(e):[]}function U0(){const e=we();return e?z0(e):null}function W0(){const e=we();return e?B0(e):"main"}function J0(){const e=we();return e?Y0(e):[]}function od(e,t){const r=we();return r?H0(e,t,r):[]}function H0(e,t,r){const s=r||process.env.CODEYAM_ROOT_PATH||process.cwd();try{return Ie(`git diff --name-status ${e}...${t}`,{cwd:s,encoding:"utf8",stdio:["pipe","pipe","ignore"]}).trim().split(`
|
|
273
|
+
`).filter(i=>i.length>0).map(i=>{const l=i.split(" "),c=l[0];let p=l[1],u,h;return c==="A"?h="added":c==="M"?h="modified":c==="D"?h="deleted":c.startsWith("R")?(h="renamed",u=l[1],p=l[2]):h="modified",{path:p,status:h,...u&&{oldPath:u}}})}catch(a){return console.error("Failed to get branch diff:",a),[]}}function id(e,t){const r=t||process.env.CODEYAM_ROOT_PATH||process.cwd();try{let s="";try{s=Ie(`git show HEAD:"${e}"`,{cwd:r,encoding:"utf8",stdio:["pipe","pipe","ignore"],maxBuffer:1024*1024*10})}catch{s=""}let a="";try{a=ce.readFileSync(ee.join(r,e),"utf8")}catch(o){console.error(`Failed to read current file ${e}:`,o),a=""}return{oldContent:s,newContent:a,fileName:e}}catch(s){return console.error(`Failed to get diff for ${e}:`,s),{oldContent:"Error loading old content",newContent:"Error loading new content",fileName:e}}}function V0(e){const t=we();return t?id(e,t):{oldContent:"Error: No project root",newContent:"Error: No project root",fileName:e}}function G0(e,t,r,s){const a=s||process.env.CODEYAM_ROOT_PATH||process.cwd();try{let o="";try{o=Ie(`git show ${t}:"${e}"`,{cwd:a,encoding:"utf8",stdio:["pipe","pipe","ignore"],maxBuffer:1024*1024*10})}catch{o=""}let i="";try{i=Ie(`git show ${r}:"${e}"`,{cwd:a,encoding:"utf8",stdio:["pipe","pipe","ignore"],maxBuffer:1024*1024*10})}catch{i=""}return{oldContent:o,newContent:i,fileName:e}}catch(o){return console.error(`Failed to get branch diff for ${e}:`,o),{oldContent:"Error loading old content",newContent:"Error loading new content",fileName:e}}}function ss(e,t,r){const s=we();return s?G0(e,t,r,s):{oldContent:"Error: No project root",newContent:"Error: No project root",fileName:e}}async function K0(e,t,r){const s=L.join(e,".codeyam","journal"),a=L.join(s,"index.json");L.join(s,"screenshots");let o;try{const l=await Pe.readFile(a,"utf8");o=JSON.parse(l)}catch{return}let i=!1;for(const l of o.entries)if(!l.commitSha&&l.scenarioScreenshots)for(let c=0;c<l.scenarioScreenshots.length;c++){const p=l.scenarioScreenshots[c];if(p.name!==t)continue;const u=L.join(s,p.path);try{await Pe.copyFile(r,u),i=!0,console.log(`[editor-register-scenario] Updated journal screenshot for "${t}" in entry "${l.title}"`)}catch(h){console.warn(`[editor-register-scenario] Failed to update journal screenshot: ${h instanceof Error?h.message:h}`)}}i&&vt.notifyChange("journal")}const Bi=Lc;async function q0({request:e}){var t,r;if(e.method!=="POST")return new Response("Method not allowed",{status:405});try{const s=await e.json();s.url=s.url||s.path||void 0;const a=bg({componentName:s.componentName,url:s.url,type:s.type});if(!a.valid)return new Response(JSON.stringify({error:a.error}),{status:400,headers:{"Content-Type":"application/json"}});const{name:o,description:i,componentName:l,componentPath:c}=s;if(!o)return new Response(JSON.stringify({error:"name is required"}),{status:400,headers:{"Content-Type":"application/json"}});const p=await ze();if(!p)return new Response(JSON.stringify({error:"Project not initialized"}),{status:400,headers:{"Content-Type":"application/json"}});const{project:u}=await Oe(p),h=Te(),m=process.env.CODEYAM_ROOT_PATH||process.cwd();let f,g,y;if(!s.viewportWidth&&!s.viewportHeight&&!s.dimension&&!s.dimensions){const W=await h.selectFrom("editor_scenarios").selectAll().where("name","=",o).where("project_id","=",u.id).orderBy("created_at","desc").executeTakeFirst();if(W){f=W.viewport_width||void 0,g=W.viewport_height||void 0;try{const Q=W.dimensions?JSON.parse(W.dimensions):void 0;Array.isArray(Q)&&(y=Q)}catch{}}}let x=null;s.dimensions&&s.dimensions.length>0?x=s.dimensions:s.dimension?x=[s.dimension]:y&&y.length>0&&(x=y);const w=(x==null?void 0:x[0])||void 0,b=ws({bodyWidth:s.viewportWidth||f,bodyHeight:s.viewportHeight||g,dimension:w,codeyamRoot:m});let v=null;if(!l){if(s.pageFilePath)v=s.pageFilePath;else if(s.url){const{scanPageFilePaths:W}=await Promise.resolve().then(()=>Z0),Q=we()||process.cwd(),{allFiles:B}=W(Q);if(v=Pc(s.url,B),!v){const D=await import("fs"),O=await import("path"),q=["src/App.tsx","src/App.jsx","src/app/App.tsx","src/popup/App.tsx","src/pages/index.tsx","src/pages/index.jsx","src/routes/index.tsx","app/root.tsx"];for(const re of q)if(D.existsSync(O.join(Q,re))){v=re;break}}}}let N=null,k=null;const E=c||v;if(E)try{await Ue();const Q=(await Xe({})||[]).filter(O=>O.filePath===E),D=Q.find(O=>{var q,re;return((q=O.metadata)==null?void 0:q.notExported)===!1&&((re=O.metadata)==null?void 0:re.namedExport)===!1})||Q[0];D&&(N=D.sha)}catch{}const C=s.type==="application"||s.type==="user";if(!N&&C&&E){const W=we()||process.cwd(),Q=xg({lookupFilePath:E,scenarioType:s.type||null,projectRoot:W});if(!Q.valid)return Response.json({error:Q.error},{status:400});if(Q.needsAnalysis)try{const{runAnalysisForEntities:B}=await import("./analysisRunner-BMmkgAkg.js");await B({projectRoot:W,filePaths:[E],onlyDataStructure:!0});try{const O=(await Xe({})||[]).filter(le=>le.filePath===E),re=O.find(le=>{var he,oe;return((he=le.metadata)==null?void 0:he.notExported)===!1&&((oe=le.metadata)==null?void 0:oe.namedExport)===!1})||O[0];re&&(N=re.sha)}catch{}if(N)try{const D=await Xe({});await wg(h,(D||[]).map(O=>{var q,re;return{sha:O.sha,name:O.name,filePath:O.filePath||"",isDefaultExport:((q=O.metadata)==null?void 0:q.notExported)===!1&&((re=O.metadata)==null?void 0:re.namedExport)===!1}}))}catch{}}catch(B){console.warn(`[editor-register-scenario] Auto analyze-imports failed for ${E}: ${B.message}`)}}l?k=l:v&&v.startsWith("app/")?k=It(_t(v)):s.url&&(k=ct(s.url));const S=await gg(h,{projectId:u.id,name:o,description:i||null,componentName:l||null,componentPath:c||null,url:s.url||null,type:s.type||null,viewportWidth:b.width,viewportHeight:b.height,dimensions:x,screenshotPaths:null,pageFilePath:v,entitySha:N,displayName:k}),_=S.scenarioId;S.cleanedUpIds.length>0&&(yg(m,S.cleanedUpIds),console.log(`[editor-register-scenario] Cleaned up ${S.cleanedUpIds.length} duplicate(s) for "${o}"`));const j=s.type==="application"||s.type==="user",$=new Date().toISOString(),P={name:o,description:i||null,componentName:l||null,componentPath:c||null,url:s.url||null,type:s.type||(j?null:"component"),screenshotPath:null,viewportWidth:b.width,viewportHeight:b.height,dimensions:x,screenshotPaths:null,pageFilePath:v,entitySha:N,displayName:k,createdAt:$,updatedAt:$},I={};if(j&&s.seed){let W=s.seed;if(s.type==="user"&&s.baseScenario)try{const B=L.join(m,".codeyam","editor-scenarios",`${s.baseScenario}.json`),D=await Pe.readFile(B,"utf-8"),O=JSON.parse(D);O.seed&&(W=T0(O.seed,s.seed),console.log(`[editor-register-scenario] Merged seed data from base scenario ${s.baseScenario}`))}catch(B){console.warn(`[editor-register-scenario] Could not read base scenario ${s.baseScenario}: ${B instanceof Error?B.message:B}`)}I.type=s.type,I.seed=W,s.externalApis&&(I.externalApis=s.externalApis),s.session&&(I.session=s.session),s.auth&&(I.auth=s.auth),s.localStorage&&(I.localStorage=s.localStorage);const Q=L.join(m,".codeyam","editor-scenarios");await Pe.mkdir(Q,{recursive:!0}),await Pe.writeFile(L.join(Q,`${_}.seed.json`),JSON.stringify(W,null,2))}else(s.mockData||s.localStorage)&&(s.mockData&&Object.assign(I,s.mockData),s.localStorage&&(I.localStorage=s.localStorage));let R=null;if(j&&!s.seed&&wr(m)){const Q=L.join(m,".codeyam","editor-scenarios",`${_}.json`);let B=!1;try{B=!!JSON.parse(await Pe.readFile(Q,"utf-8")).seed}catch{}B||(R='WARNING: This application scenario has no seed data. A seed adapter exists — include "seed":{...} in registration so the page has database rows to render. Without seed data, the page will likely be empty.',console.warn(`[editor-register-scenario] ${R}`))}$0(m,_,P,I);let T=null;if(j&&s.seed){const W=wr(m);if(W){const Q=L.join(m,".codeyam","editor-scenarios",`${_}.seed.json`);console.log(`[editor-register-scenario] Running seed adapter: ${W}`);const B=await Io(W,Q);if(T={success:B.success,error:B.error},B.success){if(console.log(`[editor-register-scenario] Seed adapter completed in ${B.durationMs}ms`),B.sessionCookies&&B.sessionCookies.length>0)try{const D=L.join(m,".codeyam","editor-scenarios",`${_}.json`),O=JSON.parse(await Pe.readFile(D,"utf-8"));O.sessionCookies=B.sessionCookies,await Pe.writeFile(D,JSON.stringify(O,null,2)),console.log(`[editor-register-scenario] Saved ${B.sessionCookies.length} session cookie(s) to scenario data`)}catch(D){console.warn(`[editor-register-scenario] Failed to save session cookies: ${D}`)}}else console.warn(`[editor-register-scenario] Seed adapter failed: ${B.error}`)}else console.warn(`[editor-register-scenario] No seed adapter found at ${m}/.codeyam/seed-adapter.ts`),T={success:!1,error:"No seed adapter found. Create .codeyam/seed-adapter.ts to use seed-based scenarios."}}vt.notifyChange("scenario"),console.log(`[editor-register-scenario] Starting auto-capture for scenario "${o}" (id: ${_})`);const G=s.url&&s.url.startsWith("/"),J=!s.url||G?await Zc():null,F=Bi(),H=Ba(s.url||null,J,F);console.log(`[editor-register-scenario] Capture URL resolution: explicit=${s.url||"none"}, isPath=${G}, proxy=${J||"none"}, devServer=${F||"none"} → using ${H||"none"}`);let U=null,z=null,A=[],Y=null,V={};if(H){const W=Zt(o);await Ka({scenarioId:_,scenarioSlug:W,scenarioType:s.type||void 0,projectRoot:m}),Fn(),console.log(`[editor-register-scenario] Active scenario set to "${W}" (${_}), cache invalidated`),await new Promise(he=>setTimeout(he,300));const Q=(t=s.url)!=null&&t.startsWith("/")?`${Bi()||"http://localhost:3113"}${s.url}`:H;for(let he=0;he<5;he++){try{const oe=await fetch(Q,{method:"GET",signal:AbortSignal.timeout(3e3)});if(oe.status<500)break;console.log(`[editor-register-scenario] Route returned ${oe.status}, waiting for HMR (attempt ${he+1}/5)...`)}catch{console.log(`[editor-register-scenario] Route not reachable, waiting for HMR (attempt ${he+1}/5)...`)}await new Promise(oe=>setTimeout(oe,2e3))}const B=L.join(m,".codeyam","editor-scenarios","screenshots");await Pe.mkdir(B,{recursive:!0});const D=Ha(import.meta.url),O=await Va(D,m);console.log(`[editor-register-scenario] Capture script: ${O}`);const q=To(m),re=x&&x.length>0?x:[null];V={};let le=null;for(let he=0;he<re.length;he++){const oe=re[he];let ge=b;if(oe){const Ce=q[oe];Ce!=null&&Ce.width&&(Ce!=null&&Ce.height)&&(ge={width:Ce.width,height:Ce.height})}const _e=oe?$c(oe):null,je=_e&&re.length>1?`${_}--${_e}.png`:`${_}.png`,pe=L.join(B,je),Z=`screenshots/${je}`;he===0&&(Y=ge,le=pe);const Ne=JSON.stringify({url:H,outputPath:pe,viewportWidth:ge.width,viewportHeight:ge.height,...l?{selector:"#codeyam-capture"}:{}});console.log(`[editor-register-scenario] Capture ${oe||"default"}: ${ge.width}×${ge.height} → ${je}`);const de=Date.now(),ne=await Ga(O,Ne,m),be=Date.now()-de;console.log(`[editor-register-scenario] Capture ${oe||"default"} ${ne.success?"succeeded":"FAILED"} in ${be}ms`),ne.success||(console.warn(`[editor-register-scenario] Capture stdout: ${ne.output.slice(0,500)}`),console.warn(`[editor-register-scenario] Capture stderr: ${(ne.error||"").slice(0,500)}`)),he===0&&(A=Xc(ne.output),await ed(m,_,o,A),A.length>0&&console.warn(`[editor-register-scenario] ${A.length} client-side error(s) detected:`,A)),ne.success?(oe&&(V[oe]=Z),he===0&&(U=Z)):he===0&&(z=ne.error||"Unknown capture error",console.warn(`[editor-register-scenario] Screenshot capture failed (non-blocking): ${z}`))}if(U){try{await h.schema.alterTable("editor_scenarios").addColumn("screenshot_path","varchar").execute()}catch{}const he={screenshot_path:U,updated_at:new Date().toISOString().replace("T"," ").replace(/\.\d{3}Z$/,"")};Object.keys(V).length>0&&(he.screenshot_paths=JSON.stringify(V)),await h.updateTable("editor_scenarios").set(he).where("id","=",_).execute(),vt.notifyChange("scenario"),le&&await K0(m,o,le)}}else console.log("[editor-register-scenario] Skipping screenshot — no capture URL available (dev server not running?)");if(console.log(`[editor-register-scenario] Done: scenario="${o}", screenshot=${U?"captured":"skipped"}`),H&&U)try{const W=we()||process.cwd(),Q=L.join(W,".codeyam","editor-step.json");let B=null;try{const D=K.readFileSync(Q,"utf8");B=JSON.parse(D).featureStartedAt||null}catch{}if(B){const D=Us(B),O=await h.selectFrom("editor_scenarios").selectAll().where("project_id","=",u.id).orderBy("created_at","asc").execute(),q=Tt(O,le=>`${le.name}::${le.url||"/"}`),re=Kn();if(re.length>0){let le=!1;try{const{execSync:ne}=await import("child_process"),be=ne("git rev-list --count HEAD",{cwd:W,encoding:"utf8",stdio:["pipe","pipe","ignore"]}).trim();le=parseInt(be,10)<=1}catch{le=!0}const he=jc(re,le),oe={},ge=L.join(W,"app");if(K.existsSync(ge)){const ne=(be,Ce)=>{for(const Fe of K.readdirSync(be,{withFileTypes:!0}))if(Fe.name!=="isolated-components"){if(Fe.isDirectory())ne(L.join(be,Fe.name),Ce?`${Ce}/${Fe.name}`:Fe.name);else if(Fe.name==="page.tsx"||Fe.name==="page.js"){const Se=ct(Ce?`/${Ce}`:"/");oe[Se]=Ce?`app/${Ce}/${Fe.name}`:`app/${Fe.name}`}}};ne(ge,"")}let _e=[];try{await Ue(),_e=await Xe({})||[]}catch{}const je=q.map(ne=>({componentName:ne.component_name||null,componentPath:ne.component_path||null,pageFilePath:ne.page_file_path??null,url:ne.url??null})),pe=Tc(je,oe,_e),Z=Mc(he,pe),Ne=q.filter(ne=>ne.created_at<D),de=new Map;for(const ne of Ne){const be=ne.component_name||ct(ne.url);((r=Z[be])==null?void 0:r.status)==="impacted"&&de.set(be,ne)}if(de.size>0){console.log(`[editor-register-scenario] Recapturing ${de.size} impacted older scenario(s): ${[...de.keys()].join(", ")}`);const ne=Ha(import.meta.url),be=await Va(ne,m),Ce=L.join(m,".codeyam","editor-scenarios","screenshots");for(const[Se,Re]of de)try{const Be=Zt(Re.name);await Ka({scenarioId:Re.id,scenarioSlug:Be,projectRoot:m}),Fn(),await new Promise(ft=>setTimeout(ft,300));const Me=Ba(Re.url||null,J,F);if(!Me)continue;const kt=L.join(Ce,`${Re.id}.png`);let Nn;try{const ft=Re.dimensions?JSON.parse(Re.dimensions):null;Array.isArray(ft)&&ft.length>0&&(Nn=ft[0])}catch{}const Cn=ws({bodyWidth:Re.viewport_width||void 0,bodyHeight:Re.viewport_height||void 0,dimension:Nn,codeyamRoot:m}),Ge=JSON.stringify({url:Me,outputPath:kt,viewportWidth:Cn.width,viewportHeight:Cn.height,...Re.component_name?{selector:"#codeyam-capture"}:{}});console.log(`[editor-register-scenario] Recapturing "${Re.name}" (entity: ${Se})`);const mt=await Ga(be,Ge,m);mt.success?(await h.updateTable("editor_scenarios").set({screenshot_path:`screenshots/${Re.id}.png`,updated_at:new Date().toISOString().replace("T"," ").replace(/\.\d{3}Z$/,"")}).where("id","=",Re.id).execute(),console.log(`[editor-register-scenario] Recapture succeeded for "${Re.name}"`)):console.warn(`[editor-register-scenario] Recapture failed for "${Re.name}": ${mt.error}`)}catch(Be){console.warn(`[editor-register-scenario] Recapture error for "${Re.name}": ${Be instanceof Error?Be.message:Be}`)}const Fe=L.join(m,".codeyam","active-scenario.json");await Pe.writeFile(Fe,JSON.stringify({scenarioId:_,scenarioSlug:Zt(o),type:s.type||null,timestamp:new Date().toISOString()})),Fn(),vt.notifyChange("scenario")}}}}catch(W){console.warn(`[editor-register-scenario] Recapture of impacted scenarios failed (non-blocking): ${W instanceof Error?W.message:W}`)}try{const W=new Date().toISOString(),Q=Object.keys(V).length>0?V:null;ad(m,_,{name:o,description:i||null,componentName:l||null,componentPath:c||null,url:s.url||null,type:s.type||null,screenshotPath:U||null,viewportWidth:b.width,viewportHeight:b.height,dimensions:x,screenshotPaths:Q,pageFilePath:v,createdAt:W,updatedAt:W})}catch(W){console.warn(`[editor-register-scenario] Failed to update scenario metadata (non-blocking): ${W instanceof Error?W.message:W}`)}try{O0({dimension:w,viewport:b,refreshPath:s.url||void 0,scenarioId:_})}catch{}return new Response(JSON.stringify({success:!0,scenario:{id:_,name:o,description:i,componentName:l||null,componentPath:c||null,screenshotPath:U,url:s.url||null,type:s.type||null,viewportWidth:b.width,viewportHeight:b.height,dimensions:x,screenshotPaths:Object.keys(V).length>0?V:null},updated:!S.isNew,screenshotCaptured:U!==null,capturedViewport:Y,captureError:z,clientErrors:A,...T?{seedResult:T}:{},...R?{missingSeedWarning:R}:{}}),{headers:{"Content-Type":"application/json"}})}catch(s){const a=s instanceof Error?s.message:String(s);return console.error("[editor-register-scenario] Error:",s),new Response(JSON.stringify({error:a}),{status:500,headers:{"Content-Type":"application/json"}})}}const Q0=Object.freeze(Object.defineProperty({__proto__:null,action:q0},Symbol.toStringTag,{value:"Module"}));function Fo(e){const t={},r=[],s=L.join(e,"app");if(!K.existsSync(s))return{map:t,allFiles:r};const a=c=>c.split("/").filter(p=>!p.startsWith("(")).join("/"),o=new Set(["_layout.tsx","_layout.ts","_layout.js","layout.tsx","layout.ts","layout.js"]),i=new Set([".tsx",".ts",".jsx",".js"]),l=(c,p)=>{for(const u of K.readdirSync(c,{withFileTypes:!0}))if(u.name!=="isolated-components")if(u.isDirectory())l(L.join(c,u.name),p?`${p}/${u.name}`:u.name);else if(u.name==="page.tsx"||u.name==="page.js"){const h=p?`app/${p}/${u.name}`:`app/${u.name}`;r.push(h);const m=a(p);t[ct(m?`/${m}`:"/")]=h}else{if(o.has(u.name))continue;{const h=L.extname(u.name);if(!i.has(h))continue;const m=L.basename(u.name,h),f=p?`app/${p}/${u.name}`:`app/${u.name}`,g=a(p);let y;m==="index"?y=g?`/${g}`:"/":y=g?`/${g}/${m}`:`/${m}`,r.push(f);const x=ct(y);t[x]||(t[x]=f)}}};return l(s,""),{map:t,allFiles:r}}function ld(e){try{const t=Ie("git rev-list --count HEAD",{cwd:e,encoding:"utf8",stdio:["pipe","pipe","ignore"]}).trim();return parseInt(t,10)<=1}catch{return!0}}function cd(e){try{const t=L.join(e,".codeyam","editor-step.json"),r=K.readFileSync(t,"utf8");return JSON.parse(r).featureStartedAt||null}catch{return null}}function Lo(e){try{const t=L.join(e,".codeyam","editor-step.json"),r=K.readFileSync(t,"utf8");return JSON.parse(r).feature||null}catch{return null}}function dd(e){try{const t=L.join(e,".codeyam","editor-step.json"),r=K.readFileSync(t,"utf8"),s=JSON.parse(r);return typeof s.step=="number"&&s.label?{step:s.step,label:s.label}:null}catch{return null}}function ud(e){try{const t=L.join(e,".codeyam","claude-session-id.txt");return K.readFileSync(t,"utf8").trim()||null}catch{return null}}function zo(e){try{const t=L.join(e,".codeyam","editor-user-prompt.txt");return K.readFileSync(t,"utf8").trim()||null}catch{return null}}const Z0=Object.freeze(Object.defineProperty({__proto__:null,detectFirstFeature:ld,readEditorFeature:Lo,readEditorSessionId:ud,readEditorStep:dd,readEditorUserPrompt:zo,readFeatureStartedAt:cd,scanPageFilePaths:Fo},Symbol.toStringTag,{value:"Module"}));async function Pr(e){const{projectRoot:t,scenarioInputs:r,glossaryInputs:s}=e,o=(e.precomputedPageFilePaths??Fo(t)).map,i=new Set(Object.keys(o)),l=e.precomputedGitFiles??Kn();if(l.length===0)return{entityChangeStatus:{},pageEntityNames:i};const c=ld(t),p=jc(l,c);let u=[];if(e.precomputedEntities)u=e.precomputedEntities;else try{await Ue(),u=await Xe({})||[]}catch{}const h=Tc(r,o,u);let m=h;if(s&&s.length>0){const g=new Set(h.map(x=>x.name)),y=ng(s,g);m=[...h,...y]}return{entityChangeStatus:Mc(p,m),pageEntityNames:i}}function X0(e,t,r,s){const a=s?s.replace("T"," ").replace(/\.\d{3}Z$/,""):null,o=[],i=[],l=new Set;for(const u of e){const h=Ar({componentName:u.component_name,pageFilePath:u.page_file_path,url:u.url});if(!h)continue;const m=t[h];if(!m||u.component_name)continue;const f=u.created_at||"",g=u.updated_at||"";(a?f>=a||g>=a:!0)?(i.push({name:u.name,url:u.url,entityName:h}),l.add(h)):o.push({name:u.name,url:u.url,entityName:h,changeStatus:m.status,lastCaptured:f})}const c=[];for(const[u,h]of Object.entries(t)){if(!r.has(u)||l.has(u))continue;o.some(f=>f.entityName===u)||c.push({entityName:u,changeStatus:h.status})}const p=o.length===0&&c.length===0;return{staleScenarios:o,freshScenarios:i,uncoveredPages:c,pass:p}}async function ey(){const e=we()||process.cwd(),t=await ze();if(!t)return Response.json({error:"No project configured"},{status:400});const r=L.join(e,".codeyam","editor-step.json");let s=null;try{const f=K.readFileSync(r,"utf8");s=JSON.parse(f).featureStartedAt||null}catch{}const{project:a}=await Oe(t),i=await Te().selectFrom("editor_scenarios").select(["id","name","component_name","component_path","page_file_path","url","type","created_at","updated_at"]).where("project_id","=",a.id).orderBy("created_at","asc").execute(),l=Tt(i,f=>`${f.name}::${f.url||"/"}`),c=l.map(f=>({componentName:f.component_name||null,componentPath:f.component_path||null,pageFilePath:f.page_file_path??null,url:f.url??null}));let p={},u=new Set;try{const f=await Pr({projectRoot:e,scenarioInputs:c});p=f.entityChangeStatus,u=f.pageEntityNames}catch{}if(Object.keys(p).length===0)return Response.json({staleScenarios:[],uncoveredPages:[],freshScenarios:[],pass:!0,note:"No entity change data available — cannot determine coverage."});const h=l.map(f=>({name:f.name,component_name:f.component_name,page_file_path:f.page_file_path??null,url:f.url??null,created_at:f.created_at||"",updated_at:f.updated_at||null})),m=X0(h,p,u,s);return Response.json(m)}const ty=Object.freeze(Object.defineProperty({__proto__:null,loader:ey},Symbol.toStringTag,{value:"Module"}));function ny({executionFlows:e,selections:t,onChange:r,disabled:s=!1}){const a=ie(i=>t.some(l=>l.flowId===i),[t]),o=ie(i=>{a(i.id)?r(t.filter(l=>l.flowId!==i.id)):r([...t,{flowId:i.id,flowName:i.name}])},[t,r,a]);return e.length===0?n("div",{className:"text-sm text-gray-500 py-2",children:"No execution flows found."}):n("div",{className:"space-y-3",children:e.map(i=>{const l=a(i.id),c=i.usedInScenarios.length>0;return d("div",{className:"border-b border-gray-100 pb-3 last:border-0 last:pb-0",children:[d("label",{className:"flex items-start gap-2 cursor-pointer",children:[n("input",{type:"checkbox",checked:l,onChange:()=>o(i),disabled:s,className:"mt-0.5 h-4 w-4 rounded border-gray-300 text-blue-600 focus:ring-blue-500"}),d("div",{className:"flex-1 min-w-0",children:[d("div",{className:"flex items-center gap-2 flex-wrap",children:[n("span",{className:"font-mono text-sm font-medium text-gray-900",children:i.name}),!c&&n("span",{className:"text-xs px-1.5 py-0.5 bg-amber-100 text-amber-700 rounded",children:"uncovered"}),i.blocksOtherFlows&&n("span",{className:"text-xs px-1.5 py-0.5 bg-purple-100 text-purple-700 rounded",children:"blocking"}),i.impact==="high"&&n("span",{className:"text-xs px-1.5 py-0.5 bg-red-100 text-red-700 rounded",children:"high impact"})]}),i.description&&n("p",{className:"text-xs text-gray-500 mt-0.5 m-0",children:i.description})]})]}),l&&i.requiredValues.length>0&&d("div",{className:"ml-6 mt-2 p-2 bg-gray-50 rounded text-xs",children:[n("span",{className:"text-gray-700 font-medium",children:"Required values:"}),n("ul",{className:"m-0 mt-1 pl-4 space-y-0.5",children:i.requiredValues.map((p,u)=>d("li",{className:"text-gray-600",children:[n("code",{className:"bg-gray-100 px-1 rounded",children:p.attributePath})," ",n("span",{className:"text-gray-400",children:p.comparison})," ",n("code",{className:"bg-gray-100 px-1 rounded",children:p.value})]},u))})]})]},i.id)})})}function Bo(e,t){const r=(e||[]).map(c=>({...c,usedInScenarios:[]})),s=new Map;r.forEach(c=>{s.set(c.id,c)});const a=[];t.forEach(c=>{var u;const p=((u=c.metadata)==null?void 0:u.coveredFlows)||[];p.forEach(h=>{const m=s.get(h);m&&m.usedInScenarios.push({id:c.id||"",name:c.name})}),a.push({scenario:c,coveredFlowIds:p})});const o=r.length,i=r.filter(c=>c.usedInScenarios.length>0).length,l=o>0?i/o*100:0;return{executionFlows:r,totalFlows:o,coveredFlows:i,coveragePercentage:l,scenariosWithFlows:a}}function ry(e){return e.executionFlows.filter(t=>t.usedInScenarios.length===0)}const sy=({data:e})=>[{title:e!=null&&e.entity?`Create Scenario - ${e.entity.name} - CodeYam`:"Create Scenario - CodeYam"},{name:"description",content:"Create a new scenario"}];async function ay({params:e}){var i;const{sha:t}=e;if(!t)throw new Response("Entity SHA is required",{status:400});const r=await Ms(t,!0),s=r&&r.length>0?r[0]:null;if(!s)throw new Response("Analysis not found",{status:404});const a=(i=s.scenarios)==null?void 0:i.find(l=>l.name===Ts);if(!a)throw new Response("Default scenario not found",{status:404});const o=await ze();return X({analysis:s,defaultScenario:a,entity:s.entity,entitySha:t,projectSlug:o})}function oy(){var H;const{analysis:e,defaultScenario:t,entity:r,entitySha:s,projectSlug:a}=tt(),o=Mt(),{iframeRef:i}=Mo(),[l,c]=M(""),[p,u]=M(400),[h,m]=M(!1),[f,g]=M(!1),[y,x]=M(!1),[w,b]=M(null),[v,N]=M(null),[k,E]=M([]),C=ae(()=>{var z;return!((z=e==null?void 0:e.metadata)!=null&&z.executionFlows)||!(e!=null&&e.scenarios)?[]:Bo(e.metadata.executionFlows,e.scenarios).executionFlows},[e]),{interactiveServerUrl:S,isStarting:_,isLoading:j,showIframe:$,iframeKey:P,onIframeLoad:I}=vn({analysisId:e==null?void 0:e.id,scenarioId:t==null?void 0:t.id,scenarioName:t==null?void 0:t.name,projectSlug:a,enabled:!0}),R=ie(async()=>{var U,z,A,Y;if(!l.trim()&&k.length===0){b("Please describe how you want to change the scenario or select execution flows");return}g(!0),b(null),N("Generating scenario with AI...");try{const V=await fetch("/api/generate-scenario-data",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({description:l,existingScenarios:e.scenarios,scenariosDataStructure:(U=e.metadata)==null?void 0:U.scenariosDataStructure,flowSelections:k.length>0?k:void 0})}),W=await V.json();if(!V.ok||!W.success)throw new Error(W.error||"Failed to generate scenario data");console.log("[CreateScenario] AI generated scenario:",W.data);const Q=W.data;if(!Q.name||!Q.data)throw new Error("AI response missing required fields (name or data)");N("Saving new scenario..."),x(!0);const B={name:Q.name,description:Q.description||l,metadata:{data:Q.data,interactiveExamplePath:(z=t.metadata)==null?void 0:z.interactiveExamplePath}},D=[...e.scenarios||[],B],O=await fetch("/api/save-scenarios",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({analysis:e,scenarios:D})}),q=await O.json();if(!O.ok||!q.success)throw new Error(q.error||"Failed to save scenario");console.log("[CreateScenario] Scenario saved:",q);const re=(Y=(A=q.analysis)==null?void 0:A.scenarios)==null?void 0:Y.find(le=>le.name===Q.name);if(!(re!=null&&re.id)){console.warn("[CreateScenario] Could not find saved scenario ID, navigating to entity page"),N("Scenario created! Redirecting..."),setTimeout(()=>void o(`/entity/${s}`),1e3);return}if(S){N("Capturing screenshot...");const le=await fetch("/api/capture-screenshot",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({serverUrl:S,scenarioId:re.id,projectId:e.projectId,viewportWidth:1440})}),he=await le.json();!le.ok||!he.success?(console.error("[CreateScenario] Capture failed:",he),N("Scenario created! (Screenshot capture failed)")):N("Scenario created and captured!")}else N("Scenario created!");setTimeout(()=>{o(`/entity/${s}/scenarios/${re.id}`)},1e3)}catch(V){console.error("[CreateScenario] Error:",V),b(V instanceof Error?V.message:String(V)),N(null)}finally{g(!1),x(!1)}},[l,k,e,t,s,S,o]),T=f||y,G=ie(()=>{m(!0)},[]),J=ie(U=>{if(!h)return;const z=U.clientX;z>=250&&z<=600&&u(z)},[h]),F=ie(()=>{m(!1)},[]);return se(()=>(h?(document.addEventListener("mousemove",J),document.addEventListener("mouseup",F)):(document.removeEventListener("mousemove",J),document.removeEventListener("mouseup",F)),()=>{document.removeEventListener("mousemove",J),document.removeEventListener("mouseup",F)}),[h,J,F]),d("div",{className:"h-screen bg-white flex flex-col overflow-hidden",children:[n("header",{className:"bg-white border-b border-gray-200 shrink-0 relative h-[54px]",children:d("div",{className:"flex items-end h-full px-6 gap-6",children:[d("div",{className:"flex items-center gap-3 min-w-0 flex-1 pb-[14px]",children:[n("button",{onClick:()=>void o(`/entity/${s}`),className:"no-underline shrink-0 bg-transparent border-none cursor-pointer p-0 flex items-center",title:"Back",children:n("svg",{width:"17",height:"17",viewBox:"0 0 17 17",fill:"none",children:n("path",{d:"M13 8.5H4M4 8.5L8.5 4M4 8.5L8.5 13",stroke:"#005c75",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})})}),n("h1",{className:"text-base font-semibold text-black m-0 leading-[20px] shrink-0",children:r==null?void 0:r.name}),n("span",{className:"text-xs text-[#9e9e9e] font-mono font-normal whitespace-nowrap overflow-hidden text-ellipsis min-w-0",title:r==null?void 0:r.filePath,children:r==null?void 0:r.filePath})]}),d("div",{className:"flex items-end gap-8 shrink-0",children:[n(ve,{to:`/entity/${s}/scenarios`,className:"relative pb-[17px] px-2 text-sm transition-colors cursor-pointer no-underline font-medium border-b-2",style:{color:"#005C75",borderColor:"#005C75"},children:d("span",{className:"flex items-center gap-2",children:["Scenarios",n("span",{className:"inline-flex items-center justify-center px-2 py-0.5 text-xs font-semibold rounded-full bg-[#cbf3fa] text-[#005c75]",children:((H=e==null?void 0:e.scenarios)==null?void 0:H.length)||0})]})}),n(ve,{to:`/entity/${s}/related`,className:"relative pb-[17px] px-2 text-sm transition-colors cursor-pointer no-underline font-normal hover:text-gray-700",style:{color:"#9ca3af"},children:"Related Entities"}),n(ve,{to:`/entity/${s}/code`,className:"relative pb-[17px] px-2 text-sm transition-colors cursor-pointer no-underline font-normal hover:text-gray-700",style:{color:"#9ca3af"},children:"Code"}),n(ve,{to:`/entity/${s}/data`,className:"relative pb-[17px] px-2 text-sm transition-colors cursor-pointer no-underline font-normal hover:text-gray-700",style:{color:"#9ca3af"},children:"Data Structure"}),n(ve,{to:`/entity/${s}/history`,className:"relative pb-[17px] px-2 text-sm transition-colors cursor-pointer no-underline font-normal hover:text-gray-700",style:{color:"#9ca3af"},children:"History"})]})]})}),d("div",{className:"flex flex-1 gap-0 min-h-0 relative",children:[d("aside",{className:"bg-white border-r border-gray-200 overflow-y-auto shrink-0 p-6 flex flex-col",style:{width:`${p}px`},children:[d("div",{className:"mb-6",children:[n("h2",{className:"text-lg font-semibold text-gray-900 mb-2",children:"Default Scenario Preview"}),n("p",{className:"text-sm text-gray-600 leading-relaxed",children:"The preview on the right shows the Default Scenario. Select execution flows and/or describe how you'd like to change it."})]}),C.length>0&&d("details",{className:"mb-4 border border-gray-200 rounded-lg",children:[d("summary",{className:"px-3 py-2 text-sm font-medium text-gray-700 cursor-pointer hover:bg-gray-50 rounded-lg",children:["Select Execution Flows"," ",k.length>0&&d("span",{className:"text-blue-600",children:["(",k.length," selected)"]})]}),n("div",{className:"px-3 pb-3 pt-1 border-t border-gray-100",children:n(ny,{executionFlows:C,selections:k,onChange:E,disabled:T})})]}),d("div",{className:"mb-4",children:[n("label",{htmlFor:"prompt",className:"block text-sm font-medium text-gray-700 mb-2",children:"Describe your scenario"}),n("textarea",{id:"prompt",value:l,onChange:U=>c(U.target.value),placeholder:"e.g., Show an empty state with no items...",className:"w-full h-32 px-3 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-1 focus:ring-blue-500 focus:border-blue-500 text-sm resize-none",disabled:T})]}),d("div",{className:"space-y-2",children:[n("button",{onClick:()=>void R(),disabled:T||!l.trim()&&k.length===0,className:"w-full px-4 py-2 bg-blue-600 text-white rounded-lg text-sm font-medium cursor-pointer transition-colors hover:bg-blue-700 disabled:bg-gray-400 disabled:cursor-not-allowed",children:T?"Creating...":"Create Scenario"}),v&&n("div",{className:"text-xs text-blue-600 bg-blue-50 px-2 py-1.5 rounded",children:v}),w&&n("div",{className:"text-xs text-red-600 bg-red-50 px-2 py-1.5 rounded",children:w})]})]}),d("div",{onMouseDown:G,style:{width:"20px",position:"absolute",top:0,left:`${p-10}px`,bottom:0,cursor:"col-resize",touchAction:"none",userSelect:"none",zIndex:100,pointerEvents:"auto"},children:[n("div",{style:{position:"absolute",left:"10px",top:0,bottom:0,width:"1px",background:h?"#005c75":"rgba(0,0,0,0.1)",transition:"background 0.15s ease"}}),n("div",{style:{position:"absolute",top:"50%",left:"10px",transform:"translate(-50%, -50%)",width:"8px",height:"40px",background:"#fff",border:"1px solid rgba(0,0,0,0.15)",borderRadius:"4px",cursor:"col-resize"}})]}),n("main",{className:"flex-1 overflow-auto flex items-center justify-center min-w-0",style:{backgroundImage:`
|
|
274
|
+
linear-gradient(45deg, #ebebeb 25%, transparent 25%),
|
|
275
|
+
linear-gradient(-45deg, #ebebeb 25%, transparent 25%),
|
|
276
|
+
linear-gradient(45deg, transparent 75%, #ebebeb 75%),
|
|
277
|
+
linear-gradient(-45deg, transparent 75%, #ebebeb 75%)
|
|
278
|
+
`,backgroundSize:"16px 16px",backgroundPosition:"0 0, 0 8px, 8px -8px, -8px 0px",backgroundColor:"#fafafa"},children:n(Js,{scenarioId:t.id||t.name,scenarioName:t.name,iframeUrl:S,isStarting:_,isLoading:j,showIframe:$,iframeKey:P,onIframeLoad:I,projectSlug:a,defaultWidth:1440,defaultHeight:900})})]})]})}const iy=Qe(function(){return n(Ws,{children:n(oy,{})})}),ly=Object.freeze(Object.defineProperty({__proto__:null,default:iy,loader:ay,meta:sy},Symbol.toStringTag,{value:"Module"})),cy=Lc;async function dy({request:e}){if(e.method!=="POST")return new Response("Method not allowed",{status:405});try{const t=await e.json(),{scenarioId:r,url:s,viewportWidth:a,viewportHeight:o}=t;if(!r)return new Response(JSON.stringify({error:"scenarioId is required"}),{status:400,headers:{"Content-Type":"application/json"}});const i=await ze();if(!i)return new Response(JSON.stringify({error:"Project not initialized"}),{status:400,headers:{"Content-Type":"application/json"}});const{project:l}=await Oe(i),c=Te(),p=await c.selectFrom("editor_scenarios").selectAll().where("id","=",r).where("project_id","=",l.id).executeTakeFirst();if(!p)return new Response(JSON.stringify({error:"Scenario not found"}),{status:404,headers:{"Content-Type":"application/json"}});const u=s??p.url??null,h=u&&u.startsWith("/"),m=!u||h?await Zc():null,f=cy(),g=Ba(u,m,f);if(console.log(`[editor-capture-scenario] URL resolution: explicit=${s||"none"}, db=${p.url||"none"}, proxy=${m||"none"}, devServer=${f||"none"} → captureUrl=${g||"none"}`),!g)return new Response(JSON.stringify({error:"Cannot determine capture URL — no proxy or dev server running"}),{status:400,headers:{"Content-Type":"application/json"}});console.log(`[editor-capture-scenario] Starting capture for scenario "${p.name}" (id: ${r}), url: ${g}`);const y=process.env.CODEYAM_ROOT_PATH||process.cwd(),x=Zt(p.name);await Ka({scenarioId:r,scenarioSlug:x,scenarioType:p.type||void 0,projectRoot:y}),Fn(),console.log(`[editor-capture-scenario] Active scenario set to "${x}", cache invalidated`),await new Promise($=>setTimeout($,300));const w=L.join(y,".codeyam","editor-scenarios","screenshots");await Pe.mkdir(w,{recursive:!0});const b=Ha(import.meta.url),v=await Va(b,y);console.log(`[editor-capture-scenario] Capture script: ${v}`);let N;const k=p;if(t.dimensions&&t.dimensions.length>0)N=t.dimensions;else if(k.dimensions)try{const $=JSON.parse(k.dimensions);N=Array.isArray($)&&$.length>0?$:[null]}catch{N=[null]}else N=[null];const E=To(y);let C=null;const S={};let _=[],j=null;for(let $=0;$<N.length;$++){const P=N[$];let I;P&&E[P]?I=E[P]:I=ws({bodyWidth:a||k.viewport_width||void 0,bodyHeight:o||k.viewport_height||void 0,dimension:P||void 0,codeyamRoot:y});const R=P?$c(P):null,T=R&&N.length>1?`${r}--${R}.png`:`${r}.png`,G=L.join(w,T),J=`screenshots/${T}`,F=JSON.stringify({url:g,outputPath:G,viewportWidth:I.width,viewportHeight:I.height,...p.component_name?{selector:"#codeyam-capture"}:{}});console.log(`[editor-capture-scenario] Capture ${P||"default"}: ${I.width}×${I.height} → ${T}`);const H=Date.now(),U=await Ga(v,F,y),z=Date.now()-H;if(console.log(`[editor-capture-scenario] Capture ${P||"default"} ${U.success?"succeeded":"FAILED"} in ${z}ms`),!U.success){console.warn(`[editor-capture-scenario] Capture stdout: ${U.output.slice(0,500)}`),console.warn(`[editor-capture-scenario] Capture stderr: ${(U.error||"").slice(0,500)}`),$===0&&(j=U.error||"Unknown capture error");continue}if($===0){C=J;const A=Xc(U.output);_=A,await ed(y,r,p.name,A)}P&&(S[P]=J)}if(!C&&j)return new Response(JSON.stringify({error:"Failed to capture screenshot",details:j}),{status:500,headers:{"Content-Type":"application/json"}});if(C){try{await c.schema.alterTable("editor_scenarios").addColumn("screenshot_path","varchar").execute()}catch{}const $={screenshot_path:C,updated_at:new Date().toISOString().replace("T"," ").replace(/\.\d{3}Z$/,"")};Object.keys(S).length>0&&($.screenshot_paths=JSON.stringify(S)),await c.updateTable("editor_scenarios").set($).where("id","=",r).execute()}return _.length>0&&console.warn(`[editor-capture-scenario] ${_.length} client-side error(s) detected:`,_),vt.notifyChange("scenario"),new Response(JSON.stringify({success:!0,screenshotPath:C,screenshotPaths:Object.keys(S).length>0?S:null,clientErrors:_}),{headers:{"Content-Type":"application/json"}})}catch(t){const r=t instanceof Error?t.message:String(t);return console.error("[editor-capture-scenario] Error:",t),new Response(JSON.stringify({error:r}),{status:500,headers:{"Content-Type":"application/json"}})}}const uy=Object.freeze(Object.defineProperty({__proto__:null,action:dy},Symbol.toStringTag,{value:"Module"}));async function py({request:e,params:t}){const r=t["*"];if(!r)return new Response("Image path is required",{status:400});const s=process.env.CODEYAM_ROOT_PATH||process.cwd(),a=ee.join(s,".codeyam","editor-scenarios","screenshots",r),o=ee.resolve(a),i=ee.resolve(ee.join(s,".codeyam","editor-scenarios","screenshots"));if(!o.startsWith(i))return new Response("Invalid path",{status:403});try{const l=await Ee.stat(a),c=`"${l.mtimeMs}-${l.size}"`;if(e.headers.get("If-None-Match")===c)return new Response(null,{status:304,headers:{ETag:c,"Cache-Control":"public, max-age=300"}});const u=await Ee.readFile(a),h=ee.extname(a).toLowerCase(),m=h===".png"?"image/png":h===".jpg"||h===".jpeg"?"image/jpeg":"application/octet-stream";return new Response(u,{status:200,headers:{"Content-Type":m,"Cache-Control":"public, max-age=300",ETag:c}})}catch{return new Response("Image not found",{status:404})}}const hy=Object.freeze(Object.defineProperty({__proto__:null,loader:py},Symbol.toStringTag,{value:"Module"}));async function my({params:e}){const t=e["*"];if(!t)return new Response("Image path is required",{status:400});const r=process.env.CODEYAM_ROOT_PATH||process.cwd(),s=ee.join(r,".codeyam","journal","screenshots",t),a=ee.resolve(s),o=ee.resolve(ee.join(r,".codeyam","journal","screenshots"));if(!a.startsWith(o))return new Response("Invalid path",{status:403});try{const i=await Ee.readFile(s),l=ee.extname(s).toLowerCase(),c=l===".png"?"image/png":l===".jpg"||l===".jpeg"?"image/jpeg":"application/octet-stream";return new Response(i,{status:200,headers:{"Content-Type":c,"Cache-Control":"no-store"}})}catch{return new Response("Image not found",{status:404})}}const fy=Object.freeze(Object.defineProperty({__proto__:null,loader:my},Symbol.toStringTag,{value:"Module"}));async function gy({request:e}){if(e.method!=="POST")return Response.json({error:"Method not allowed"},{status:405});try{const t=await e.json(),{scenarioId:r,name:s}=t;if(!r||!(s!=null&&s.trim()))return Response.json({error:"Missing required fields: scenarioId, name"},{status:400});const a=s.trim();await Te().updateTable("editor_scenarios").set({name:a,updated_at:new Date().toISOString().replace("T"," ").replace(/\.\d{3}Z$/,"")}).where("id","=",r).execute();const l=we()||process.cwd(),p=M0(l).find(u=>u.id===r);return p&&ad(l,r,{...p.metadata,name:a,updatedAt:new Date().toISOString()}),Response.json({success:!0,name:a})}catch(t){return console.error("[API] Error renaming scenario:",t),Response.json({error:"Failed to rename scenario",details:t instanceof Error?t.message:String(t)},{status:500})}}const yy=Object.freeze(Object.defineProperty({__proto__:null,action:gy},Symbol.toStringTag,{value:"Module"}));async function xy({request:e}){if(e.method!=="POST")return new Response("Method not allowed",{status:405});try{const t=await e.json(),r=t.mode||"overwrite",s=t.localStorage,a=we()||process.cwd(),o=ee.join(a,".codeyam"),i=ee.join(o,"active-scenario.json");if(!ce.existsSync(i))return new Response(JSON.stringify({error:"No active scenario"}),{status:400,headers:{"Content-Type":"application/json"}});const c=JSON.parse(ce.readFileSync(i,"utf-8")).scenarioId;if(!c)return new Response(JSON.stringify({error:"No active scenario ID"}),{status:400,headers:{"Content-Type":"application/json"}});const p=ee.join(o,"editor-scenarios"),u=wr(a);let h=null;if(u){const f=ee.join(o,"tmp",`export-${Date.now()}.json`);ce.mkdirSync(ee.dirname(f),{recursive:!0});const g=await j0(u,f);if(!g.success)return new Response(JSON.stringify({error:`Export failed: ${g.error}`}),{status:500,headers:{"Content-Type":"application/json"}});try{h=JSON.parse(ce.readFileSync(f,"utf-8"))}finally{try{ce.unlinkSync(f)}catch{}}}if(!h&&!s)return new Response(JSON.stringify({error:"No data to save: no seed adapter found and no localStorage provided"}),{status:400,headers:{"Content-Type":"application/json"}});let m=c;if(r==="new"){m=Un.randomUUID();const f=ee.join(p,`${c}.json`);let g={_metadata:{type:"application"}};ce.existsSync(f)&&(g=JSON.parse(ce.readFileSync(f,"utf-8"))),h&&(g.seed=h),s&&(g.localStorage=s),ce.writeFileSync(ee.join(p,`${m}.json`),JSON.stringify(g,null,2)),h&&ce.writeFileSync(ee.join(p,`${m}.seed.json`),JSON.stringify(h,null,2))}else{const f=ee.join(p,`${c}.json`);if(ce.existsSync(f)){const g=JSON.parse(ce.readFileSync(f,"utf-8"));h&&(g.seed=h),s&&(g.localStorage=s),ce.writeFileSync(f,JSON.stringify(g,null,2))}h&&ce.writeFileSync(ee.join(p,`${c}.seed.json`),JSON.stringify(h,null,2))}return Fn(),new Response(JSON.stringify({success:!0,mode:r,scenarioId:m}),{headers:{"Content-Type":"application/json"}})}catch(t){const r=t instanceof Error?t.message:String(t);return new Response(JSON.stringify({error:r}),{status:500,headers:{"Content-Type":"application/json"}})}}const by=Object.freeze(Object.defineProperty({__proto__:null,action:xy},Symbol.toStringTag,{value:"Module"}));async function wy({request:e}){if(e.method!=="POST")return Response.json({error:"Method not allowed"},{status:405});const t=await e.json(),{prompt:r}=t;if(!r)return Response.json({error:"Missing prompt"},{status:400});const s=we()||process.cwd(),a=L.join(s,".codeyam","tmp");K.mkdirSync(a,{recursive:!0});const o=Jl.randomUUID().slice(0,8),i=L.join(a,`scenario-prompt-${o}.md`);return K.writeFileSync(i,r,"utf8"),Response.json({promptFile:i})}const vy=Object.freeze(Object.defineProperty({__proto__:null,action:wy},Symbol.toStringTag,{value:"Module"}));let on=null;async function Ny({request:e}){if(e.method!=="POST")return new Response("Method not allowed",{status:405});try{const t=await e.json(),{scenarioSlug:r,scenarioId:s,scenarioName:a,scenarioType:o,skipBroadcast:i}=t;if(!r||typeof r!="string")return new Response(JSON.stringify({error:"scenarioSlug is required"}),{status:400,headers:{"Content-Type":"application/json"}});const l=we()||process.cwd(),c=ee.join(l,".codeyam"),p=ee.join(c,"active-scenario.json");let u=o||null;if(!u&&s){const g=ee.join(c,"editor-scenarios",`${s}.json`);try{ce.existsSync(g)&&(u=JSON.parse(ce.readFileSync(g,"utf-8")).type||null)}catch{}}ce.mkdirSync(c,{recursive:!0}),ce.writeFileSync(p,JSON.stringify({scenarioSlug:r,scenarioName:a||null,scenarioId:s||null,type:u,dataFile:s?`.codeyam/editor-scenarios/${s}.json`:null,switchedAt:new Date().toISOString()},null,2));let h=null;const m=u==="application"||u==="user";if(m&&s)if(on&&on.scenarioId===s)console.log(`[editor-switch-scenario] Seed already in progress for "${s}" — reusing`),h=await on.promise;else{const g=wr(l),y=ee.join(c,"editor-scenarios",`${s}.seed.json`);if(g&&ce.existsSync(y)){console.log(`[editor-switch-scenario] Running seed adapter for ${u} scenario "${a||r}"`);const x=Io(g,y).then(w=>{const b={success:w.success,error:w.error};if(w.success){if(console.log(`[editor-switch-scenario] Seed adapter completed in ${w.durationMs}ms`),w.sessionCookies&&w.sessionCookies.length>0)try{const v=ee.join(c,"editor-scenarios",`${s}.json`);if(ce.existsSync(v)){const N=JSON.parse(ce.readFileSync(v,"utf-8"));N.sessionCookies=w.sessionCookies,ce.writeFileSync(v,JSON.stringify(N,null,2))}}catch{}}else console.warn(`[editor-switch-scenario] Seed adapter failed: ${w.error}`);return b});on={scenarioId:s,promise:x};try{h=await x}finally{on&&on.scenarioId===s&&(on=null)}}else g||(console.warn("[editor-switch-scenario] No seed adapter found — skipping database seeding"),h={success:!1,error:"No seed adapter found"})}Fn();const f=i?0:Do();return new Response(JSON.stringify({success:!0,scenarioSlug:r,refreshedClients:f,seeded:m,...h?{seedResult:h}:{}}),{headers:{"Content-Type":"application/json"}})}catch(t){const r=t instanceof Error?t.message:String(t);return new Response(JSON.stringify({error:r}),{status:500,headers:{"Content-Type":"application/json"}})}}const Cy=Object.freeze(Object.defineProperty({__proto__:null,action:Ny},Symbol.toStringTag,{value:"Module"}));var ke;(e=>{(t=>{t.OPENAI_GPT5_1="openai/gpt-5.1",t.OPENAI_GPT5="openai/gpt-5",t.OPENAI_GPT5_MINI="openai/gpt-5-mini",t.OPENAI_GPT5_NANO="openai/gpt-5-nano",t.OPENAI_GPT4_1="openai/gpt-4.1",t.OPENAI_GPT4_1_MINI="openai/gpt-4.1-mini",t.OPENAI_GPT4_O="openai/gpt-4o",t.OPENAI_GPT4_O_MINI="openai/gpt-4o-mini",t.OPENAI_GPT_OSS_120B_GROQ="openai/gpt-oss-120b-groq",t.OPENAI_GPT_OSS_120B_DEEPINFRA="openai/gpt-oss-120b-deepinfra",t.QWEN3_235B_INSTRUCT_DEEPINFRA="qwen/qwen3-235b-instruct-deepinfra",t.QWEN3_CODER_480B_INSTRUCT_DEEPINFRA="qwen/qwen3-coder-480b-instruct-deepinfra",t.GOOGLE_GEMINI_2_5_PRO_DEEPINFRA="google/gemini-2.5-pro-deepinfra",t.GOOGLE_GEMINI_2_5_FLASH_DEEPINFRA="google/gemini-2.5-flash-deepinfra",t.GOOGLE_GEMINI_2_5_FLASH_LITE_OPENROUTER="google/gemini-2.5-flash-lite-openrouter",t.META_LLAMA_4_MAVERICK_OPENROUTER="meta-llama/llama-4-maverick-openrouter",t.DEEPSEEK_V3_1_TERMINUS_OPENROUTER="deepseek/v3.1-terminus-openrouter",t.ANTHROPIC_CLAUDE_4_5_HAIKU="anthropic/claude-4.5-haiku",t.ANTHROPIC_CLAUDE_4_5_SONNET="anthropic/claude-4.5-sonnet",t.ANTHROPIC_CLAUDE_4_5_OPUS="anthropic/claude-4.5-opus",t.PHIND_CODELLAMA="phind/codellama",t.GOOGLE_GEMINI_PRO="google/gemini-pro",t.GOOGLE_PALM_2_CODE_CHAT_32K="google/palm-2-code-chat-32k",t.META_CODELLAMA_34B_INSTRUCT="meta-llama/codellama-34b-instruct",t.OPENAI_GPT4_PREVIEW="openai/gpt-4-preview"})(e.Model||(e.Model={}))})(ke||(ke={}));function pd(e,t){return e?Object.values(ke.Model).includes(e)?e:(console.warn(`Invalid model in environment variable: ${e}. Falling back to ${t}`),t):t}const hd=pd(process.env.DEFAULT_SMALLER_MODEL,ke.Model.OPENAI_GPT4_1_MINI),Sy=pd(process.env.DEFAULT_LARGER_MODEL,ke.Model.OPENAI_GPT4_1),Et={name:"OpenAI",baseURL:"https://api.openai.com/v1",apiKeyEnvVar:"OPENAI_API_KEY"},_a={name:"OpenRouter",baseURL:"https://openrouter.ai/api/v1",apiKeyEnvVar:"OPENROUTER_API_KEY"},_y={name:"Groq",baseURL:"https://api.groq.com/openai/v1",apiKeyEnvVar:"GROQ_API_KEY"},ka={name:"Anthropic",baseURL:"https://api.anthropic.com/v1/",apiKeyEnvVar:"ANTHROPIC_API_KEY"},Gt={name:"DeepInfra",baseURL:"https://api.deepinfra.com/v1/",apiKeyEnvVar:"DEEPINFRA_API_KEY"},ky={[ke.Model.OPENAI_GPT5_1]:{id:ke.Model.OPENAI_GPT5_1,provider:Et,apiModelName:"gpt-5.1",maxCompletionTokens:128e3,pricing:{input:1.25,output:10},reasoningEffort:"none"},[ke.Model.OPENAI_GPT5]:{id:ke.Model.OPENAI_GPT5,provider:Et,apiModelName:"gpt-5",maxCompletionTokens:128e3,pricing:{input:1.25,output:10},reasoningEffort:"minimal"},[ke.Model.OPENAI_GPT5_MINI]:{id:ke.Model.OPENAI_GPT5_MINI,provider:Et,apiModelName:"gpt-5-mini",maxCompletionTokens:128e3,pricing:{input:.25,output:2},reasoningEffort:"minimal"},[ke.Model.OPENAI_GPT5_NANO]:{id:ke.Model.OPENAI_GPT5_NANO,provider:Et,apiModelName:"gpt-5-nano",maxCompletionTokens:128e3,pricing:{input:.05,output:.4},reasoningEffort:"minimal"},[ke.Model.OPENAI_GPT4_1]:{id:ke.Model.OPENAI_GPT4_1,provider:Et,apiModelName:"gpt-4.1",maxCompletionTokens:32768,pricing:{input:2,output:8}},[ke.Model.OPENAI_GPT4_1_MINI]:{id:ke.Model.OPENAI_GPT4_1_MINI,provider:Et,apiModelName:"gpt-4.1-mini",maxCompletionTokens:32768,pricing:{input:.4,output:1.6}},[ke.Model.OPENAI_GPT4_O]:{id:ke.Model.OPENAI_GPT4_O,provider:Et,apiModelName:"gpt-4o",maxCompletionTokens:16384,pricing:{input:2.5,output:10}},[ke.Model.OPENAI_GPT4_O_MINI]:{id:ke.Model.OPENAI_GPT4_O_MINI,provider:Et,apiModelName:"gpt-4o-mini",maxCompletionTokens:16384,pricing:{input:.15,output:.6}},[ke.Model.GOOGLE_GEMINI_2_5_FLASH_LITE_OPENROUTER]:{id:ke.Model.GOOGLE_GEMINI_2_5_FLASH_LITE_OPENROUTER,provider:_a,apiModelName:"google/gemini-2.5-flash-lite",maxCompletionTokens:1048576,pricing:{input:.1,output:.4},reasoningEffort:"minimal"},[ke.Model.META_LLAMA_4_MAVERICK_OPENROUTER]:{id:ke.Model.META_LLAMA_4_MAVERICK_OPENROUTER,provider:_a,apiModelName:"meta-llama/llama-4-maverick",maxCompletionTokens:1048576,pricing:{input:.15,output:.6},reasoningEffort:"minimal"},[ke.Model.DEEPSEEK_V3_1_TERMINUS_OPENROUTER]:{id:ke.Model.DEEPSEEK_V3_1_TERMINUS_OPENROUTER,provider:_a,apiModelName:"deepseek/deepseek-v3.1-terminus",maxCompletionTokens:163840,pricing:{input:.23,output:.9},reasoningEffort:"minimal"},[ke.Model.OPENAI_GPT_OSS_120B_GROQ]:{id:ke.Model.OPENAI_GPT_OSS_120B_GROQ,provider:_y,apiModelName:"openai/gpt-oss-120b",maxCompletionTokens:131072,pricing:{input:.15,output:.75},reasoningEffort:"low"},[ke.Model.OPENAI_GPT_OSS_120B_DEEPINFRA]:{id:ke.Model.OPENAI_GPT_OSS_120B_DEEPINFRA,provider:Gt,apiModelName:"openai/gpt-oss-120b-Turbo",maxCompletionTokens:32768,pricing:{input:.15,output:.6},reasoningEffort:"low"},[ke.Model.QWEN3_235B_INSTRUCT_DEEPINFRA]:{id:ke.Model.QWEN3_235B_INSTRUCT_DEEPINFRA,provider:Gt,apiModelName:"Qwen/Qwen3-235B-A22B-Instruct-2507",maxCompletionTokens:32768,pricing:{input:.09,output:.57}},[ke.Model.QWEN3_CODER_480B_INSTRUCT_DEEPINFRA]:{id:ke.Model.QWEN3_CODER_480B_INSTRUCT_DEEPINFRA,provider:Gt,apiModelName:"Qwen/Qwen3-Coder-480B-A35B-Instruct",maxCompletionTokens:32768,pricing:{input:.4,output:1.6}},[ke.Model.GOOGLE_GEMINI_2_5_PRO_DEEPINFRA]:{id:ke.Model.GOOGLE_GEMINI_2_5_PRO_DEEPINFRA,provider:Gt,apiModelName:"google/gemini-2.5-pro",maxCompletionTokens:1048576,pricing:{input:1.25,output:10},reasoningEffort:"low"},[ke.Model.GOOGLE_GEMINI_2_5_FLASH_DEEPINFRA]:{id:ke.Model.GOOGLE_GEMINI_2_5_FLASH_DEEPINFRA,provider:Gt,apiModelName:"google/gemini-2.5-flash",maxCompletionTokens:1048576,pricing:{input:.3,output:2.5},reasoningEffort:"low"},[ke.Model.ANTHROPIC_CLAUDE_4_5_HAIKU]:{id:ke.Model.ANTHROPIC_CLAUDE_4_5_HAIKU,provider:ka,apiModelName:"claude-haiku-4-5",maxCompletionTokens:2e5,pricing:{input:1,output:5}},[ke.Model.ANTHROPIC_CLAUDE_4_5_SONNET]:{id:ke.Model.ANTHROPIC_CLAUDE_4_5_SONNET,provider:ka,apiModelName:"claude-sonnet-4-5",maxCompletionTokens:2e5,pricing:{input:3,output:15}},[ke.Model.ANTHROPIC_CLAUDE_4_5_OPUS]:{id:ke.Model.ANTHROPIC_CLAUDE_4_5_OPUS,provider:ka,apiModelName:"claude-opus-4-5",maxCompletionTokens:2e5,pricing:{input:5,output:25}},[ke.Model.PHIND_CODELLAMA]:{id:ke.Model.PHIND_CODELLAMA,provider:Et,apiModelName:"phind-codellama",maxCompletionTokens:16384,pricing:{input:0,output:0}},[ke.Model.GOOGLE_GEMINI_PRO]:{id:ke.Model.GOOGLE_GEMINI_PRO,provider:Gt,apiModelName:"google/gemini-pro",maxCompletionTokens:32768,pricing:{input:0,output:0}},[ke.Model.GOOGLE_PALM_2_CODE_CHAT_32K]:{id:ke.Model.GOOGLE_PALM_2_CODE_CHAT_32K,provider:Gt,apiModelName:"google/palm-2-code-chat-32k",maxCompletionTokens:32768,pricing:{input:0,output:0}},[ke.Model.META_CODELLAMA_34B_INSTRUCT]:{id:ke.Model.META_CODELLAMA_34B_INSTRUCT,provider:Gt,apiModelName:"meta-llama/codellama-34b-instruct",maxCompletionTokens:16384,pricing:{input:0,output:0}},[ke.Model.OPENAI_GPT4_PREVIEW]:{id:ke.Model.OPENAI_GPT4_PREVIEW,provider:Et,apiModelName:"gpt-4-preview",maxCompletionTokens:128e3,pricing:{input:0,output:0}}};function qs(e){const t=ky[e];if(!t)throw new Error(`Unknown model: ${e}`);return t}function Ey(e){return qs(e).maxCompletionTokens}function Ay(e){return qs(e).pricing}const Yi=1e6;function Py({model:e,usage:t}){const r=Ay(e);return r?t.prompt_tokens*(r.input/Yi)+t.completion_tokens*(r.output/Yi):null}function jy({chatRequest:e,chatCompletion:t,model:r}){if("error"in t&&t.error)return{model:r,prompt_type:e.type,system_message:e.messages.system,prompt_text:e.messages.prompt,response:JSON.stringify(t,null,2),error:JSON.stringify(t.error)};const s=t.usage||{prompt_tokens:0,completion_tokens:0},a=Py({model:r,usage:s});return{model:r,prompt_type:e.type,system_message:e.messages.system,prompt_text:e.messages.prompt,response:JSON.stringify(t,null,2),input_tokens:s.prompt_tokens,output_tokens:s.completion_tokens,cost:a?Math.round(a*1e5)/1e5:void 0}}function Ty({messages:{system:e,prompt:t},model:r,responseType:s,jsonSchema:a}){const o=r??hd,i=qs(o);Ey(o);const l=[];return e&&l.push({role:"system",content:e}),l.push({role:"user",content:[{type:"text",text:t}]}),{messages:l,model:i.apiModelName,response_format:s==="json_schema"&&a?{type:"json_schema",json_schema:{name:a.name,schema:a.schema,strict:a.strict!==!1}}:{type:s&&s=="text"?"text":"json_object"},...i.reasoningEffort&&{reasoning_effort:i.reasoningEffort}}}let fr=null;function My(e){if(typeof process>"u"||!process.versions||!process.versions.node)return!1;try{const t=xr(e,".codeyam","secrets.json");if(wt(t)){const s=JSON.parse(bi(t,"utf-8"));if(s.anthropicApiKey||s.ANTHROPIC_API_KEY||s.openAiApiKey||s.OPENAI_API_KEY||s.groqApiKey||s.GROQ_API_KEY)return!0}const r=xr(cp(),".codeyam","secrets.json");if(wt(r)){const s=JSON.parse(bi(r,"utf-8"));if(s.anthropicApiKey||s.ANTHROPIC_API_KEY||s.openAiApiKey||s.OPENAI_API_KEY||s.groqApiKey||s.GROQ_API_KEY)return!0}return!!(process.env.OPENAI_API_KEY||process.env.ANTHROPIC_API_KEY||process.env.GROQ_API_KEY)}catch{return!1}}function $y(e){if(typeof process>"u"||!process.versions||!process.versions.node)return!1;const t=xr(e,".claude");return wt(t)}function j2(e){if(My(e))return fr={mode:"direct-api",projectRoot:e},"direct-api";if($y(e))return fr={mode:"claude-cli",projectRoot:e},"claude-cli";throw new Error(`No AI service configured. Please either:
|
|
279
|
+
1. Add an API key to ~/.codeyam/secrets.json (shared across projects) or .codeyam/secrets.json (project-specific), or
|
|
280
|
+
2. Use Claude Code CLI (detected by .claude folder)`)}function Iy(){return(fr==null?void 0:fr.mode)==="claude-cli"}const qa="/tmp/codeyam-e2e-tracking";let Ea,Aa;function Ry(){return Ea===void 0&&(Ea=process.env.CODEYAM_E2E_TRACK_DATA==="true"),Ea}function Dy(){return Aa===void 0&&(Aa=!process.env.CODEYAM_LLM_FIXTURES_DIR),Aa}function Oy(){K.existsSync(qa)||K.mkdirSync(qa,{recursive:!0})}function Fy(e){const t=JSON.stringify(e,null,0);return Jl.createHash("md5").update(t).digest("hex")}function Ly(e,t,r){return[e].join("_")+".json"}function md(e,t,r,s){if(!Ry())return;Oy();const a=Ly(e),o=L.join(qa,a),i=Fy(t);if(Dy()){const l={timestamp:Date.now(),checkpoint:e,entityName:r,scenarioName:s,dataHash:i,data:t};K.writeFileSync(o,JSON.stringify(l,null,2)),console.log(`[E2E Tracking] First run - saved snapshot: ${e} hash=${i.substring(0,8)}`)}else if(K.existsSync(o)){const l=JSON.parse(K.readFileSync(o,"utf-8")),c={matches:i===l.dataHash,firstRunHash:l.dataHash};if(c.matches)console.log(`[E2E Tracking] Match at ${e} hash=${i.substring(0,8)}`);else{c.differences=Qa(l.data,t),console.log(`[E2E Tracking] MISMATCH at ${e}`),console.log(` First run hash: ${l.dataHash}`),console.log(` Second run hash: ${i}`);const p=o.replace(".json","_DIFF.json");K.writeFileSync(p,JSON.stringify({checkpoint:e,entityName:r,scenarioName:s,firstRun:l.data,secondRun:t,differences:c.differences},null,2)),console.log(` Diff saved to: ${p}`)}}else console.log(`[E2E Tracking] No first-run snapshot found for: ${e}`)}function Qa(e,t,r=""){const s=[];if(typeof e!=typeof t)return s.push(`${r||"root"}: type mismatch (${typeof e} vs ${typeof t})`),s;if(e===null||t===null)return e!==t&&s.push(`${r||"root"}: ${JSON.stringify(e)} vs ${JSON.stringify(t)}`),s;if(Array.isArray(e)&&Array.isArray(t)){e.length!==t.length&&s.push(`${r||"root"}: array length ${e.length} vs ${t.length}`);const a=Math.max(e.length,t.length);for(let o=0;o<a;o++)s.push(...Qa(e[o],t[o],`${r}[${o}]`));return s}if(typeof e=="object"&&typeof t=="object"){const a=Object.keys(e),o=Object.keys(t),i=Array.from(new Set([...a,...o]));for(const l of i){const c=e[l],p=t[l];l in e?l in t?s.push(...Qa(c,p,`${r?r+".":""}${l}`)):s.push(`${r?r+".":""}${l}: missing in second run`):s.push(`${r?r+".":""}${l}: missing in first run`)}return s}if(e!==t){const a=JSON.stringify(e),o=JSON.stringify(t);a.length<100&&o.length<100?s.push(`${r||"root"}: ${a} vs ${o}`):s.push(`${r||"root"}: values differ (${a.length} chars vs ${o.length} chars)`)}return s}const Ui=ho(po),Wi=2;function zy(e){try{return JSON.parse(e),{valid:!0}}catch(t){return{valid:!1,error:t.message}}}function By(e){const t=e.trim(),r=(t.match(/\{/g)||[]).length,s=(t.match(/\}/g)||[]).length,a=(t.match(/\[/g)||[]).length,o=(t.match(/\]/g)||[]).length,i=(t.match(new RegExp('(?<!\\\\)"',"g"))||[]).length;return r>s||a>o||i%2!==0||!t.endsWith("}")&&!t.endsWith("]")}async function fd(e,t,r,s=0){try{const a=`${e}
|
|
281
|
+
|
|
282
|
+
${t}${r?`
|
|
283
|
+
|
|
284
|
+
Respond with valid JSON only.`:""}`;let o="claude";try{const{stdout:c}=await Ui("which claude",{timeout:1e3});o=c.trim()}catch{const c=["/usr/local/bin/claude",`${process.env.HOME}/.nvm/versions/node/v20.16.0/bin/claude`,`${process.env.HOME}/.npm-global/bin/claude`];for(const p of c)try{await Ui(`test -x "${p}"`,{timeout:1e3}),o=p;break}catch{}}const{stdout:i,stderr:l}=await new Promise((c,p)=>{var y,x,w;const h=St(o,["-p",a,"--output-format","json","--max-turns","1"],{env:{...process.env}});(y=h.stdin)==null||y.end();let m="",f="";(x=h.stdout)==null||x.on("data",b=>{const v=b.toString();m+=v}),(w=h.stderr)==null||w.on("data",b=>{f+=b.toString()}),h.on("error",b=>{p(b)}),h.on("close",(b,v)=>{if(b===0)c({stdout:m,stderr:f});else{const N=new Error(`Command failed with exit code ${b}. stderr: ${f.substring(0,500)}`);N.code=b,N.stdout=m,N.stderr=f,p(N)}});const g=setTimeout(()=>{h.kill("SIGTERM"),setTimeout(()=>{h.killed||h.kill("SIGKILL")},5e3),p(new Error("Claude CLI command timed out after 60 seconds"))},6e4);h.on("close",()=>clearTimeout(g))});try{const c=JSON.parse(i);let p=c.result||c.response||c.text||c.content;if(!p)throw new Error("No response content from Claude CLI");const u=p.match(/^```(?:json)?\s*\n([\s\S]*?)\n```\s*$/);if(u&&(p=u[1]),r){const h=zy(p);if(h.valid)console.log("✅ Claude CLI: JSON validation passed");else{console.log(`⚠️ Claude CLI: Invalid JSON response (attempt ${s+1}/${Wi+1})`),console.log(`⚠️ Claude CLI: JSON error: ${h.error}`),console.log(`⚠️ Claude CLI: Response length: ${p.length} bytes`);const m=By(p);if(console.log(`⚠️ Claude CLI: Appears truncated: ${m}`),m&&s<Wi){console.log(`🔄 Claude CLI: Attempting to recover truncated JSON (retry ${s+1})`);const f=`The previous response was truncated and incomplete. Here's what was received:
|
|
285
|
+
|
|
286
|
+
\`\`\`json
|
|
287
|
+
${p}
|
|
288
|
+
\`\`\`
|
|
289
|
+
|
|
290
|
+
Please complete this JSON response. Make sure it's valid, complete JSON that properly closes all braces, brackets, and quotes. Return ONLY the complete, valid JSON.`;try{return await fd(e,f,r,s+1)}catch(g){console.log(`⚠️ Claude CLI: Recovery attempt failed: ${g}`)}}console.log(`⚠️ Claude CLI: Returning invalid JSON response after ${s+1} attempts`),console.log(`⚠️ Claude CLI: Downstream parsing will likely fail. First 500 chars: ${p.substring(0,500)}`)}}return p}catch(c){if(i.trim())return i.trim();throw new Error(`Failed to parse Claude CLI response: ${c}`)}}catch(a){const o=a.message;throw o.includes("command not found")||o.includes("ENOENT")?new Error("Claude Code CLI not found. Please ensure Claude Code is installed."):o.includes("not authenticated")||o.includes("subscription")?new Error("Claude Code CLI not authenticated. Please run `claude` to authenticate."):a}}const Kr=new gp({concurrency:100,timeout:1200*1e3,autoStart:!0}),Ji={retries:4,factor:2,minTimeout:1e3,maxTimeout:6e4,randomize:!0},Kt={};async function Za({type:e,systemMessage:t,prompt:r,jsonResponse:s=!0,jsonSchema:a,model:o=hd,attempts:i=0}){var C,S,_,j,$,P,I;if(process.env.CODEYAM_LLM_FIXTURES_DIR)return await Yy(e,process.env.CODEYAM_LLM_FIXTURES_DIR,t);console.log(`CodeYam Debug: LLM Pool [queued=${Kr.size}, running=${Kr.pending}]`);const l=Date.now();let c,p=0;if(Iy()){console.log("Using Claude CLI mode for AI request");const R=await fd(t,r,s);return{finishReason:"stop",completion:R,stats:{model:"claude-sonnet-4-5",prompt_type:e,system_message:t,prompt_text:r,response:R,input_tokens:0,output_tokens:0,cost:0}}}const u=qs(o),h=process.env[u.provider.apiKeyEnvVar];if(!h)throw new Error(`API key not found for provider ${u.provider.name}. Please set ${u.provider.apiKeyEnvVar} environment variable.`);console.log(`Using ${u.provider.name} for AI request`);const m=new fp({apiKey:h,baseURL:u.provider.baseURL}),f={type:e,messages:{system:t,prompt:r},model:o,responseType:a?"json_schema":s?"json_object":"text",jsonSchema:a},g=Ty(f),y=await Kr.add(()=>(c=Date.now(),wi(async()=>{const R=Date.now(),T=["Waiting for LLM response","Still waiting for LLM response","LLM call in progress","Processing LLM request","Awaiting LLM completion"],G=setInterval(()=>{const J=Math.floor((Date.now()-R)/1e3),F=Math.floor(J/10)%T.length;Ni(1,`${T[F]} [type=${e}, model=${o}, elapsed=${J}s]`)},1e4);try{return await m.chat.completions.create(g,{timeout:300*1e3})}finally{clearInterval(G)}},{...Ji,onFailedAttempt:R=>{p++,console.log(`CodeYam Error: Completion call failed [model=${o}]`,{error:R,prompt:r,systemMessage:t,attempts:i,retryCount:p})}})));if(!y)throw new Error("Completion call returned no result");const x=y,w=Date.now(),b=jy({chatRequest:f,chatCompletion:x,model:o});if(!b)throw new Error("Failed to get LLM call stats");b.retries=p,b.wait_ms=c-l,b.duration_ms=w-l;const v=(C=x.choices)==null?void 0:C[0];let N=null;if(v){if(!v.finish_reason)throw console.log(`CodeYam Error: completionCall(): empty completion from LLM, [type=${e}]`,JSON.stringify({chatCompletion:x,chatRequest:f},null,2)),new Error("completionCall(): missing finish_reason in LLM response");N=(S=v.message)==null?void 0:S.content}let k=N;N&&(k=N.replace(/<think>[\s\S]*?<\/think>/g,"").trim());const E=s?k&&(((_=k.match(/\{[\s\S]*\}/))==null?void 0:_[0])??k):k;if(!E){if(console.log(`CodeYam Error: completionCall(): empty completion from LLM, [type=${e}]`,JSON.stringify({completion:E,rawCompletion:N,chatCompletion:x,chatRequest:f},null,2)),i<3)return console.log("CodeYam Error: Retrying completion",{prompt:r,systemMessage:t,attempts:i}),await Za({type:e,systemMessage:t,prompt:r,jsonResponse:s,model:o,attempts:i+1});throw new Error("completionCall(): empty completion from LLM")}if(E.replace(/\s/g,"")==="")throw console.log("CodeYam Error: Empty Completion",{rawCompletion:N,prompt:r,systemMessage:t}),new Error("Empty completion");if(s)try{JSON.parse(E)}catch(R){if(console.log("CodeYam Error: Invalid JSON in completion",{error:R.message,model:o,completion:E.substring(0,500),rawCompletion:N==null?void 0:N.substring(0,500)}),i<3){console.log("CodeYam Error: Retrying with correction prompt",{attempts:i,parseError:R.message});const T=`Your previous response contained invalid JSON with the following error:
|
|
291
|
+
|
|
292
|
+
${R.message}
|
|
293
|
+
|
|
294
|
+
Here was your previous response:
|
|
295
|
+
\`\`\`
|
|
296
|
+
${E}
|
|
297
|
+
\`\`\`
|
|
298
|
+
|
|
299
|
+
Please provide a corrected version with valid JSON only. Do not include any explanatory text, just the valid JSON object.`,G=await Kr.add(()=>wi(async()=>{const z=Date.now(),A=["Waiting for LLM correction response","Still waiting for LLM correction","LLM correction in progress","Processing LLM correction request","Awaiting LLM correction completion"],Y=setInterval(()=>{const V=Math.floor((Date.now()-z)/1e3),W=Math.floor(V/10)%A.length;Ni(1,`${A[W]} [type=${e}, model=${o}, elapsed=${V}s]`)},1e4);try{return await m.chat.completions.create({...g,messages:[{role:"system",content:t},{role:"user",content:r},{role:"assistant",content:E},{role:"user",content:T}]},{timeout:300*1e3})}finally{clearInterval(Y)}},{...Ji,onFailedAttempt:z=>{console.log("CodeYam Error: Correction call failed",{error:z,attempts:i})}}));if(!G)throw new Error("Correction call returned no result");const J=G,F=(P=($=(j=J.choices)==null?void 0:j[0])==null?void 0:$.message)==null?void 0:P.content;let H=F;F&&(H=F.replace(/<think>[\s\S]*?<\/think>/g,"").trim());const U=H&&(((I=H.match(/\{[\s\S]*\}/))==null?void 0:I[0])??H);if(!U)throw new Error("Correction attempt returned empty completion");try{JSON.parse(U),console.log("CodeYam: JSON correction successful");const z=Date.now();return b.duration_ms=z-l,{finishReason:J.choices[0].finish_reason,completion:U,stats:b}}catch(z){return console.log("CodeYam Error: Corrected JSON still invalid",{error:z.message,correctedCompletion:U.substring(0,500)}),await Za({type:e,systemMessage:t,prompt:r,jsonResponse:s,model:o,attempts:i+1})}}throw new Error(`Invalid JSON after ${i} attempts: ${R.message}`)}return md(`completionCall_${e}`,{completion:E,finishReason:x.choices[0].finish_reason}),{finishReason:x.choices[0].finish_reason,completion:E,stats:b}}async function Yy(e,t,r){var o,i,l,c,p;const s=await import("fs"),a=await import("path");console.log(`CodeYam Test: Replaying LLM call for type '${e}' from ${t}`);try{if(!s.existsSync(t))throw console.log(`CodeYam Test: Fixtures directory does not exist yet: ${t}`),new Error(`No LLM fixture files found - directory does not exist: ${t}`);const u=s.readdirSync(t).filter(b=>b.endsWith(".json"));if(u.length===0)throw new Error(`No LLM fixture files found in ${t}`);const h={};for(const b of u)try{const v=s.readFileSync(a.join(t,b),"utf-8"),N=JSON.parse(v);h[N.prompt_type]||(h[N.prompt_type]=[]),h[N.prompt_type].push(N)}catch(v){console.warn(`Failed to parse LLM fixture file ${b}:`,v)}for(const b of Object.keys(h))h[b].sort((v,N)=>{const k=v.created_at??0,E=N.created_at??0;return k-E});const m=h[e];if(!m||m.length===0){const b=Object.keys(h).join(", ");return console.warn(`CodeYam Test: No captured LLM call found for type '${e}'. Available types: ${b}`),{finishReason:"stop",completion:"{}",stats:{model:"fixture-fallback",prompt_type:e,system_message:"",prompt_text:"",response:"{}",input_tokens:0,output_tokens:0,cost:0}}}let f;if(["generateEntityScenarioData","generateChunkMockData","generateMissingMockData"].includes(e)&&r){const b=r.match(/Scenario name must match exactly: "([^"]+)"/),v=b==null?void 0:b[1];if(v){const N={};for(const E of m)try{const S=((o=JSON.parse(E.props||"{}").scenario)==null?void 0:o.name)||"__NO_SCENARIO__";N[S]||(N[S]=[]),N[S].push(E)}catch{}const k=N[v];if(k&&k.length>0){const E=`${t}::${e}::${v}`;Kt[E]===void 0&&(Kt[E]=0);const C=Kt[E];Kt[E]=(C+1)%k.length,f=k[C],console.log(`CodeYam Test: ✅ Matched fixture for scenario '${v}' [${C+1}/${k.length}]`)}else{const E=Object.keys(N).join(", ");console.warn(`CodeYam Test: ⚠️ No fixture found for scenario '${v}'. Available: [${E}]`)}}else console.warn(`CodeYam Test: ⚠️ Could not extract scenario name from system message for type '${e}'`)}if(!f){const b=`${t}::${e}`;Kt[b]===void 0&&(Kt[b]=0);const v=Kt[b];Kt[b]=(v+1)%m.length,f=m[v],console.log(`CodeYam Test: Replaying LLM response for '${e}' [${v+1}/${m.length}]`)}let y;try{y=((c=(l=(i=JSON.parse(f.response).choices)==null?void 0:i[0])==null?void 0:l.message)==null?void 0:c.content)||f.response}catch{y=f.response}let x=y;y&&(x=y.replace(/<think>[\s\S]*?<\/think>/g,"").trim());const w=x&&(((p=x.match(/\{[\s\S]*\}/))==null?void 0:p[0])??x);return md(`completionCall_${e}`,{completion:w||"",finishReason:"stop"}),{finishReason:"stop",completion:w||"",stats:{model:f.model??"fixture",prompt_type:e,system_message:f.system_message??"",prompt_text:f.prompt_text??"",response:f.response??"",input_tokens:f.input_tokens??0,output_tokens:f.output_tokens??0,cost:f.cost??0,retries:0,wait_ms:0,duration_ms:1}}}catch(u){throw console.error("CodeYam Test Error: Failed to replay LLM call:",u),u}}function Hi(){return process.env.DYNAMODB_PREFIX?`${process.env.DYNAMODB_PREFIX}-llm-calls`:null}async function Uy(e){const{propsJson:t,...r}=e,s=JSON.stringify(t,null,2),a=uo(),o=Date.now(),i={...r,id:a,created_at:o,props:s};let l;const c=`${i.object_id}_${a}.json`;if(process.env.DYNAMODB_PATH?l=L.join(process.env.DYNAMODB_PATH,c):process.env.CODEYAM_LOCAL_PROJECT_PATH&&(l=L.join(process.env.CODEYAM_LOCAL_PROJECT_PATH,".codeyam","llm-calls",c)),l)try{const u=L.dirname(l);return await Pe.mkdir(u,{recursive:!0}),await Pe.writeFile(l,JSON.stringify(i,null,2)),console.log(`CodeYam: Saved LLM call to local file: ${l}`),{id:a}}catch(u){return console.log("CodeYam Error: Failed to save LLM call to local file",u),{id:"-1"}}const p=Hi();if(!p)return console.log("[CodeYam] No DynamoDB table name for LLM calls, skipping save"),{id:"-1"};for(const[u,h]of Object.entries(i))typeof h>"u"&&console.log(`CodeYam Warning: LLM call ${a} property ${u} with explicit value 'undefined'`);try{return await new As().send(new yp({TableName:Hi(),Item:bp(i,{removeUndefinedValues:!0})})),{id:a}}catch(u){return console.log(`CodeYam Error: Failed to save LLM call to DynamoDB table ${p}`,u),{id:"-1"}}}new As({});new As({});new As({});const Wy=3,Jy=2,Yo=()=>({max:1e4,maxSize:10*1e3*1e3,sizeCalculation:(e,t)=>16+Wy*String(t).length*(1+Jy)});new go(Yo());new go(Yo());new go(Yo());class Hy{constructor(){this.byMethodName=new Map,this.byClassAndMethod=new Map}register(t,r,s){this.byMethodName.has(t)||this.byMethodName.set(t,[]),this.byMethodName.get(t).push(r),s&&(this.byClassAndMethod.has(s)||this.byClassAndMethod.set(s,new Map),this.byClassAndMethod.get(s).set(t,r))}getByMethodName(t){return this.byMethodName.get(t)}getByClassAndMethod(t,r){var s;return(s=this.byClassAndMethod.get(t))==null?void 0:s.get(r)}}class Vy{getReturnType(){return"array"}addEquivalences(t,r,s){s.addType(r,"array"),s.addType(t,"array");const a=t.getLastFunctionCallSegment();if(a&&a.args.length>0){const o=a.args[0];s.addType(o,"function"),s.addEquivalence(o.withParameter(0),r.withElement("*"))}}isComplete(){return!0}}class Gy{getReturnType(){return"boolean"}addEquivalences(t,r,s){s.addType(r,"array"),s.addType(t,"boolean");const a=t.getLastFunctionCallSegment();if(a&&a.args.length>0){const o=a.args[0];s.addType(o,"function"),s.addEquivalence(o.withParameter(0),r.withElement("*"))}}isComplete(){return!0}}class Ky{getReturnType(){return"boolean"}addEquivalences(t,r,s){s.addType(r,"array"),s.addType(t,"boolean");const a=t.getLastFunctionCallSegment();if(a&&a.args.length>0){const o=a.args[0];s.addType(o,"function"),s.addEquivalence(o.withParameter(0),r.withElement("*"))}}isComplete(){return!0}}class qy{getReturnType(){return"unknown"}addEquivalences(t,r,s){s.addType(r,"array");const a=t.getLastFunctionCallSegment();if(a&&a.args.length>0){const o=a.args[0];s.addType(o,"function"),s.addEquivalence(o.withParameter(0),r.withElement("*"))}}isComplete(){return!0}}class Qy{getReturnType(){return"unknown"}addEquivalences(t,r,s){s.addType(r,"array");const a=t.getLastFunctionCallSegment();if(a&&a.args.length>0){const o=a.args[0];if(s.addType(o,"function"),s.addEquivalence(o.withParameter(1),r.withElement("*")),a.args.length>1){const i=a.args[1];s.addEquivalence(o.withParameter(0),i)}}}isComplete(){return!0}}class Zy{getReturnType(){return"unknown"}addEquivalences(t,r,s){s.addType(r,"unknown");const a=t.getLastFunctionCallSegment();a&&a.args.forEach(o=>{s.addEquivalence(t,o)}),s.addEquivalence(t,r.withElement("*"))}isComplete(){return!0}}class Xy{getReturnType(){return"unknown"}addEquivalences(t,r,s){s.addType(r,"unknown");const a=t.withReturnValues();s.addType(a,"unknown")}isComplete(){return!0}}class ex{getReturnType(){return"array"}addEquivalences(t,r,s){s.addType(r,"array"),s.addType(t,"array");const a=t.getLastFunctionCallSegment();if(a&&a.args.length>2)for(let o=2;o<a.args.length;o++){const i=a.args[o];s.addEquivalence(r.withElement("*"),i)}}isComplete(){return!0}}class tx{getReturnType(){return"number"}addEquivalences(t,r,s){s.addType(r,"array");const a=t.getLastFunctionCallSegment();if(a&&a.args.length>0)for(let o=0;o<a.args.length;o++)s.addEquivalence(r.withElement("*"),t.withParameter(o))}isComplete(){return!0}}class nx{getReturnType(){return"string"}addEquivalences(t,r,s){s.addType(r,"array");const a=t.getLastFunctionCallSegment();if(a&&a.args.length>0){const o=a.args[0];s.addEquivalence(t.withParameter(0),o)}}isComplete(){return!0}}class rx{getReturnType(){return"array"}addEquivalences(t,r,s){s.addType(r,"array");const a=t.getLastFunctionCallSegment();if(a&&a.args.length>0){const o=a.args[0];s.addType(o,"function"),s.addEquivalence(o.withParameter(0),r.withElement("*"))}}isComplete(){return!0}}class sx{getReturnType(){return"array"}addEquivalences(t,r,s){s.addType(r,"array");const a=t.getLastFunctionCallSegment();if(a&&a.args.length>0){const o=a.args[0];s.addType(o,"function"),s.addEquivalence(o.withParameter(0),r.withElement("*"))}}isComplete(){return!0}}class ax{getReturnType(){return"unknown"}addEquivalences(t,r,s){s.addType(r,"unknown"),s.addEquivalence(t.withReturnValues(),r.withElement("*"))}isComplete(){return!0}}class ox{getReturnType(){return"unknown"}addEquivalences(t,r,s){s.addType(r,"array");const a=t.getLastFunctionCallSegment();if(a&&a.args.length>0){const o=a.args[0];s.addType(o,"function"),s.addEquivalence(o.withParameter(0),r.withElement("*"))}}isComplete(){return!0}}class ix{getReturnType(){return"object"}addEquivalences(t,r,s){const a=t.getLastFunctionCallSegment();if(a&&a.args.length>0){const o=a.args[0];s.addType(o,"array")}}isComplete(){return!0}}class lx{getReturnType(){return"string[]"}addEquivalences(t,r,s){s.addType(r,"string"),s.addType(t,"string[]"),s.addEquivalence(t.withReturnValues().withElement("*"),r)}isComplete(){return!0}}class cx{getReturnType(){return"unknown"}addEquivalences(t,r,s){const a=t.getLastFunctionCallSegment();if(a&&a.args.length>0){const o=a.args[0];s.addType(o,"function"),s.addEquivalence(o.withParameter(0),r),s.addEquivalence(t.withProperty("functionCallReturnValue"),o.withProperty("returnValue"))}}isComplete(){return!0}}class dx{getReturnType(){return"unknown"}addEquivalences(t,r,s){t.getLastFunctionCallSegment()}isComplete(){return!0}}class ux{getReturnType(){return"array"}addEquivalences(t,r,s){const a=t.getLastFunctionCallSegment();if(s.addType(t.withParameter(1),"function"),a&&a.args.length>0){const o=a.args[0];s.addEquivalence(t.withParameter(0),o)}}isComplete(){return!0}}function px(){const e=new Hy;return e.register("filter",new Vy,"Array"),e.register("map",new rx,"Array"),e.register("flatMap",new sx,"Array"),e.register("join",new nx,"Array"),e.register("find",new qy,"Array"),e.register("findLast",new ox,"Array"),e.register("at",new ax,"Array"),e.register("reduce",new Qy,"Array"),e.register("concat",new Zy,"Array"),e.register("slice",new Xy,"Array"),e.register("splice",new ex,"Array"),e.register("push",new tx,"Array"),e.register("some",new Gy,"Array"),e.register("every",new Ky,"Array"),e.register("fromEntries",new ix,"Object"),e.register("split",new lx,"String"),e.register("then",new cx,"Promise"),e.register("useState",new ux,"React"),e.register("useMemo",new dx,"React"),e}px();new Set(Object.getOwnPropertyNames(Array.prototype).filter(e=>typeof Array.prototype[e]=="function")),new Set(Object.getOwnPropertyNames(String.prototype).filter(e=>typeof String.prototype[e]=="function")),new Set(Object.getOwnPropertyNames(Number.prototype).filter(e=>typeof Number.prototype[e]=="function")),new Set(Object.getOwnPropertyNames(Boolean.prototype).filter(e=>typeof Boolean.prototype[e]=="function")),new Set(Object.getOwnPropertyNames(Date.prototype).filter(e=>typeof Date.prototype[e]=="function"));const hx=new Set(["filter","sort","slice","splice","unshift","push","reverse","entries"]),mx=new Set(["find","findLast","at","pop","shift"]),fx=new Set(["map","reduce","flatMap","concat","join","some","every","findIndex","findLastIndex","indexOf","lastIndexOf","includes"]),gx=new Set([...hx,...mx,...fx]),yx=new Set(["trim","concat","replace","replaceAll","toLowerCase","toUpperCase","trimStart","trimEnd","padStart","padEnd","normalize","slice","substring","substr","toString()","toLocaleLowerCase","toLocaleUpperCase"]),xx=new Set(["split","match","endsWith","startsWith","includes","indexOf","lastIndexOf","charAt","charCodeAt","codePointAt","repeat","search","valueOf","localeCompare","length"]),bx=new Set([...yx,...xx]);[...gx,...bx];class wx{constructor(t){this.depth=0,this.traceCount=0,this.defaultOutput=(r,s)=>{const a=" ".repeat(this.depth),o=this.timestamps?`[${Date.now()}] `:"";s?console.info(`${o}${a}${r}`,JSON.stringify(s)):console.info(`${o}${a}${r}`)},this.enabled=t.enabled,this.pathPatterns=t.pathPatterns??[],this.scopePatterns=t.scopePatterns??[],this.maxDepth=t.maxDepth??50,this.output=t.output??this.defaultOutput,this.timestamps=t.timestamps??!1}shouldTrace(t){return!this.enabled||this.depth>=this.maxDepth?!1:!!(this.pathPatterns.length===0&&this.scopePatterns.length===0||t.path&&this.pathPatterns.length>0&&this.pathPatterns.some(r=>r.test(t.path))||t.scope&&this.scopePatterns.length>0&&this.scopePatterns.some(r=>r.test(t.scope)))}trace(t,r={}){this.shouldTrace(r)&&(this.traceCount++,this.output(`[TRACE] ${t}`,r))}traceEnter(t,r={}){this.shouldTrace(r)&&(this.traceCount++,this.output(`[ENTER] ${t}`,r),this.depth++)}traceExit(t,r={}){this.depth>0&&this.depth--,this.shouldTrace(r)&&this.output(`[EXIT] ${t}`,r)}traceWarn(t,r={}){this.shouldTrace(r)&&(this.traceCount++,this.output(`[WARN] ${t}`,r))}enable(){this.enabled=!0}disable(){this.enabled=!1}resetDepth(){this.depth=0}getStats(){return{traceCount:this.traceCount,currentDepth:this.depth,enabled:this.enabled}}reset(){this.depth=0,this.traceCount=0}}new wx({enabled:!1});function ln(e,t){const r={added:{},removed:{},changed:{}},s=new Set(Object.keys(e??{})),a=new Set(Object.keys(t??{}));for(const o of a)s.has(o)||(r.added[o]=t[o]);for(const o of s)a.has(o)||(r.removed[o]=e[o]);for(const o of s)a.has(o)&&e[o]!==t[o]&&(r.changed[o]={from:e[o],to:t[o]});return r}function vx(e){return Object.keys(e.added).length>0||Object.keys(e.removed).length>0||Object.keys(e.changed).length>0}function qr(e){return Object.keys(e.added).length+Object.keys(e.removed).length+Object.keys(e.changed).length}let Nx=0;class Uo{constructor(t){this.traces=new Map,this.currentEntity=null,this.currentStage=null,this.tracerId=++Nx,this.enabled=(t==null?void 0:t.enabled)??!1,this.outputPath=(t==null?void 0:t.outputPath)??"/tmp/codeyam/transform-trace.json",this.enabled&&console.log(`[Tracer] Initialized (id=${this.tracerId}, output=${this.outputPath})`)}log(t){this.isEnabled()&&console.log(`[Tracer] ${t}`)}isEnabled(){const t=process.env.CODEYAM_TRACE_TRANSFORMS;return t==="1"||t==="true"?!0:this.enabled}enable(){this.enabled=!0}disable(){this.enabled=!1}setOutputPath(t){this.outputPath=t}setProjectSlug(t){this.projectSlug=t}startEntity(t){if(!this.isEnabled())return;this.currentEntity=t.name;const r=this.traces.get(t.name);if(r){this.log(`startEntity: ${t.name} already exists, preserving ${r.stages.length} stages`);return}this.log(`startEntity: ${t.name}`),this.traces.set(t.name,{entityName:t.name,entityType:t.entityType,filePath:t.filePath,stages:[],operations:[]})}snapshot(t,r,s){var c,p,u,h;if(!this.isEnabled())return;const a=this.traces.get(t);if(!a)return this.log(`snapshot: no trace for ${t}, creating one`),this.startEntity({name:t,entityType:"unknown",filePath:"unknown"}),this.snapshot(t,r,s);this.log(`snapshot: ${t} → ${r}`),this.currentStage=r;const o=JSON.parse(JSON.stringify(s)),i={stage:r,timestamp:Date.now(),data:o},l=a.stages[a.stages.length-1];if(l&&(i.diffFromPrevious={signatureSchema:ln(l.data.signatureSchema,o.signatureSchema),returnValueSchema:ln(l.data.returnValueSchema,o.returnValueSchema)},o.dependencySchemas||l.data.dependencySchemas)){i.diffFromPrevious.dependencySchemas={};const m=new Set([...Object.keys(o.dependencySchemas??{}),...Object.keys(l.data.dependencySchemas??{})]);for(const f of m){const g=(c=l.data.dependencySchemas)==null?void 0:c[f],y=(p=o.dependencySchemas)==null?void 0:p[f];for(const x of new Set([...Object.keys(g??{}),...Object.keys(y??{})])){const w=`${f}::${x}`,b=(u=g==null?void 0:g[x])==null?void 0:u.returnValueSchema,v=(h=y==null?void 0:y[x])==null?void 0:h.returnValueSchema,N=ln(b,v);vx(N)&&(i.diffFromPrevious.dependencySchemas[w]=N)}}}a.stages.push(i)}operation(t,r){if(!this.isEnabled())return;const s=this.traces.get(t);s&&s.operations.push({...r,stage:r.stage??this.currentStage??void 0,timestamp:Date.now()})}computeFlushSummary(){var a;const t={},r=new Map;for(const[o,i]of this.traces){let l=0;for(const c of i.stages){if(!c.diffFromPrevious)continue;const u=`${((a=i.stages[i.stages.indexOf(c)-1])==null?void 0:a.stage)??"start"}→${c.stage}`;if(t[u]||(t[u]={added:0,removed:0,changed:0}),c.diffFromPrevious.signatureSchema){const h=c.diffFromPrevious.signatureSchema;t[u].added+=Object.keys(h.added).length,t[u].removed+=Object.keys(h.removed).length,t[u].changed+=Object.keys(h.changed).length,l+=qr(h)}if(c.diffFromPrevious.returnValueSchema){const h=c.diffFromPrevious.returnValueSchema;t[u].added+=Object.keys(h.added).length,t[u].removed+=Object.keys(h.removed).length,t[u].changed+=Object.keys(h.changed).length,l+=qr(h)}}r.set(o,l)}const s=[...r.entries()].sort((o,i)=>i[1]-o[1]).slice(0,10).map(([o])=>o);return{stageChangeCounts:t,entitiesWithMostChanges:s}}flush(){if(!this.isEnabled())return;if(this.traces.size===0){this.log("flush: no traces to write");return}const t=Array.from(this.traces.keys()),r=t.map(p=>`${p}(${this.traces.get(p).stages.length})`).join(", ");this.log(`flush: writing ${t.length} entities: ${r}`);const{stageChangeCounts:s,entitiesWithMostChanges:a}=this.computeFlushSummary(),o={timestamp:new Date().toISOString(),projectSlug:this.projectSlug,entityCount:this.traces.size},i={stageChangeCounts:s,entitiesWithMostChanges:a},l=L.dirname(this.outputPath);K.existsSync(l)||K.mkdirSync(l,{recursive:!0});const c=K.openSync(this.outputPath,"w");try{K.writeSync(c,`{
|
|
300
|
+
"meta": `),K.writeSync(c,JSON.stringify(o,null,2)),K.writeSync(c,`,
|
|
301
|
+
"summary": `),K.writeSync(c,JSON.stringify(i,null,2)),K.writeSync(c,`,
|
|
302
|
+
"entities": {`);let p=!0;for(const[u,h]of this.traces)p||K.writeSync(c,","),K.writeSync(c,`
|
|
303
|
+
${JSON.stringify(u)}: `),K.writeSync(c,JSON.stringify(h,null,2)),p=!1;K.writeSync(c,`
|
|
304
|
+
}
|
|
305
|
+
}
|
|
306
|
+
`),this.log(`flush: wrote trace to ${this.outputPath}`)}finally{K.closeSync(c)}}clear(){this.traces.clear(),this.currentEntity=null,this.currentStage=null}static loadTrace(t){const r=K.readFileSync(t,"utf-8"),s=JSON.parse(r),a=new Uo({enabled:!1});a.projectSlug=s.meta.projectSlug;for(const[o,i]of Object.entries(s.entities))a.traces.set(o,i);return a}getSummary(){var a,o,i;const t={},r=new Map;for(const[l,c]of this.traces){let p=0;for(let u=1;u<c.stages.length;u++){const h=c.stages[u],f=`${((a=c.stages[u-1])==null?void 0:a.stage)??"start"}→${h.stage}`;if(t[f]||(t[f]={added:0,removed:0,changed:0}),(o=h.diffFromPrevious)!=null&&o.signatureSchema){const g=h.diffFromPrevious.signatureSchema;t[f].added+=Object.keys(g.added).length,t[f].removed+=Object.keys(g.removed).length,t[f].changed+=Object.keys(g.changed).length,p+=qr(g)}if((i=h.diffFromPrevious)!=null&&i.returnValueSchema){const g=h.diffFromPrevious.returnValueSchema;t[f].added+=Object.keys(g.added).length,t[f].removed+=Object.keys(g.removed).length,t[f].changed+=Object.keys(g.changed).length,p+=qr(g)}}r.set(l,p)}const s=[...r.entries()].sort((l,c)=>c[1]-l[1]).slice(0,10).map(([l,c])=>({name:l,totalChanges:c}));return{entityCount:this.traces.size,stageChangeCounts:t,entitiesWithMostChanges:s}}getEntitySummary(t){const r=this.traces.get(t);return r?{entityName:t,stages:r.stages.map(s=>({stage:s.stage,diffFromPrevious:s.diffFromPrevious?{signatureSchema:s.diffFromPrevious.signatureSchema,returnValueSchema:s.diffFromPrevious.returnValueSchema}:void 0}))}:null}getOperations(t,r){const s=this.traces.get(t);return s?r?s.operations.filter(a=>a.path&&r.test(a.path)):s.operations:[]}tracePath(t,r){var o,i;const s=this.traces.get(t),a=[];if(!s)return{entityName:t,path:r,history:a};for(const l of s.stages){const c=(o=l.data.signatureSchema)==null?void 0:o[r],p=(i=l.data.returnValueSchema)==null?void 0:i[r],u=c??p;u!==void 0&&a.push({stage:l.stage,value:u})}for(const l of s.operations)l.path===r&&a.push({operation:l.operation,stage:l.stage,value:l.after??l.before,context:l.context});return{entityName:t,path:r,history:a}}getEntityTrace(t){return this.traces.get(t)}getEntityNames(){return[...this.traces.keys()]}findProperty(t,r){const s=this.traces.get(t);if(!s)return[];const a=[],o=new RegExp(`(^|\\.)${r}(\\.|\\[|$)`);for(const i of s.stages){for(const[l,c]of Object.entries(i.data.signatureSchema??{}))o.test(l)&&a.push({stage:i.stage,path:l,type:c,schemaType:"signature"});for(const[l,c]of Object.entries(i.data.returnValueSchema??{}))o.test(l)&&a.push({stage:i.stage,path:l,type:c,schemaType:"returnValue"});for(const[l,c]of Object.entries(i.data.dependencySchemas??{}))for(const[p,u]of Object.entries(c))for(const[h,m]of Object.entries(u.returnValueSchema??{}))o.test(h)&&a.push({stage:i.stage,path:`${l}/${p}::${h}`,type:m,schemaType:"dependency"})}return a}findTypeInconsistencies(t){const r=this.traces.get(t);if(!r)return[];let s=r.stages[r.stages.length-1];for(let c=r.stages.length-1;c>=0;c--)if(Object.keys(r.stages[c].data.dependencySchemas??{}).length>0){s=r.stages[c];break}if(!s)return[];const a=new Set(["length","toString","valueOf","constructor"]),o=new Map,i=(c,p)=>{const u=c.match(/\.([a-zA-Z_][a-zA-Z0-9_]*)(\[\])?$/);if(!u)return;const h=u[1],m=u[2]==="[]";if(a.has(h))return;const f=h+(m?"[]":"");o.has(f)||o.set(f,[]),o.get(f).push({path:c,type:p})};for(const[,c]of Object.entries(s.data.dependencySchemas??{}))for(const[,p]of Object.entries(c))for(const[u,h]of Object.entries(p.returnValueSchema??{}))i(u,h);const l=[];for(const[c,p]of o)new Set(p.map(h=>h.type.replace(/ \| undefined/g,"").replace(/ \| null/g,""))).size>1&&l.push({propertyName:c,paths:p.map(h=>({...h,stage:s.stage}))});return l.sort((c,p)=>{const u=new Set(c.paths.map(m=>m.type)).size;return new Set(p.paths.map(m=>m.type)).size-u}),l}getStageDiffSummary(t,r,s){const a=this.traces.get(t);if(!a)return null;const o=a.stages.find(m=>m.stage===r),i=a.stages.find(m=>m.stage===s);if(!o||!i)return null;const l={added:[],removed:[],typeChanged:[]},c=o.data.returnValueSchema??{},p=i.data.returnValueSchema??{},u=new Set(Object.keys(c)),h=new Set(Object.keys(p));for(const m of h)u.has(m)?c[m]!==p[m]&&l.typeChanged.push({path:m,from:c[m],to:p[m]}):l.added.push(`${m}: ${p[m]}`);for(const m of u)h.has(m)||l.removed.push(`${m}: ${c[m]}`);return l}traceSchemaTransform(t,r,s,a,o){if(!this.enabled)return a(s),s;const i={...s};a(s);const l=ln(i,s);for(const[c,p]of Object.entries(l.added))this.operation(t,{operation:r,path:c,before:void 0,after:p,context:{...o,changeType:"added"}});for(const[c,p]of Object.entries(l.removed))this.operation(t,{operation:r,path:c,before:p,after:void 0,context:{...o,changeType:"removed"}});for(const[c,{from:p,to:u}]of Object.entries(l.changed))this.operation(t,{operation:r,path:c,before:p,after:u,context:{...o,changeType:"changed"}});return s}traceSchemaTransformResult(t,r,s,a,o){if(!this.enabled)return;const i=ln(s,a);for(const[l,c]of Object.entries(i.added))this.operation(t,{operation:r,path:l,before:void 0,after:c,context:{...o,changeType:"added"}});for(const[l,c]of Object.entries(i.removed))this.operation(t,{operation:r,path:l,before:c,after:void 0,context:{...o,changeType:"removed"}});for(const[l,{from:c,to:p}]of Object.entries(i.changed))this.operation(t,{operation:r,path:l,before:c,after:p,context:{...o,changeType:"changed"}})}traceDependencySchemaTransform(t,r,s,a,o="both"){if(!this.enabled){for(const i in s)for(const l in s[i]){const c=s[i][l];(o==="signature"||o==="both")&&c.signatureSchema&&a(c.signatureSchema),(o==="returnValue"||o==="both")&&c.returnValueSchema&&a(c.returnValueSchema)}return}for(const i in s)for(const l in s[i]){const c=s[i][l],p={filePath:i,dependencyName:l};(o==="signature"||o==="both")&&c.signatureSchema&&this.traceSchemaTransform(t,r,c.signatureSchema,a,{...p,schemaType:"signature"}),(o==="returnValue"||o==="both")&&c.returnValueSchema&&this.traceSchemaTransform(t,r,c.returnValueSchema,a,{...p,schemaType:"returnValue"})}}traceDependencySchemaChanges(t,r,s,a){var i;if(!this.enabled){a();return}const o={};for(const l in s){o[l]={};for(const c in s[l]){const p=s[l][c];o[l][c]={sig:{...p.signatureSchema||{}},rv:{...p.returnValueSchema||{}}}}}a();for(const l in s)for(const c in s[l]){const p=s[l][c],u=(i=o[l])==null?void 0:i[c],h={filePath:l,dependencyName:c};if(p.signatureSchema){const m=(u==null?void 0:u.sig)||{},f=ln(m,p.signatureSchema);for(const[g,y]of Object.entries(f.added))this.operation(t,{operation:r,path:g,before:void 0,after:y,context:{...h,schemaType:"signature",changeType:"added"}});for(const[g,{from:y,to:x}]of Object.entries(f.changed))this.operation(t,{operation:r,path:g,before:y,after:x,context:{...h,schemaType:"signature",changeType:"changed"}})}if(p.returnValueSchema){const m=(u==null?void 0:u.rv)||{},f=ln(m,p.returnValueSchema);for(const[g,y]of Object.entries(f.added))this.operation(t,{operation:r,path:g,before:void 0,after:y,context:{...h,schemaType:"returnValue",changeType:"added"}});for(const[g,{from:y,to:x}]of Object.entries(f.changed))this.operation(t,{operation:r,path:g,before:y,after:x,context:{...h,schemaType:"returnValue",changeType:"changed"}})}}}}function Cx(){const e=process.env.CODEYAM_TRACE_TRANSFORMS;return e==="1"||e==="true"}const Vi=new Uo({enabled:Cx(),outputPath:"/tmp/codeyam/transform-trace.json"});process.on("beforeExit",()=>{Vi.isEnabled()&&Vi.flush()});function gd(e){if(e==null)return null;const t=e.match(/```json\s*([\s\S]*?)\s*```/);t&&(e=t[1]),e=e.replace(/"[^"]+"\s*:\s*undefined\s*,?\s*/g,""),e=e.replace(/,(\s*[}\]])/g,"$1");try{return xp.parse(e)}catch(r){const a=r.message.match(/invalid character .* at (\d+):(\d+)/);if(a){const o=parseInt(a[2],10);if(e.substring(o-2,o-1)==='"')return e=e.substring(0,o-2)+"\\"+e.substring(o-2),gd(e)}return null}}function Sx({description:e,existingScenarios:t,scenariosDataStructure:r,flowSelections:s}){let a="";return s&&s.length>0&&(a=`
|
|
307
|
+
User-selected Execution Flow Values:
|
|
308
|
+
The user has specifically requested these values be used in the scenario:
|
|
309
|
+
${s.map(o=>` - ${o.path}: ${o.value}${o.isCustom?" (custom value)":""}`).join(`
|
|
310
|
+
`)}
|
|
311
|
+
|
|
312
|
+
IMPORTANT: The mockData MUST include these specific values for the specified paths. Generate a scenario name and description that reflects these choices.
|
|
313
|
+
`),`Mock Scenario Data Structure:
|
|
314
|
+
\`\`\`
|
|
315
|
+
${JSON.stringify(r,null,2)}
|
|
316
|
+
\`\`\`
|
|
317
|
+
Existing Mock Scenario Data:
|
|
318
|
+
\`\`\`
|
|
319
|
+
${JSON.stringify(t,null,2)}
|
|
320
|
+
\`\`\`
|
|
321
|
+
${a}
|
|
322
|
+
New Scenario user-created prompt: "${e||"(No additional description - generate based on selected execution flow values)"}"
|
|
323
|
+
`}function _x({description:e,editingMockName:t,editingMockData:r,existingScenarios:s,scenariosDataStructure:a}){const o=s.find(i=>i.name===Ts);return`Mock Scenario Data Structure:
|
|
324
|
+
\`\`\`
|
|
325
|
+
${JSON.stringify({props:a.arguments,dataVariables:a.dataForMocks},null,2)}
|
|
326
|
+
\`\`\`
|
|
327
|
+
|
|
328
|
+
Existing Mock Scenario Data:
|
|
329
|
+
\`\`\`
|
|
330
|
+
${JSON.stringify(s.map(i=>({name:i.name,data:ur(o.metadata.data,i.metadata.data)})),null,2)}
|
|
331
|
+
\`\`\`
|
|
332
|
+
|
|
333
|
+
Mock Scenario that should be edited: "${t}"
|
|
334
|
+
${r?`The portion of the data that should be edited:
|
|
335
|
+
\`\`\`
|
|
336
|
+
${JSON.stringify(r,null,2)}
|
|
337
|
+
\`\`\``:""}
|
|
338
|
+
|
|
339
|
+
How this data should be changed: "${e}"
|
|
340
|
+
`}async function kx({description:e,editingMockName:t,editingMockData:r,existingScenarios:s,scenariosDataStructure:a,flowSelections:o,model:i}){const l=t?_x({description:e,editingMockName:t,editingMockData:r,existingScenarios:s,scenariosDataStructure:a}):Sx({description:e,existingScenarios:s,scenariosDataStructure:a,flowSelections:o}),c=await Za({type:"guessScenarioDataFromDescription",systemMessage:t?Ax(r):Ex,prompt:l,model:i??Sy});await Uy({object_type:"guessScenarioDataFromDescription",object_id:"new",propsJson:{description:e,editingMockName:t,editingMockData:r,existingScenarios:s,scenariosDataStructure:a,model:i},...c.stats});const{completion:p}=c;return p?gd(p):(console.log("CodeYam: guessing scenario data failed: No response from AI"),null)}const Ex=`
|
|
341
|
+
You will be provided with a list of data secnarios for a component and the overall structure for the data. Additionally you'll receive a description for a new scenario written by the user.
|
|
342
|
+
|
|
343
|
+
Your goal is to add one scenario to the list of existing scenarios by generating an english name, proper description, and a JSON data structure that describes the data that would be used in a scenario for the code.
|
|
344
|
+
|
|
345
|
+
The data for the scenario will be merged with the "Default Scenario" data, so you don't need to replicate any data in the default scenario but must overwrite any data that should be different.
|
|
346
|
+
|
|
347
|
+
You must respond with valid JSON following this format of this TS type definition:
|
|
348
|
+
\`\`\`
|
|
349
|
+
export type ScenarioData = {
|
|
350
|
+
name: string;
|
|
351
|
+
description: string;
|
|
352
|
+
data: {
|
|
353
|
+
mockData: { [key: string]: unknown };
|
|
354
|
+
argumentsData: { [key: string]: unknown };
|
|
355
|
+
};
|
|
356
|
+
};
|
|
357
|
+
|
|
358
|
+
\`\`\`
|
|
359
|
+
`,Ax=e=>`
|
|
360
|
+
You will be provided with a list of data secnarios for a component and the overall structure for the data. Additionally you'll receive a description for a new scenario written by the user.
|
|
361
|
+
|
|
362
|
+
Your goal is to edit one of the scenarios, named as the "Mock Scenario that should be edited".
|
|
363
|
+
${e?`
|
|
364
|
+
We only want to edit a specific portion of the data, which is provided in the "The portion of the data that should be edited" section. You should only change the data that is provided in this section.`:""}
|
|
365
|
+
|
|
366
|
+
Always return the complete data structure for the scenario, with both mockData and argumentsData, even if you only changed a small portion of the data.
|
|
367
|
+
|
|
368
|
+
You must respond with valid JSON following this type definition:
|
|
369
|
+
\`\`\`
|
|
370
|
+
{
|
|
371
|
+
data: {
|
|
372
|
+
mockData: { [key: string]: unknown };
|
|
373
|
+
argumentsData: { [key: string]: unknown };
|
|
374
|
+
}
|
|
375
|
+
}
|
|
376
|
+
\`\`\`
|
|
377
|
+
`;async function Px({request:e}){if(e.method!=="POST")return X({error:"Method not allowed"},{status:405});try{const t=await e.json(),{description:r,existingScenarios:s,scenariosDataStructure:a,editingMockName:o,editingMockData:i,flowSelections:l}=t;if(!r&&(!l||l.length===0))return X({error:"Missing required field: description or flowSelections"},{status:400});const c=await kx({description:r||"",existingScenarios:s??[],scenariosDataStructure:a,editingMockName:o,editingMockData:i,flowSelections:l}),p=(c==null?void 0:c.data)||c;return X({success:!0,data:p})}catch(t){return console.error("[Generate Scenario Data API] Error:",t),X({error:"Failed to generate scenario data",details:t instanceof Error?t.message:String(t)},{status:500})}}const jx=Object.freeze(Object.defineProperty({__proto__:null,action:Px},Symbol.toStringTag,{value:"Module"}));function Tx(e,t,r=new Date){const s={"1d":1,"3d":3,"7d":7,"30d":30}[t],a=new Date(r);a.setDate(a.getDate()-s);const o=a.toISOString().split("T")[0],i=e.filter(h=>h.date>=o),l=new Set(i.map(h=>h.commitSha).filter(Boolean)),c=new Map;for(const h of i)if(h.scenarioScreenshots)for(const m of h.scenarioScreenshots){c.has(m.name)||c.set(m.name,[]);const f=c.get(m.name);f.some(g=>g.path===m.path)||f.push({path:m.path,time:h.time})}for(const h of c.values())h.sort((m,f)=>m.time.localeCompare(f.time));const p=[],u=new Map;for(const[h,m]of c){const f=h.indexOf(" - ");if(f!==-1){const g=h.slice(0,f);u.has(g)||u.set(g,[]),u.get(g).push({name:h,screenshots:m})}else p.push({name:h,screenshots:m})}return{commitCount:l.size,entryCount:i.length,appScenarios:p,componentGroups:u,totalScenarios:c.size}}function Mx(e){const t=new Map;for(const r of[...e].reverse()){const s=t.get(r.date)||[];s.push(r),t.set(r.date,s)}return t}function $x(e){const t=new Map;for(const r of e){let s;if("componentName"in r&&r.componentName)s=r.componentName;else if("componentName"in r&&r.componentName===null)s="App";else{const o=r.name.indexOf(" - ");s=o!==-1?r.name.slice(0,o):"App"}const a=t.get(s)||[];a.push(r),t.set(s,a)}return[...t.entries()].sort(([r],[s])=>r==="App"?-1:s==="App"?1:r.localeCompare(s))}function Ix(e,t){const r=e.replace(/[^a-zA-Z0-9_\-]/g,"_");return`${t.toISOString().replace(/:/g,"-").replace(/\.\d+Z$/,"")}_${r}.png`}function Rx(e){const{title:t,timeStr:r,type:s,description:a,allScenarioNames:o,screenshot:i,scenarioScreenshots:l,commitSha:c,commitMessage:p,featureName:u,userPrompt:h}=e,m=["","---","",`### ${t}`,`**Time:** ${r}`,`**Type:** ${s}`];if(u&&m.push(`**Feature:** ${u}`),h&&m.push(`**Prompt:** ${h}`),o.length>0&&m.push(`**Scenarios:** ${o.join(", ")}`),m.push(""),m.push(a),i&&(m.push(""),m.push(``)),l.length>0){m.push(""),m.push("**Scenario Screenshots:**");for(const f of l)m.push(""),m.push(``)}return c&&p&&(m.push(""),m.push(`**Commit:** \`${c}\` — ${p}`)),m.push(""),m.join(`
|
|
378
|
+
`)}function Dx(e,t){return e.findIndex(r=>r.time===t)}function Ox(e){return!!e.commitSha}function Fx(e,t){return t.commitSha!==void 0&&(e.commitSha=t.commitSha),t.commitMessage!==void 0&&(e.commitMessage=t.commitMessage),t.description!==void 0&&(e.description=t.description),t.scenarios!==void 0&&(e.scenarios=t.scenarios),t.scenarioScreenshots!==void 0&&(e.scenarioScreenshots=t.scenarioScreenshots),e}function Lx(e,t,r,s){const a=`
|
|
379
|
+
**Commit:** \`${r}\` — ${s||"no message"}
|
|
380
|
+
`,o=`### ${t}`,i=e.lastIndexOf(o);if(i===-1)return null;const l=e.indexOf(`
|
|
381
|
+
---
|
|
382
|
+
`,i+1),c=l!==-1?l:e.length;return e.slice(0,c)+a+e.slice(c)}async function zx(e){console.log(`[editorScenarioLookup] Looking up screenshots for ${e.length} scenarios: ${e.join(", ")}`);try{const t=await ze();if(!t)return console.warn("[editorScenarioLookup] No project slug found — cannot look up scenarios"),[];const{project:r}=await Oe(t),a=await Te().selectFrom("editor_scenarios").select(["name","screenshot_path","id","component_name","page_file_path","url"]).where("project_id","=",r.id).where("name","in",e).orderBy("created_at","asc").execute();console.log(`[editorScenarioLookup] DB query returned ${a.length} matching scenarios:`,a.map(c=>({name:c.name,screenshot_path:c.screenshot_path,id:c.id})));const o=a.filter(c=>!c.screenshot_path);o.length>0&&console.warn(`[editorScenarioLookup] ${o.length} scenarios have no screenshot_path:`,o.map(c=>c.name));const i=a.filter(c=>c.screenshot_path),l=Tt(i,c=>c.name).map(c=>({name:c.name,screenshotPath:c.screenshot_path,scenarioId:c.id,componentName:c.component_name||null,pageFilePath:c.page_file_path||null,url:c.url||null}));return console.log(`[editorScenarioLookup] Found ${l.length} scenarios with screenshots`),l}catch(t){return console.error("[editorScenarioLookup] Failed to look up scenario screenshots:",t),[]}}async function Bx(e){console.log(`[editorScenarioLookup] Looking up screenshots by entity names: ${e.join(", ")}`);try{const t=await ze();if(!t)return[];const{project:r}=await Oe(t),a=await Te().selectFrom("editor_scenarios").select(["name","screenshot_path","id","component_name","page_file_path","url"]).where("project_id","=",r.id).orderBy("created_at","asc").execute(),o=new Set(e),l=a.filter(p=>{const u=Ar({componentName:p.component_name,pageFilePath:p.page_file_path,url:p.url});return o.has(u)}).filter(p=>p.screenshot_path),c=Tt(l,p=>p.name).map(p=>({name:p.name,screenshotPath:p.screenshot_path,scenarioId:p.id,componentName:p.component_name||null,pageFilePath:p.page_file_path||null,url:p.url||null}));return console.log(`[editorScenarioLookup] Found ${c.length} scenarios for ${e.length} entities`),c}catch(t){return console.error("[editorScenarioLookup] Failed to look up entity screenshots:",t),[]}}async function yd(e){console.log("[editorScenarioLookup] Looking up session scenario screenshots",e?`(after ${e})`:"(all session)");try{const t=await ze();if(!t)return console.warn("[editorScenarioLookup] No project slug found — cannot look up session scenarios"),[];const{project:r}=await Oe(t),s=Te(),a=we()||process.cwd();let o=null;const i=L.join(a,".codeyam","editor-step.json");try{const m=K.readFileSync(i,"utf8");o=JSON.parse(m).featureStartedAt||null}catch{return console.warn("[editorScenarioLookup] No editor-step.json found — cannot determine session start"),[]}if(!o)return console.warn("[editorScenarioLookup] No featureStartedAt found in editor-step.json"),[];const l=e&&e>o?e:o,c=Us(l),p=await s.selectFrom("editor_scenarios").select(["name","screenshot_path","id","component_name","page_file_path","url"]).where("project_id","=",r.id).where("created_at",">=",c).orderBy("created_at","asc").execute();console.log(`[editorScenarioLookup] Query returned ${p.length} scenarios since ${l}`);const u=p.filter(m=>m.screenshot_path),h=Tt(u,m=>m.name).map(m=>({name:m.name,screenshotPath:m.screenshot_path,scenarioId:m.id,componentName:m.component_name||null,pageFilePath:m.page_file_path||null,url:m.url||null}));return console.log(`[editorScenarioLookup] Found ${h.length} session scenarios with screenshots`),h}catch(t){return console.error("[editorScenarioLookup] Failed to look up session scenario screenshots:",t),[]}}async function Xa(e,t,r){const s=L.join(t,".codeyam","journal","screenshots");await Pe.mkdir(s,{recursive:!0});const a=[];for(const o of e){const i=L.join(t,".codeyam","editor-scenarios",o.screenshotPath),l=Ix(o.name,r),c=L.join(s,l);console.log(`[editorScenarioLookup] Copying scenario screenshot: "${o.name}" from ${i} → ${c}`);try{await Pe.access(i),await Pe.copyFile(i,c),a.push({name:o.name,path:`screenshots/${l}`,componentName:o.componentName,url:o.url}),console.log(`[editorScenarioLookup] Successfully copied screenshot for "${o.name}"`)}catch(p){console.warn(`[editorScenarioLookup] Scenario screenshot not found: ${i}`,p instanceof Error?p.message:p)}}return console.log(`[editorScenarioLookup] Scenario screenshot summary: ${a.length} scenarios have screenshots embedded`),a}async function Yx({request:e}){if(e.method!=="PATCH")return new Response("Method not allowed",{status:405});try{const t=await e.json(),{time:r,commitSha:s,commitMessage:a,description:o,includeSessionScenarios:i}=t;if(!r)return new Response(JSON.stringify({error:"time is required to identify the entry"}),{status:400,headers:{"Content-Type":"application/json"}});const l=process.env.CODEYAM_ROOT_PATH||process.cwd(),c=L.join(l,".codeyam","journal"),p=L.join(c,"index.json");console.log(`[editor-journal-update] Updating entry with time="${r}"`);let u={entries:[]};try{const y=await Pe.readFile(p,"utf8");u=JSON.parse(y)}catch{return new Response(JSON.stringify({error:"No journal index found"}),{status:404,headers:{"Content-Type":"application/json"}})}const h=Dx(u.entries,r);if(h===-1)return new Response(JSON.stringify({error:`No journal entry found with time "${r}"`}),{status:404,headers:{"Content-Type":"application/json"}});const m=u.entries[h];if(Ox(m))return console.log(`[editor-journal-update] Rejected: entry "${m.title}" already committed (${m.commitSha}). Create a new entry instead.`),new Response(JSON.stringify({error:`Journal entry already committed (${m.commitSha}). Create a new entry via POST /api/editor-journal-entry instead of updating.`}),{status:409,headers:{"Content-Type":"application/json"}});let f,g;if(i){const y=await yd();y.length>0&&(f=y.map(x=>x.name),g=await Xa(y,l,new Date))}if(Fx(m,{commitSha:s,commitMessage:a,description:o,scenarios:f,scenarioScreenshots:g}),u.entries[h]=m,await Pe.writeFile(p,JSON.stringify(u,null,2),"utf8"),console.log("[editor-journal-update] Updated index.json"),s)try{const y=m.date,x=L.join(c,`${y}.md`);let w="";try{w=await Pe.readFile(x,"utf8")}catch{}if(w){const b=Lx(w,m.title,s,a||null);b&&(await Pe.writeFile(x,b,"utf8"),console.log(`[editor-journal-update] Appended commit line to ${x}`))}}catch(y){console.warn("[editor-journal-update] Failed to update markdown:",y)}return vt.notifyChange("journal"),console.log(`[editor-journal-update] Done: updated entry "${m.title}"`),new Response(JSON.stringify({success:!0,entry:m}),{headers:{"Content-Type":"application/json"}})}catch(t){const r=t instanceof Error?t.message:String(t);return console.error("[editor-journal-update] Error:",t),new Response(JSON.stringify({error:r}),{status:500,headers:{"Content-Type":"application/json"}})}}const Ux=Object.freeze(Object.defineProperty({__proto__:null,action:Yx},Symbol.toStringTag,{value:"Module"}));async function Wx({request:e}){var t;try{const r=process.env.CODEYAM_ROOT_PATH||process.cwd(),s=await td(r);let a=0;const o={};for(const[c,p]of Object.entries(s))p.errors.length>0&&(o[c]=p,a+=p.errors.length);const i=m0(),l=((t=i==null?void 0:i.errors)==null?void 0:t.length)??0;return new Response(JSON.stringify({hasErrors:a>0||l>0,totalErrors:a+l,scenarios:o,livePreview:i?{loaded:i.loaded,hasContent:i.hasContent,errors:i.errors,url:i.url,lastUpdated:i.lastUpdated}:null}),{headers:{"Content-Type":"application/json"}})}catch(r){const s=r instanceof Error?r.message:String(r);return console.error("[editor-client-errors] Error:",r),new Response(JSON.stringify({error:s}),{status:500,headers:{"Content-Type":"application/json"}})}}const Jx=Object.freeze(Object.defineProperty({__proto__:null,loader:Wx},Symbol.toStringTag,{value:"Module"}));async function Hx({request:e}){try{const r=(await wn()||[]).filter(i=>i.analyses&&i.analyses.length>0).map(i=>{var g;const l=i.analyses[0],c=l.scenarios||[],p=!((g=l.status)!=null&&g.finishedAt),u=i.entityType||"visual",m=u==="library"||u==="functionCall"?c.some(y=>{var x;return!!((x=y.metadata)!=null&&x.executionResult)}):c.some(y=>{var x,w,b,v;return((w=(x=y.metadata)==null?void 0:x.screenshotPaths)==null?void 0:w[0])&&!((b=y.metadata)!=null&&b.noScreenshotSaved)&&!((v=y.metadata)!=null&&v.sameAsDefault)}),f=c.length;return{name:i.name,entityType:u,filePath:i.filePath||"",hasScreenshot:m,isAnalyzing:p,scenarioCount:f}}),s=r.filter(i=>i.hasScreenshot),a=r.filter(i=>!i.hasScreenshot&&!i.isAnalyzing).map(i=>i.name),o=r.filter(i=>i.isAnalyzing).length;return new Response(JSON.stringify({entities:r,summary:{total:r.length,withScreenshots:s.length,missingScreenshots:a,analyzing:o}}),{headers:{"Content-Type":"application/json"}})}catch(t){const r=t instanceof Error?t.message:String(t);return console.error("[editor-entity-status] Error:",t),new Response(JSON.stringify({error:r}),{status:500,headers:{"Content-Type":"application/json"}})}}const Vx=Object.freeze(Object.defineProperty({__proto__:null,loader:Hx},Symbol.toStringTag,{value:"Module"}));async function Gx({request:e}){if(e.method!=="POST")return new Response("Method not allowed",{status:405});try{const t=await e.json(),{title:r,type:s,description:a,scenarios:o,includeSessionScenarios:i,screenshot:l,commitSha:c,commitMessage:p}=t;if(console.log(`[editor-journal-entry] Creating journal entry: title="${r}", type="${s}", scenarios=${JSON.stringify(o||[])}, includeSessionScenarios=${!!i}, screenshot=${l||"none"}`),!r||!s||!a)return console.warn("[editor-journal-entry] Missing required fields:",{title:!!r,type:!!s,description:!!a}),new Response(JSON.stringify({error:"title, type, and description are required"}),{status:400,headers:{"Content-Type":"application/json"}});const u=process.env.CODEYAM_ROOT_PATH||process.cwd(),h=L.join(u,".codeyam","journal");await Pe.mkdir(h,{recursive:!0});const m=new Date,f=m.toISOString().split("T")[0],g=m.toISOString();let y=o||[];const x=L.join(h,"index.json");let w={entries:[]};try{const T=await Pe.readFile(x,"utf8");w=JSON.parse(T)}catch{}let b;i&&w.entries.length>0&&(b=w.entries[w.entries.length-1].time);const v=i?await yd(b):o&&o.length>0?await zx(o):[];i&&v.length>0&&(y=v.map(T=>T.name));const N=await Xa(v,u,m);let k;try{const T=we()||process.cwd(),G=await ze();if(G){const{project:J}=await Oe(G),H=await Te().selectFrom("editor_scenarios").select(["name","component_name","component_path","page_file_path","url"]).where("project_id","=",J.id).orderBy("created_at","asc").execute(),z=Tt(H,Y=>`${Y.name}::${Y.url||"/"}`).map(Y=>({componentName:Y.component_name||null,componentPath:Y.component_path||null,pageFilePath:Y.page_file_path??null,url:Y.url??null})),A=await Pr({projectRoot:T,scenarioInputs:z});Object.keys(A.entityChangeStatus).length>0&&(k=A.entityChangeStatus)}}catch{}if(k&&Object.keys(k).length>0){const T=new Set(v.map(J=>J.name)),G=Object.entries(k).filter(([,J])=>J.status==="impacted").map(([J])=>J);if(G.length>0){const J=[],F=new Set(v.map(H=>Ar(H)));for(const H of G)F.has(H)||J.push(H);if(J.length>0)try{const H=await Bx(J);if(H.length>0){const U=await Xa(H.filter(z=>!T.has(z.name)),u,m);N.push(...U),y.push(...U.map(z=>z.name))}}catch{}}}let E=N,C=y;if(!i&&k&&Object.keys(k).length>0){E=sg(N,k);const T=new Set(E.map(G=>G.name));C=y.filter(G=>T.has(G))}const S=Lo(u),_=zo(u);let j;try{const T=Kn();T.length>0&&(j=T.filter(G=>G.status!=="deleted").map(G=>({path:G.path,status:G.status})))}catch{}const $=L.join(h,`${f}.md`);let P="";try{P=await Pe.readFile($,"utf8")}catch{P=`# Development Journal — ${f}
|
|
383
|
+
`}const I=Rx({title:r,timeStr:g,type:s,description:a,allScenarioNames:C,screenshot:l||null,scenarioScreenshots:E,commitSha:c||null,commitMessage:p||null,featureName:S,userPrompt:_});await Pe.writeFile($,P+I,"utf8"),console.log(`[editor-journal-entry] Written daily markdown: ${$}`);const R={date:f,time:g,title:r,type:s,description:a,scenarios:C,screenshot:l||null,scenarioScreenshots:E,commitSha:c||null,commitMessage:p||null,entityChangeStatus:k,featureName:S,userPrompt:_,modifiedFiles:j};return w.entries.push(R),await Pe.writeFile(x,JSON.stringify(w,null,2),"utf8"),console.log(`[editor-journal-entry] Updated index.json (now ${w.entries.length} entries)`),vt.notifyChange("journal"),console.log(`[editor-journal-entry] Done: title="${r}", scenarioScreenshotsEmbedded=${E.length}`),new Response(JSON.stringify({success:!0,entry:R,scenarioScreenshotsFound:E.length}),{headers:{"Content-Type":"application/json"}})}catch(t){const r=t instanceof Error?t.message:String(t);return console.error("[editor-journal-entry] Error:",t),new Response(JSON.stringify({error:r}),{status:500,headers:{"Content-Type":"application/json"}})}}const Kx=Object.freeze(Object.defineProperty({__proto__:null,action:Gx},Symbol.toStringTag,{value:"Module"}));function qx({request:e}){const t={"Content-Type":"application/json","Access-Control-Allow-Origin":"*"};try{const r=we()||process.cwd();let o=new URL(e.url).searchParams.get("scenarioId");if(!o){const c=L.join(r,".codeyam","active-scenario.json");if(!K.existsSync(c))return new Response(JSON.stringify({}),{headers:t});o=JSON.parse(K.readFileSync(c,"utf-8")).scenarioId||null}if(!o)return new Response(JSON.stringify({}),{headers:t});const i=L.join(r,".codeyam","editor-scenarios",`${o}.json`);if(!K.existsSync(i))return new Response(JSON.stringify({}),{headers:t});const l=K.readFileSync(i,"utf-8");return new Response(l,{headers:t})}catch{return new Response(JSON.stringify({}),{headers:t})}}const Qx=Object.freeze(Object.defineProperty({__proto__:null,loader:qx},Symbol.toStringTag,{value:"Module"}));async function Zx(e,t){const r=we();if(!r)return{entityCalls:[],analysisCalls:[]};const s=L.join(r,".codeyam","llm-calls");try{await Pe.access(s)}catch{return{entityCalls:[],analysisCalls:[]}}const a=[],o=[];try{const l=(await Pe.readdir(s)).filter(w=>w.endsWith(".json")),c=`${e}_`,p=t?`${t}_`:null,u=[],h=[];for(const w of l)w.startsWith(c)||p&&w.startsWith(p)?u.push(w):h.push(w);const m=u.map(async w=>{try{const b=L.join(s,w),v=await Pe.readFile(b,"utf-8");return JSON.parse(v)}catch{return null}}),f=h.map(async w=>{try{const b=L.join(s,w),v=await Pe.readFile(b,"utf-8"),N=JSON.parse(v);return N.object_id===e||t&&N.object_id===t?N:null}catch{return null}}),[g,y]=await Promise.all([Promise.all(m),Promise.all(f)]),x=[...g,...y].filter(w=>w!==null);for(const w of x)w.object_id===e?a.push(w):t&&w.object_id===t&&o.push(w);a.sort((w,b)=>b.created_at-w.created_at),o.sort((w,b)=>b.created_at-w.created_at)}catch(i){console.error("Error loading LLM calls:",i)}return{entityCalls:a,analysisCalls:o}}async function Xx({params:e,request:t}){const{entitySha:r}=e;if(!r)return X({error:"Entity SHA is required"},{status:400});const a=new URL(t.url).searchParams.get("analysisId")||void 0,o=await Zx(r,a);return X(o)}const eb=Object.freeze(Object.defineProperty({__proto__:null,loader:Xx},Symbol.toStringTag,{value:"Module"}));function tb(){try{const e=we()||process.cwd(),t=ee.join(e,".codeyam","config.json");if(!ce.existsSync(t))return Response.json({projectTitle:null,projectDescription:null,defaultScreenSize:null,screenSizes:null});const r=JSON.parse(ce.readFileSync(t,"utf8"));return Response.json({projectTitle:r.projectTitle||null,projectDescription:r.projectDescription||null,defaultScreenSize:r.defaultScreenSize||null,screenSizes:r.screenSizes||null})}catch{return Response.json({projectTitle:null,projectDescription:null,defaultScreenSize:null,screenSizes:null})}}async function nb({request:e}){if(e.method!=="POST")return new Response("Method not allowed",{status:405});try{const t=we()||process.cwd(),r=ee.join(t,".codeyam","config.json");if(!ce.existsSync(r))return new Response(JSON.stringify({error:"No config.json found"}),{status:404,headers:{"Content-Type":"application/json"}});const s=await e.json(),a=JSON.parse(ce.readFileSync(r,"utf8"));return s.projectTitle!==void 0&&(a.projectTitle=s.projectTitle),s.projectDescription!==void 0&&(a.projectDescription=s.projectDescription),s.defaultScreenSize!==void 0&&(a.defaultScreenSize=s.defaultScreenSize),s.screenSizes!==void 0&&(a.screenSizes=s.screenSizes),ce.writeFileSync(r,JSON.stringify(a,null,2)),s.defaultScreenSize&&!s.skipBroadcast&&Oo(s.defaultScreenSize),vt.notifyChange("unknown"),new Response(JSON.stringify({success:!0,projectTitle:a.projectTitle||null,projectDescription:a.projectDescription||null,defaultScreenSize:a.defaultScreenSize||null,screenSizes:a.screenSizes||null}),{headers:{"Content-Type":"application/json"}})}catch(t){const r=t instanceof Error?t.message:String(t);return new Response(JSON.stringify({error:r}),{status:500,headers:{"Content-Type":"application/json"}})}}const rb=Object.freeze(Object.defineProperty({__proto__:null,action:nb,loader:tb},Symbol.toStringTag,{value:"Module"}));function sb(e){try{const t=L.join(e,"package.json"),r=JSON.parse(K.readFileSync(t,"utf8")),s={...r.dependencies,...r.devDependencies};return s.vitest?"vitest":s.jest?"jest":null}catch{return null}}function ab(e,t){var i;const s=JSON.parse(t).testResults||[],a=[];for(const l of s)for(const c of l.assertionResults||[]){const p=c.ancestorTitles||[],u=c.title||c.fullName||"unknown",h=p.length>0?`${p.join(" > ")} > ${u}`:u;a.push({title:u,fullName:h,status:c.status==="passed"?"passed":c.status==="failed"?"failed":"skipped",duration:c.duration,failureMessages:(i=c.failureMessages)!=null&&i.length?c.failureMessages:void 0})}const o=a.some(l=>l.status==="failed");return{testFilePath:e,status:o?"failed":"passed",testCases:a}}async function xd(e,t){const r=sb(e);if(!r)return{testFilePath:t,status:"error",testCases:[],errorMessage:"No test runner found (install vitest or jest)"};const s=L.isAbsolute(t)?t:L.join(e,t);if(!K.existsSync(s))return{testFilePath:t,status:"error",testCases:[],errorMessage:"Test file not found"};const a=L.join(co.tmpdir(),`codeyam-test-result-${Date.now()}.json`);return new Promise(o=>{var h;let i,l;r==="vitest"?(l="node",i=["./node_modules/.bin/vitest","run","--reporter=json","--outputFile",a,t]):(l="./node_modules/.bin/jest",i=["--json","--outputFile",a,"--testPathPatterns",t]);const c=St(l,i,{cwd:e,stdio:"pipe",env:{...process.env,NODE_ENV:"test"}});let p="";(h=c.stderr)==null||h.on("data",m=>{p+=m.toString()});const u=setTimeout(()=>{c.kill("SIGTERM"),o({testFilePath:t,status:"error",testCases:[],errorMessage:"Test timed out after 30 seconds"})},3e4);c.on("close",()=>{clearTimeout(u);try{const m=K.readFileSync(a,"utf8");K.unlinkSync(a),o(ab(t,m))}catch{o({testFilePath:t,status:"error",testCases:[],errorMessage:p.trim().slice(0,500)||"Test runner failed to produce output"})}}),c.on("error",m=>{clearTimeout(u),o({testFilePath:t,status:"error",testCases:[],errorMessage:`Failed to spawn test runner: ${m.message}`})})})}async function ob({request:e}){const r=new URL(e.url).searchParams.get("testFile");if(!r)return new Response(JSON.stringify({status:"error",errorMessage:"Missing testFile parameter",testCases:[],testFilePath:""}),{headers:{"Content-Type":"application/json"}});const s=we()||process.cwd();try{const a=await xd(s,r);return new Response(JSON.stringify(a),{headers:{"Content-Type":"application/json"}})}catch(a){const o=a instanceof Error?a.message:"Unknown error";return new Response(JSON.stringify({testFilePath:r,status:"error",testCases:[],errorMessage:o}),{status:500,headers:{"Content-Type":"application/json"}})}}const ib=Object.freeze(Object.defineProperty({__proto__:null,loader:ob},Symbol.toStringTag,{value:"Module"}));function Gi(e,t){var r,s;try{return((s=(r=Ie(`git rev-parse ${e}`,{cwd:t,encoding:"utf8",stdio:["pipe","pipe","ignore"]}))==null?void 0:r.toString())==null?void 0:s.trim())??null}catch(a){return console.error(`Failed to get commit SHA for ${e}:`,a),""}}function lb(e,t,r,s){const a=Un.createHash("sha256");return a.update(`${e}:${t}:${r}:${s}`),a.digest("hex").substring(0,16)}function bd(){const e=we();if(!e)throw new Error("No project root found");const t=ee.join(e,".codeyam","cache","branch-entity-diff");return ce.existsSync(t)||ce.mkdirSync(t,{recursive:!0}),t}function cb(e){try{const t=bd(),r=ee.join(t,`${e}.json`);if(!ce.existsSync(r))return null;const s=ce.readFileSync(r,"utf8");return JSON.parse(s)}catch(t){return console.error("Failed to read cache:",t),null}}function db(e,t){try{const r=bd(),s=ee.join(r,`${e}.json`);ce.writeFileSync(s,JSON.stringify(t,null,2))}catch(r){console.error("Failed to write cache:",r)}}function ub(e,t,r){const s=ms(t,e),a=ms(r,e),o=new Map(s.map(u=>[u.name,u])),i=new Map(a.map(u=>[u.name,u])),l=[],c=[],p=[];for(const[u,h]of i){const m=o.get(u);m?m.sha!==h.sha&&c.push({name:u,baseSha:m.sha,compareSha:h.sha,entityType:h.entityType}):l.push(h)}for(const[u,h]of o)i.has(u)||p.push(h);return{filePath:e,newEntities:l,modifiedEntities:c,deletedEntities:p}}function pb(e,t){const r=we();if(!r)throw new Error("No project root found");const s=Gi(e,r),a=Gi(t,r);if(!s||!a)throw new Error(`Failed to get commit SHAs for branches: ${e}, ${t}`);const o=lb(e,t,s,a),i=cb(o);if(i)return console.log(`Using cached branch entity diff: ${o}`),i;const l=od(e,t),c=[];for(const u of l)if(u.path.match(/\.(tsx?|jsx?)$/))if(u.status==="deleted"){const h=ss(u.path,e,t),m=ms(h.oldContent,u.path);c.push({filePath:u.path,newEntities:[],modifiedEntities:[],deletedEntities:m})}else if(u.status==="added"){const h=ss(u.path,e,t),m=ms(h.newContent,u.path);c.push({filePath:u.path,newEntities:m,modifiedEntities:[],deletedEntities:[]})}else{const h=ss(u.path,e,t),m=ub(u.path,h.oldContent,h.newContent);(m.newEntities.length>0||m.modifiedEntities.length>0||m.deletedEntities.length>0)&&c.push(m)}const p={baseBranch:e,compareBranch:t,baseCommitSha:s,compareCommitSha:a,fileComparisons:c,cacheKey:o,computedAt:new Date().toISOString()};return db(o,p),p}function hb({request:e}){try{const t=new URL(e.url),r=t.searchParams.get("base"),s=t.searchParams.get("compare");if(!r||!s)return X({error:"Missing required parameters: base and compare"},{status:400});const a=pb(r,s);return X(a)}catch(t){return console.error("Failed to compute branch entity diff:",t),X({error:"Failed to compute branch entity diff",details:t instanceof Error?t.message:String(t)},{status:500})}}const mb=Object.freeze(Object.defineProperty({__proto__:null,loader:hb},Symbol.toStringTag,{value:"Module"}));async function fb({request:e}){if(e.method!=="POST")return X({error:"Method not allowed"},{status:405});try{const t=await e.json(),{serverUrl:r,scenarioId:s,projectId:a,viewportWidth:o=1440}=t;if(!r||!s||!a)return X({error:"Missing required fields: serverUrl, scenarioId, and projectId"},{status:400});console.log(`[Capture] URL to capture: ${r}`),console.log(`[Capture] Scenario ID from request: ${s}`);const i=we();if(!i)return X({error:"Project root not found"},{status:500});const l=L.join(i,"background","src","lib","virtualized","playwright","captureFromUrl.ts"),c=JSON.stringify({url:r,scenarioId:s,projectId:a,projectRoot:i,viewportWidth:o}),p=await new Promise(m=>{const f=L.join(i,".codeyam","db.sqlite3"),g=St("npx",["tsx",l,c],{cwd:i,env:{...process.env,SQLITE_PATH:f}});let y="",x="";g.stdout.on("data",w=>{const b=w.toString();y+=b;const v=b.trim().split(`
|
|
384
|
+
`);for(const N of v)N.includes("[Capture]")&&console.log(N)}),g.stderr.on("data",w=>{const b=w.toString();x+=b,console.error("[Capture:Error]",b.trim())}),g.on("close",w=>{m(w===0?{success:!0,output:y}:{success:!1,output:y,error:x||`Process exited with code ${w}`})}),g.on("error",w=>{console.error("[Capture] Failed to spawn child process:",w),m({success:!1,output:"",error:w.message})})});if(!p.success)return X({error:"Failed to capture screenshot",details:p.error},{status:500});const u=p.output.match(/\[Capture\] RESULT:(.+)/);if(!u)return X({error:"Failed to parse capture result"},{status:500});const h=JSON.parse(u[1]);return X(h)}catch(t){return console.error("[Capture] Error:",t),X({error:"Failed to capture screenshot",details:t instanceof Error?t.message:String(t)},{status:500})}}const gb=Object.freeze(Object.defineProperty({__proto__:null,action:fb},Symbol.toStringTag,{value:"Module"}));function yb(e){const t=e||process.cwd();try{return Ie("git rev-parse HEAD",{cwd:t,encoding:"utf8",stdio:["pipe","pipe","ignore"]}).trim()}catch(r){throw new Error(`Failed to get HEAD SHA: ${r}`)}}function xb(e){const t=e||process.cwd();try{return Ie("git rev-parse --git-dir",{cwd:t,encoding:"utf8",stdio:["pipe","pipe","ignore"]}),!0}catch{return!1}}function bb(e){if(xb(e))return!1;Ie("git init",{cwd:e,encoding:"utf8",stdio:["pipe","pipe","ignore"]});try{Ie('git config user.email "codeyam@local"',{cwd:e,encoding:"utf8",stdio:["pipe","pipe","ignore"]}),Ie('git config user.name "CodeYam"',{cwd:e,encoding:"utf8",stdio:["pipe","pipe","ignore"]})}catch{}return!0}function wb(e){Ie("git add -A",{cwd:e,encoding:"utf8",stdio:["pipe","pipe","ignore"]})}function vb(e,t){return Ie(`git commit -m ${JSON.stringify(t)}`,{cwd:e,encoding:"utf8",stdio:["pipe","pipe","ignore"]}),yb(e)}function Nb(e){return/^[0-9a-f]{7,40}$/i.test(e)}function Cb(e,t){try{return Ie(`git cat-file -t ${t}`,{cwd:e,encoding:"utf8",stdio:"pipe"}),!0}catch{return!1}}function Sb(e,t){try{return{stashed:!Ie(`git stash push -m ${JSON.stringify(t)}`,{cwd:e,encoding:"utf8",stdio:"pipe"}).includes("No local changes")}}catch{return{stashed:!1}}}function _b(e,t){Ie(`git checkout ${t}`,{cwd:e,encoding:"utf8",stdio:"pipe"})}async function kb({request:e}){if(e.method!=="POST")return new Response("Method not allowed",{status:405});try{const t=await e.json(),{commitSha:r}=t;if(!r||typeof r!="string")return new Response(JSON.stringify({success:!1,error:"commitSha is required"}),{status:400,headers:{"Content-Type":"application/json"}});if(!Nb(r))return new Response(JSON.stringify({success:!1,error:"Invalid commit SHA format"}),{status:400,headers:{"Content-Type":"application/json"}});const s=process.env.CODEYAM_ROOT_PATH||process.cwd();if(console.log(`[editor-load-commit] Loading commit ${r} in ${s}`),!Cb(s,r))return new Response(JSON.stringify({success:!1,error:`Commit ${r} not found`}),{status:400,headers:{"Content-Type":"application/json"}});const{stashed:a}=Sb(s,"codeyam: auto-stash before time travel");a&&console.log("[editor-load-commit] Stashed uncommitted changes");try{_b(s,r),console.log(`[editor-load-commit] Checked out ${r}`)}catch(o){const i=o instanceof Error?o.message:String(o);return console.error("[editor-load-commit] Checkout failed:",i),new Response(JSON.stringify({success:!1,error:`Checkout failed: ${i}`}),{status:500,headers:{"Content-Type":"application/json"}})}try{const i=await(await fetch(`http://localhost:${process.env.CODEYAM_PORT||"3111"}/api/editor-dev-server`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({action:"restart"})})).json();console.log("[editor-load-commit] Dev server restart:",i)}catch(o){console.warn("[editor-load-commit] Dev server restart warning:",o)}return new Response(JSON.stringify({success:!0,stashed:a}),{headers:{"Content-Type":"application/json"}})}catch(t){const r=t instanceof Error?t.message:String(t);return console.error("[editor-load-commit] Error:",t),new Response(JSON.stringify({success:!1,error:r}),{status:500,headers:{"Content-Type":"application/json"}})}}const Eb=Object.freeze(Object.defineProperty({__proto__:null,action:kb},Symbol.toStringTag,{value:"Module"}));async function Ab(e,t,r){var f;console.log(`[recapture] Starting recapture for analysis ${e} with width ${t}`),await Ue();const s=await Jt({id:e,includeScenarios:!0,includeCommitAndBranch:!0});if(!s)throw console.log(`[recapture] Analysis ${e} not found`),new Error(`Analysis ${e} not found`);const a=Te(),o=s.entitySha,i=await a.selectFrom("entities").select(["metadata"]).where("sha","=",o).executeTakeFirst();let l={};if(i!=null&&i.metadata&&(typeof i.metadata=="string"?l=JSON.parse(i.metadata):l=i.metadata),l.defaultWidth=t,await a.updateTable("entities").set({metadata:JSON.stringify(l)}).where("sha","=",o).execute(),console.log(`[recapture] Updated defaultWidth for entity ${o} to ${t}`),!s.commit)throw new Error(`Commit not found for analysis ${e}`);console.log(`[recapture] Loaded analysis with ${((f=s.scenarios)==null?void 0:f.length)||0} scenarios`),await Jn(e,g=>{if(g){if(g.readyToBeCaptured=!0,g.scenarios)for(const y of g.scenarios)delete y.finishedAt,delete y.startedAt,delete y.screenshotStartedAt,delete y.screenshotFinishedAt,delete y.interactiveStartedAt,delete y.interactiveFinishedAt,delete y.error,delete y.errorStack;delete g.finishedAt}}),console.log(`[recapture] Marked analysis ${e} as ready to be captured`);const c=we();if(!c)throw new Error("Project root not found");const p=L.join(c,".codeyam","config.json"),u=JSON.parse(K.readFileSync(p,"utf8")),{projectSlug:h}=u;if(!h)throw new Error("Project slug not found in config");const{jobId:m}=r.enqueue({type:"recapture",commitSha:s.commit.sha,projectSlug:h,analysisId:e,defaultWidth:t});return console.log(`[recapture] Recapture job queued with ID: ${m}`),{jobId:m}}async function Pb(e,t,r){var u;console.log(`[recapture] Starting scenario recapture for analysis ${e}, scenario ${t}`),await Ue();const s=await Jt({id:e,includeScenarios:!0,includeCommitAndBranch:!0});if(!s)throw console.log(`[recapture] Analysis ${e} not found`),new Error(`Analysis ${e} not found`);if(!s.commit)throw new Error(`Commit not found for analysis ${e}`);const a=(u=s.scenarios)==null?void 0:u.find(h=>h.id===t);if(!a)throw console.log(`[recapture] Scenario ${t} not found in analysis ${e}`),new Error(`Scenario ${t} not found in analysis ${e}`);console.log(`[recapture] Found scenario: ${a.name}`),await Jn(e,h=>{if(h&&(h.readyToBeCaptured=!0,delete h.finishedAt,h.scenarios)){const m=h.scenarios.find(f=>f.name===a.name);m&&(delete m.finishedAt,delete m.startedAt,delete m.error,delete m.errorStack,delete m.screenshotStartedAt,delete m.screenshotFinishedAt,delete m.interactiveStartedAt,delete m.interactiveFinishedAt)}}),console.log(`[recapture] Cleared errors and marked scenario ${a.name} for recapture`);const o=we();if(!o)throw new Error("Project root not found");const i=L.join(o,".codeyam","config.json"),l=JSON.parse(K.readFileSync(i,"utf8")),{projectSlug:c}=l;if(!c)throw new Error("Project slug not found in config");const{jobId:p}=r.enqueue({type:"recapture",commitSha:s.commit.sha,projectSlug:c,analysisId:e,scenarioId:t});return console.log(`[recapture] Scenario recapture job queued with ID: ${p}`),{jobId:p}}async function jb({request:e,context:t}){if(e.method!=="POST")return X({error:"Method not allowed"},{status:405});let r=t.analysisQueue;if(r||(r=await Ht()),!r)return X({error:"Queue not initialized"},{status:500});try{const s=await e.formData(),a=s.get("analysisId"),o=s.get("scenarioId");if(!a||!o)return X({error:"Missing required fields: analysisId and scenarioId"},{status:400});console.log(`[API] Starting scenario recapture for analysis ${a}, scenario ${o}`);const i=await Pb(a,o,r);return console.log("[API] Scenario recapture queued",i),X({success:!0,message:"Scenario recapture queued",...i})}catch(s){return console.log("[API] Error during scenario recapture:",s),X({error:"Failed to recapture scenario",details:s instanceof Error?s.message:String(s)},{status:500})}}const Tb=Object.freeze(Object.defineProperty({__proto__:null,action:jb},Symbol.toStringTag,{value:"Module"}));async function eo(e){try{return await Ee.stat(e),!0}catch{return!1}}async function wd(){try{const e=we();if(!e)return null;const t=ee.join(e,".codeyam","config.json");return JSON.parse(await Ee.readFile(t,"utf-8")).projectSlug||null}catch{return null}}function Mb(){return`/private/tmp/claude-501/-${(we()||process.cwd()).replace(/^\//,"").replace(/\//g,"-")}/tasks`}const as="/tmp/claude-rule-markers",$b=/<system-reminder>[\s\S]*?<\/system-reminder>/g,Ki=2e3;function Ib(e,t){if(e==="Read"||e==="Write"||e==="Edit")return String(t.file_path||"");if(e==="Glob")return String(t.pattern||"");if(e==="Grep"){const r=String(t.pattern||""),s=String(t.path||"");return s?`"${r}" in ${s}`:`"${r}"`}if(e==="Bash"){const r=String(t.command||"");return r.length>100?r.slice(0,100)+"...":r}if(e==="Task")return String(t.description||String(t.prompt||"").slice(0,80));for(const r of Object.values(t))if(typeof r=="string"&&r)return r.slice(0,80);return""}const Rb=["no,","no ","that's not","thats not","that is not","wrong","incorrect","actually,","actually ","i meant","i mean","not what i","stop","wait","don't do","dont do","shouldn't","should not","try again","let me clarify","to clarify","that broke","that failed","error","bug"];function Db(e){const t=[],r=new Set;for(const s of e)if(!(s.type!=="tool_call"||!s.name||!s.input)){if(s.name==="Write"||s.name==="Edit"){const a=String(s.input.file_path||"");if(a.includes(".claude/rules/")){const o=a.replace(/^.*?(\.claude\/rules\/)/,"$1"),i=`${s.name}:${o}`;r.has(i)||(r.add(i),s.name==="Write"?t.push({action:"created",filePath:o,content:String(s.input.content||"")}):t.push({action:"modified",filePath:o,oldString:String(s.input.old_string||""),newString:String(s.input.new_string||"")}))}}else if(s.name==="Bash"){const a=String(s.input.command||"");if(a.includes("codeyam memory touch")){const o=`touch:${a}`;r.has(o)||(r.add(o),t.push({action:"touched",filePath:a}))}}}return t}function Ob(e){if(!e)return;const t="### Session transcript",r=e.indexOf(t);if(r===-1)return;let s=e.slice(r+t.length).trim();const a=s.indexOf(`
|
|
385
|
+
###`);return a!==-1&&(s=s.slice(0,a).trim()),s||void 0}function Fb(e){for(const t of e){if(t.type!=="user_prompt")continue;const r=(t.text||"").toLowerCase();for(const s of Rb)if(r.includes(s))return!0}return!1}function Lb(e){for(const t of e){const r=t.trim();if(r)try{const s=JSON.parse(r);if(s.type==="assistant"){const a=(s.message||{}).model;if(typeof a=="string"&&a)return a}}catch{continue}}}function zb(e){for(const t of e){const r=t.trim();if(r)try{const s=JSON.parse(r);if(s.type!=="result")continue;const a={subtype:String(s.subtype||"unknown"),is_error:!!s.is_error};if(typeof s.duration_ms=="number"&&(a.duration_ms=s.duration_ms),typeof s.duration_api_ms=="number"&&(a.duration_api_ms=s.duration_api_ms),typeof s.num_turns=="number"&&(a.num_turns=s.num_turns),typeof s.total_cost_usd=="number"&&(a.total_cost_usd=s.total_cost_usd),s.usage&&typeof s.usage=="object"){a.usage={};for(const o of["input_tokens","output_tokens","cache_read_input_tokens","cache_creation_input_tokens"])typeof s.usage[o]=="number"&&(a.usage[o]=s.usage[o])}return Array.isArray(s.errors)&&s.errors.length>0&&(a.errors=s.errors.map(String)),a}catch{continue}}}function Bb(e){const t=[],r={};for(const s of e){const a=s.trim();if(!a)continue;let o;try{o=JSON.parse(a)}catch{continue}const i=o.type;if(i==="progress"||i==="system"||i==="result")continue;const c=(o.message||{}).content,p=o.timestamp||"";if(i==="user"){if(typeof c=="string")t.push({type:"user_prompt",text:c,timestamp:p,agent_id:String(o.agentId||o.session_id||"unknown"),slug:String(o.slug||"")});else if(Array.isArray(c)){for(const u of c)if(typeof u=="object"&&u!==null&&u.type==="tool_result"){const h=u,m=String(h.tool_use_id||"");let f=h.content;const g=!!h.is_error;typeof f=="string"&&(f=f.replace($b,"").trim()),t.push({type:"tool_result",tool_use_id:m,tool_name:r[m]||"unknown",content:typeof f=="string"?f:JSON.stringify(f),is_error:g,timestamp:p})}}}else if(i==="assistant"&&Array.isArray(c))for(const u of c){if(typeof u!="object"||u===null)continue;const h=u;if(h.type==="text"){const m=String(h.text||"").trim();m&&t.push({type:"assistant_text",text:m,timestamp:p})}else if(h.type==="tool_use"){const m=String(h.id||""),f=String(h.name||"unknown"),g=h.input||{};r[m]=f,t.push({type:"tool_call",tool_use_id:m,name:f,input:g,timestamp:p})}}}return t}function Yb(e,t){return e.type==="user_prompt"||e.type==="assistant_text"?(e.text||"").toLowerCase().includes(t):e.type==="tool_call"?(e.name||"").toLowerCase().includes(t)?!0:JSON.stringify(e.input||{}).toLowerCase().includes(t):e.type==="tool_result"?(e.content||"").toLowerCase().includes(t):!1}const Mn=20;async function qi(e){const r=(await Ee.readFile(e.filePath,"utf-8")).split(`
|
|
386
|
+
`),s=Bb(r);if(s.length===0)return null;const a=s.find(v=>v.type==="user_prompt"),o=e.stem,i=Lb(r);let l=(a==null?void 0:a.slug)||"",c=(a==null?void 0:a.timestamp)||"";c||(c=new Date(e.mtime).toISOString());let p;if(e.filePath.endsWith(".log")){e.stem.endsWith("-stale")?l=l||"rule-reflection/stale":e.stem.endsWith("-conversation")?l=l||"rule-reflection/conversation":e.stem.endsWith("-interruption")?l=l||"rule-reflection/interruption":l=l||"rule-reflection";const v=e.filePath.replace(/\.log$/,".context");if(await eo(v))try{p=await Ee.readFile(v,"utf-8")}catch{}}const u=s.filter(v=>v.type==="tool_call").length,h=s.filter(v=>v.type==="assistant_text").length,m=s.filter(v=>v.type==="tool_result"&&v.is_error&&v.content!=="Sibling tool call errored"),f=m.length,g=m.map(v=>{const N=v.content||"Unknown error";return N.length>150?N.slice(0,150)+"...":N});for(const v of s)v.type==="tool_call"&&v.name&&v.input&&(v.summary=Ib(v.name,v.input));for(const v of s)v.type==="tool_result"&&v.content&&v.content.length>Ki&&(v.truncated=!0,v.fullLength=v.content.length,v.content=v.content.slice(0,Ki));const y=Db(s),x=Fb(s),w=Ob(p),b=zb(r);return{id:o,slug:l,timestamp:c,model:i,sourceFile:e.filePath,stats:{toolCalls:u,textBlocks:h,errors:f,errorMessages:g},entries:s,context:p,conversationSnippet:w,ruleChanges:y,hasConfusion:x,sessionResult:b}}async function Ub(){const e=Mb(),t=as,r=[];if(await eo(e)){const i=await Ee.readdir(e);for(const l of i)if(l.endsWith(".output")){const c=ee.join(e,l),p=await Ee.stat(c);r.push({filePath:c,stem:l.replace(".output",""),mtime:p.mtimeMs})}}const s=new Set,a=await wd(),o=[];a&&o.push(ee.join(t,a)),o.push(t);for(const i of o){if(!await eo(i))continue;const l=await Ee.readdir(i);for(const c of l){if(!c.endsWith(".log")||s.has(c))continue;s.add(c);const p=ee.join(i,c),u=await Ee.stat(p);r.push({filePath:p,stem:c.replace(".log",""),mtime:u.mtimeMs})}}return r.sort((i,l)=>l.mtime-i.mtime),r}async function Wb({request:e}){var t;try{const r=new URL(e.url),s=((t=r.searchParams.get("search"))==null?void 0:t.toLowerCase())||"",a=Math.max(1,parseInt(r.searchParams.get("page")||"1",10)),o=await Ub();if(!s){const u=o.length,h=(a-1)*Mn,m=o.slice(h,h+Mn),f=[];for(const g of m){const y=await qi(g);y&&f.push(y)}return Response.json({agents:f,total:u,page:a,pageSize:Mn})}const i=[];for(const u of o){const h=await qi(u);if(!h)continue;(h.id.toLowerCase().includes(s)||h.slug.toLowerCase().includes(s)||h.entries.some(f=>Yb(f,s)))&&i.push(h)}const l=i.length,c=(a-1)*Mn,p=i.slice(c,c+Mn);return Response.json({agents:p,total:l,page:a,pageSize:Mn})}catch(r){return console.error("[api.agent-transcripts] Error:",r),Response.json({error:"Failed to load agent transcripts",details:r instanceof Error?r.message:String(r)},{status:500})}}const Jb=Object.freeze(Object.defineProperty({__proto__:null,loader:Wb},Symbol.toStringTag,{value:"Module"})),vd="__codeyam_editor_dev_server__",Qi=30;function Wo(){return globalThis[vd]??null}function Nd(e){globalThis[vd]=e}function Qr(e,t){const r=[ee.join(e,".next","dev","lock"),ee.join(e,"node_modules",".vite","deps","_lock")];for(const s of r)try{ce.existsSync(s)&&(ce.unlinkSync(s),console.log(`[editor-dev-server] Removed stale lock file: ${s}`))}catch(a){console.warn(`[editor-dev-server] Failed to remove lock file ${s}:`,a)}if(t)try{const s=Ie(`lsof -ti:${t}`,{encoding:"utf8"}).trim();if(s){const a=process.pid,o=s.split(`
|
|
387
|
+
`).filter(i=>i&&parseInt(i,10)!==a);if(o.length>0){for(const i of o)try{Ie(`kill ${i}`)}catch{}console.log(`[editor-dev-server] Killed orphaned process(es) on port ${t}: ${o.join(", ")}`)}}}catch{}}function Hb({request:e}){const t=Wo();return t?new Response(JSON.stringify({status:t.status,url:t.url,proxyUrl:Vc(),pid:t.pid,errorMessage:t.status==="error"?t.errorMessage:null}),{headers:{"Content-Type":"application/json"}}):new Response(JSON.stringify({status:"stopped",url:null,proxyUrl:null}),{headers:{"Content-Type":"application/json"}})}async function Vb({request:e}){if(e.method!=="POST")return new Response("Method not allowed",{status:405});try{const t=await e.json(),{action:r}=t;return r==="start"?to():r==="stop"?Zi():r==="restart"?(Zi(),await new Promise(s=>setTimeout(s,1e3)),to()):new Response(JSON.stringify({error:'Invalid action. Use "start", "stop", or "restart".'}),{status:400,headers:{"Content-Type":"application/json"}})}catch(t){const r=t instanceof Error?t.message:String(t);return new Response(JSON.stringify({error:r}),{status:500,headers:{"Content-Type":"application/json"}})}}function Gb(){let t=ee.dirname(new URL(import.meta.url).pathname);for(let s=0;s<5;s++){const a=ee.dirname(t);if(ee.basename(a)==="webserver"||ee.basename(t)==="webserver"){t=ee.basename(t)==="webserver"?t:a;break}t=a}const r=[ee.join(t,"scripts","codeyam-preload.mjs"),ee.join(t,"scripts","codeyam-preload.mjs")];for(const s of r)if(ce.existsSync(s))return s;return console.warn("[editor-dev-server] codeyam-preload.mjs not found, SSR fetch interception disabled"),null}function to(e=!1){var E,C;const t=Wo();if(t&&t.status!=="stopped"&&t.status!=="error")return new Response(JSON.stringify({status:t.status,url:t.url,message:"Dev server is already running"}),{headers:{"Content-Type":"application/json"}});const r=we()||process.cwd(),s=parseInt(process.env.CODEYAM_PORT||"3111",10),{proxyPort:a,devServerPort:o}=Fc(s),i=s0(r,o);if("error"in i)return new Response(JSON.stringify({error:i.error}),{status:400,headers:{"Content-Type":"application/json"}});const{command:l,args:c,env:p}=i;Qr(r,o),Qr(r,3e3),Qr(r,3001),Qr(r,5173),console.log(`[editor-dev-server] Starting: ${l} ${c.join(" ")} in ${r}`);const u=Gb(),h=u?`--import ${u}`:"",{NODE_OPTIONS:m,PORT:f,CODEYAM_PORT:g,...y}=process.env,x={};try{const S=ee.join(r,".codeyam","config.json"),_=JSON.parse(ce.readFileSync(S,"utf-8"));for(const j of _.environmentVariables||[])j.key&&j.value!==void 0&&(x[j.key]=j.value)}catch{}const w=St(l,c,{cwd:r,stdio:["ignore","pipe","pipe"],env:{...y,...x,FORCE_COLOR:"1",BROWSER:"none",...h?{NODE_OPTIONS:h}:{},CODEYAM_PROXY_URL:`http://localhost:${a}`,...p},detached:!0});w.unref();const b=e?((t==null?void 0:t.retryCount)??0)+1:0,v={process:w,url:null,status:"starting",errorMessage:null,stderrBuffer:[],pid:w.pid||0,startedAt:Date.now(),retryCount:b};Nd(v);const N=(S,_)=>{const j=S.toString(),$=j.split(`
|
|
388
|
+
`).filter(P=>P.trim());if($.length>0&&(v.stderrBuffer.push(...$),v.stderrBuffer.length>Qi&&(v.stderrBuffer=v.stderrBuffer.slice(-Qi))),v.status==="starting"){const P=o0(j);P&&(v.url=P,v.status="running",console.log(`[editor-dev-server] URL detected: ${v.url}`),Ja({port:a,targetUrl:v.url}).then(()=>zi()))}};(E=w.stdout)==null||E.on("data",S=>N(S)),(C=w.stderr)==null||C.on("data",S=>N(S));const k=parseInt(p.PORT||"0",10);return k>0&&(async()=>{if(await new Promise(_=>setTimeout(_,1e4)),v.status!=="starting")return;console.log(`[editor-dev-server] Stdout detection timed out, polling port ${k}...`);const S=await l0(k,{intervalMs:2e3,maxAttempts:15});S&&v.status==="starting"&&(v.url=S,v.status="running",console.log(`[editor-dev-server] URL detected via polling: ${v.url}`),Ja({port:a,targetUrl:v.url}).then(()=>zi()))})(),w.on("exit",S=>{console.log(`[editor-dev-server] Process exited with code ${S}`);const _=Date.now()-v.startedAt,j=v.status==="running",$=c0({exitCode:S??null,uptime:_,retryCount:v.retryCount,wasRunning:j});if($.action==="retry")console.log(`[editor-dev-server] Quick failure (${_}ms), auto-retrying...`),v.status="stopped",to(!0);else if($.action==="error"){v.status="error";const P=v.stderrBuffer.length>0?v.stderrBuffer.join(`
|
|
389
|
+
`):"",I=j?`Dev server exited with code ${S}`:`Dev server exited (code ${S}) before it started serving`;v.errorMessage=P?`${I}
|
|
390
|
+
|
|
391
|
+
${P}`:I,console.error(`[editor-dev-server] Server failed: ${v.errorMessage}`)}else v.status="stopped"}),w.on("error",S=>{console.error("[editor-dev-server] Process error:",S),v.status="error",v.errorMessage=S.message}),new Response(JSON.stringify({status:"starting",pid:w.pid,message:`Starting ${l} ${c.join(" ")}`}),{headers:{"Content-Type":"application/json"}})}function Zi(){const e=Wo();if(!e||e.status==="stopped")return new Response(JSON.stringify({status:"stopped",message:"No server to stop"}),{headers:{"Content-Type":"application/json"}});Qc();try{e.process.pid&&process.kill(-e.process.pid,"SIGTERM")}catch{try{e.process.kill("SIGTERM")}catch{}}return e.status="stopped",Nd(null),new Response(JSON.stringify({status:"stopped",message:"Dev server stopped"}),{headers:{"Content-Type":"application/json"}})}const Kb=Object.freeze(Object.defineProperty({__proto__:null,action:Vb,loader:Hb},Symbol.toStringTag,{value:"Module"}));async function qb({params:e,request:t}){const{projectSlug:r}=e;if(!r)return new Response("Project slug is required",{status:400});if(t.method!=="DELETE")return new Response("Method not allowed",{status:405});const s=Ds(r);try{return await dr(s,"","utf-8"),new Response("Logs cleared successfully",{status:200,headers:{"Content-Type":"text/plain; charset=utf-8"}})}catch(a){console.error("[api.logs] Error clearing log file:",a);const o=a instanceof Error?a.message:String(a);return new Response(`Error clearing log file: ${o}`,{status:500,headers:{"Content-Type":"text/plain; charset=utf-8"}})}}async function Qb({params:e}){const{projectSlug:t}=e;if(!t)return new Response("Project slug is required",{status:400});const r=Ds(t);try{if(!wt(r))return new Response("No logs available yet. Analysis may not have started.",{status:404,headers:{"Content-Type":"text/plain; charset=utf-8"}});const s=await Ra(r,"utf-8");return!s||s.trim().length===0?new Response("Log file is empty. Waiting for analysis to start...",{headers:{"Content-Type":"text/plain; charset=utf-8"}}):new Response(s,{headers:{"Content-Type":"text/plain; charset=utf-8"}})}catch(s){console.error("[api.logs] Error reading log file:",s);const a=s instanceof Error?s.message:String(s);return new Response(`Error reading log file: ${a}`,{status:500,headers:{"Content-Type":"text/plain; charset=utf-8"}})}}const Zb=Object.freeze(Object.defineProperty({__proto__:null,action:qb,loader:Qb},Symbol.toStringTag,{value:"Module"}));function Xb({request:e}){const r=new URL(e.url).searchParams.get("path");if(!r)return Response.json({error:"Missing path parameter"},{status:400});const s=we()||process.cwd(),a=L.resolve(s,r);if(!a.startsWith(s+L.sep)&&a!==s)return Response.json({error:"Path outside project root"},{status:403});const o=id(r,s);return Response.json(o)}const ew=Object.freeze(Object.defineProperty({__proto__:null,loader:Xb},Symbol.toStringTag,{value:"Module"}));async function tw(){const e=await ze();if(!e)return Response.json({error:"No project configured"},{status:400});const{project:t}=await Oe(e),r=Te(),s=process.env.CODEYAM_PORT||"3111",a=we()||process.cwd(),o=await r.selectFrom("editor_scenarios").select(["id","name","component_name","component_path","url","type","screenshot_path","page_file_path"]).where("project_id","=",t.id).orderBy("created_at","asc").execute(),i=Tt(o,p=>`${p.name}::${p.url||"/"}`);let l={};try{const p=i.map(h=>({componentName:h.component_name||null,componentPath:h.component_path||null,pageFilePath:h.page_file_path??null,url:h.url??null}));l=(await Pr({projectRoot:a,scenarioInputs:p})).entityChangeStatus}catch{}const c=i.map(p=>{const u=p,h=Ar({componentName:p.component_name,pageFilePath:u.page_file_path,url:u.url}),m=h?l[h]:void 0;return{id:p.id,name:p.name,componentName:p.component_name||null,type:p.type||null,changeStatus:(m==null?void 0:m.status)||null,screenshotPath:p.screenshot_path||null,link:`http://localhost:${s}/editor?scenario=${p.id}&ref=link`}});return Response.json({scenarios:c})}const nw=Object.freeze(Object.defineProperty({__proto__:null,loader:tw},Symbol.toStringTag,{value:"Module"}));async function rw(e,t){var o,i,l,c,p,u;console.log(`[executeLibraryFunction] Starting execution for analysis ${e}, scenario ${t}`),await Ue();const r=await Jt({id:e,includeScenarios:!0,includeFile:!0});if(!r)throw new Error(`Analysis ${e} not found`);const s=(o=r.scenarios)==null?void 0:o.find(h=>h.id===t);if(!s)throw new Error(`Scenario ${t} not found in analysis ${e}`);console.log(`[executeLibraryFunction] Executing ${r.entityName} with scenario ${s.name}`);const a={returnValue:{status:"success",data:((c=(l=(i=s.metadata)==null?void 0:i.data)==null?void 0:l.argumentsData)==null?void 0:c[0])||{},timestamp:new Date().toISOString()},error:null,sideEffects:{consoleOutput:[{level:"log",args:[`Executing ${r.entityName}...`]},{level:"log",args:["Processing input:",JSON.stringify((u=(p=s.metadata)==null?void 0:p.data)==null?void 0:u.argumentsData)]},{level:"log",args:["Execution completed successfully"]}],fileWrites:[],apiCalls:[]},timing:{duration:Math.floor(Math.random()*100)+10,timestamp:new Date().toISOString()}};return console.log(`[executeLibraryFunction] Execution completed for ${r.entityName}`),a}async function sw({request:e}){if(e.method!=="POST")return X({error:"Method not allowed"},{status:405});try{const t=await e.formData(),r=t.get("analysisId"),s=t.get("scenarioId");if(!r||!s)return X({error:"Missing required fields: analysisId and scenarioId"},{status:400});console.log(`[API] Executing library function for analysis ${r}, scenario ${s}`);const a=await rw(r,s);return console.log("[API] Function execution completed successfully"),X({success:!0,result:a})}catch(t){return console.log("[API] Error during function execution:",t),X({success:!1,error:"Failed to execute function",details:t instanceof Error?t.message:String(t)},{status:500})}}const aw=Object.freeze(Object.defineProperty({__proto__:null,action:sw},Symbol.toStringTag,{value:"Module"}));function ow({request:e}){return X({status:"ok"})}async function iw({request:e,context:t}){if(e.method!=="POST")return X({error:"Method not allowed"},{status:405});let r=t.analysisQueue;if(r||(r=await Ht()),!r)return console.error("[Interactive Mode API] Queue not initialized"),X({error:"Queue not initialized"},{status:500});try{const s=await e.formData(),a=s.get("action"),o=s.get("analysisId"),i=s.get("scenarioId");if(!a||!o)return X({error:"Missing required fields: action and analysisId"},{status:400});if(a!=="start"&&a!=="stop")return X({error:'Invalid action. Must be "start" or "stop"'},{status:400});const l=await ze();if(console.log("[Interactive Mode API] projectSlug:",l),!l)return X({error:"Project not initialized"},{status:500});if(a==="start"){const c=await r.enqueue({type:"interactive-start",analysisId:o,scenarioId:i,projectSlug:l});return X({success:!0,action:"start",message:"Interactive mode starting...",jobId:c})}else{const c=await r.enqueue({type:"interactive-stop",analysisId:o,projectSlug:l});return X({success:!0,action:"stop",message:"Interactive mode stopping...",jobId:c})}}catch(s){console.error("[Interactive Mode API] Error:",s);const a=s instanceof Error?s.message:String(s),o=s instanceof Error?s.stack:void 0;return console.error("[Interactive Mode API] Error stack:",o),X({error:"Failed to control interactive mode",details:a},{status:500})}}const lw=Object.freeze(Object.defineProperty({__proto__:null,action:iw,loader:ow},Symbol.toStringTag,{value:"Module"}));async function cw({request:e}){if(e.method!=="POST")return Response.json({error:"Method not allowed"},{status:405});try{const t=await e.json(),{scenarioId:r,screenshotPaths:s}=t;if(!r)return Response.json({error:"Missing required field: scenarioId"},{status:400});if(console.log(`[API] Deleting scenario ${r}`),s&&s.length>0){const a=we();if(a)for(const o of s){const i=ee.join(a,".codeyam","captures","screenshots",o);try{await Ee.unlink(i),console.log(`[API] Deleted screenshot: ${i}`)}catch(l){console.log(`[API] Could not delete screenshot ${i}:`,l instanceof Error?l.message:l)}}}await Vh({ids:[r]});try{await Te().deleteFrom("editor_scenarios").where("id","=",r).execute()}catch{}try{const a=we()||process.cwd();I0(a,r)}catch{}return console.log(`[API] Scenario ${r} deleted successfully`),Response.json({success:!0,message:"Scenario deleted successfully"})}catch(t){return console.error("[API] Error deleting scenario:",t),Response.json({error:"Failed to delete scenario",details:t instanceof Error?t.message:String(t)},{status:500})}}const dw=Object.freeze(Object.defineProperty({__proto__:null,action:cw},Symbol.toStringTag,{value:"Module"}));class uw extends _r{emitFileSynced(t,r){this.emit("event",{type:"file-synced",fileName:t,filePath:r,timestamp:Date.now()})}emitError(t,r){this.emit("event",{type:"sync-error",fileName:t,filePath:r,timestamp:Date.now()})}emitRefreshPreview(){this.emit("event",{type:"refresh-preview",timestamp:Date.now()})}}const no="__codeyam_dev_mode_event_emitter__";if(!globalThis[no]){const e=new uw;e.setMaxListeners(20),globalThis[no]=e}const Xi=globalThis[no];function pw({request:e}){const t=new ReadableStream({start(r){const s=new TextEncoder;r.enqueue(s.encode(`data: ${JSON.stringify({type:"connected"})}
|
|
392
|
+
|
|
393
|
+
`));let a=!1;const o=()=>{if(!a){a=!0,Xi.off("event",i),clearInterval(l);try{r.close()}catch{}}},i=c=>{try{r.enqueue(s.encode(`data: ${JSON.stringify(c)}
|
|
394
|
+
|
|
395
|
+
`))}catch{o()}};Xi.on("event",i);const l=setInterval(()=>{try{r.enqueue(s.encode(`data: ${JSON.stringify({type:"keepalive"})}
|
|
396
|
+
|
|
397
|
+
`))}catch{o()}},3e4);e.signal.addEventListener("abort",o)}});return new Response(t,{headers:{"Content-Type":"text/event-stream","Cache-Control":"no-cache",Connection:"keep-alive"}})}const hw=Object.freeze(Object.defineProperty({__proto__:null,loader:pw},Symbol.toStringTag,{value:"Module"})),vr="/tmp/codeyam",ro=process.env.CODEYAM_API_BASE||"https://dev.codeyam.com",Cd=500,mw=Cd*1024*1024;function pn(e,t){try{return Ie(`git ${e}`,{cwd:t,encoding:"utf8",stdio:["pipe","pipe","pipe"]}).trim()}catch{return null}}function os(e){return e<1024?`${e} B`:e<1024*1024?`${(e/1024).toFixed(1)} KB`:`${(e/(1024*1024)).toFixed(1)} MB`}function Sd(e){return pn("config user.email",e)}function fw(e){const t=L.join(e,".codeyam","debug-report.md");if(!K.existsSync(t))return null;try{return K.readFileSync(t,"utf8")}catch{return null}}function gw(e,t=20){const r=L.join(vr,"local-dev",e,"codeyam","log.txt");if(!K.existsSync(r))return[];try{return K.readFileSync(r,"utf8").split(`
|
|
398
|
+
`).filter(i=>i.includes("CodeYam Log Level 1")).slice(-t)}catch{return[]}}async function yw(e){try{const t=await fetch(`${ro}/api/reports/check-base`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({baseSha:e})});if(!t.ok)return!1;const{hasBase:r}=await t.json();return r}catch{return!1}}function xw(e,t){try{Ie(`git archive HEAD | gzip > "${t}"`,{cwd:e,stdio:"pipe",shell:"/bin/bash"})}catch(r){throw new Error(`Failed to create base archive: ${r.message}`)}}function bw(e){const{projectRoot:t,projectSlug:r,outputPath:s,metadata:a,screenshot:o,onProgress:i}=e,l=i||(()=>{}),c=Date.now(),p=L.join(vr,`delta-staging-${c}`),u=L.join(p,"delta");K.mkdirSync(u,{recursive:!0});try{const h=pn("diff --binary HEAD",t)||"";K.writeFileSync(L.join(u,"tracked.patch"),h?h+`
|
|
399
|
+
`:"");const m=pn("ls-files --others --exclude-standard",t);if(m){const x=L.join(u,"untracked");K.mkdirSync(x,{recursive:!0});for(const w of m.split(`
|
|
400
|
+
`).filter(Boolean)){const b=L.join(t,w),v=L.join(x,w);if(K.existsSync(b)){const N=L.dirname(v);K.mkdirSync(N,{recursive:!0}),K.statSync(b).isFile()&&K.copyFileSync(b,v)}}}const f=L.join(t,".codeyam");if(K.existsSync(f)){const x=L.join(u,"codeyam");K.cpSync(f,x,{recursive:!0})}K.writeFileSync(L.join(u,"meta.json"),JSON.stringify(a,null,2));const g=L.join(vr,"local-dev",r,"codeyam","log.txt");K.existsSync(g)?K.copyFileSync(g,L.join(u,"codeyam-log.txt")):K.writeFileSync(L.join(u,"codeyam-log.txt"),`# Log file not found
|
|
401
|
+
`);const y=L.join(t,".codeyam","debug-report.md");K.existsSync(y)&&(K.copyFileSync(y,L.join(u,"debug-report.md")),l("Debug report included")),o&&o.length>0&&(K.writeFileSync(L.join(u,"screenshot.jpg"),o),l(`Screenshot included (${os(o.length)})`));try{Ie(`tar -czf "${s}" -C "${p}" delta`,{stdio:"pipe"})}catch(x){throw new Error(`tar failed: ${x.message}`)}}finally{K.rmSync(p,{recursive:!0,force:!0})}}async function ww(e){const{projectRoot:t,projectSlug:r,feedback:s,screenshot:a,onProgress:o}=e,i=o||(()=>{});i("Gathering metadata...");const l=pn("rev-parse HEAD",t);if(!l)throw new Error("At least one commit is required to generate a bundle. Please commit your changes first.");const c=pn("rev-parse --abbrev-ref HEAD",t)||"unknown",p=pn("status --porcelain",t),u=pn("remote get-url origin",t),h=p!==null&&p.length>0,m=Nc(r),f=fw(t);let g=s;f&&(g={...s||{issueType:"other",source:"cli"},debugReport:f},i("Found debug report from /codeyam-diagnose workflow"));const y={timestamp:new Date().toISOString(),projectSlug:r,git:{sha:l,branch:c,isDirty:h,remoteUrl:u},versions:{cli:m.cliVersion,webserver:m.webserverVersion,node:process.version},system:{platform:process.platform,arch:process.arch},feedback:g},x=Date.now(),w=L.join(vr,`base-${l}-${x}.tar.gz`),b=L.join(vr,`delta-${r}-${x}.tar.gz`);i("Checking for existing base...");const v=await yw(l);let N=null;v?i("Server already has base, skipping..."):(i("Generating base archive..."),xw(t,w),N=K.statSync(w).size,i(`Base archive: ${os(N)}`)),i("Generating delta archive..."),bw({projectRoot:t,projectSlug:r,outputPath:b,metadata:y,screenshot:a,onProgress:o});const E=K.statSync(b).size;i(`Delta archive: ${os(E)}`);const C=(N||0)+E;if(C>mw)throw K.existsSync(w)&&K.unlinkSync(w),K.unlinkSync(b),new Error(`Bundle too large: ${os(C)} (max: ${Cd} MB). Try removing large files from the project or adding them to .gitignore`);return{basePath:v?null:w,deltaPath:b,metadata:y,baseSha:l,baseSize:N,deltaSize:E}}async function vw(e){const{basePath:t,deltaPath:r,projectSlug:s,metadata:a,baseSha:o,deltaSize:i,onProgress:l}=e,c=l||(()=>{}),p=K.statSync(r),u=t?K.statSync(t):null,h=p.size+((u==null?void 0:u.size)||0);c("Requesting upload URLs...");const m=await fetch(`${ro}/api/reports/request-upload`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({projectSlug:s,fileSizeBytes:h,baseSha:o,needsBaseUpload:t!==null,deltaSizeBytes:i,metadata:{timestamp:a.timestamp,git:a.git,versions:a.versions,system:a.system,feedback:a.feedback}})});if(!m.ok){const v=await m.json();throw new Error(v.error||`Server returned ${m.status}`)}const{reportId:f,deltaUploadUrl:g,baseUploadUrl:y}=await m.json(),x=[];if(t&&y){c("Uploading base...");const v=K.readFileSync(t);x.push(fetch(y,{method:"PUT",headers:{"Content-Type":"application/gzip"},body:v}).then(N=>{if(!N.ok)throw new Error(`Base upload failed: ${N.status}`)}))}c("Uploading delta...");const w=K.readFileSync(r);x.push(fetch(g,{method:"PUT",headers:{"Content-Type":"application/gzip"},body:w}).then(v=>{if(!v.ok)throw new Error(`Delta upload failed: ${v.status}`)})),await Promise.all(x),c("Confirming upload...");const b=await fetch(`${ro}/api/reports/confirm-upload`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({reportId:f})});if(!b.ok){const v=await b.json();throw new Error(v.error||`Confirm failed: ${b.status}`)}return t&&K.existsSync(t)&&K.unlinkSync(t),K.unlinkSync(r),{bundleId:f}}async function Nw({request:e}){if(e.method!=="POST")return X({error:"Method not allowed"},{status:405});try{const t=await e.formData(),r=t.get("issueType"),s=t.get("description"),a=t.get("email"),o=t.get("source"),i=t.get("entitySha"),l=t.get("scenarioId"),c=t.get("analysisId"),p=t.get("currentUrl"),u=t.get("entityName"),h=t.get("entityType"),m=t.get("scenarioName"),f=t.get("errorMessage"),g=t.get("screenshot");let y=s||void 0;!y&&u&&(m?y=`Issue on ${u} scenario "${m}"`:y=`Issue on ${u}`);let x;if(g&&g.size>0){const C=await g.arrayBuffer();x=Buffer.from(C),console.log(`[Bundle] Screenshot received: ${g.size} bytes`)}const w=we();if(!w)return X({error:"Project root not found"},{status:500});const b=await ze();if(!b)return X({error:"Project slug not found"},{status:500});const v={issueType:r||"other",description:y,email:a||void 0,source:o||"navbar",entitySha:i||void 0,scenarioId:l||void 0,analysisId:c||void 0,currentUrl:p||void 0,recentActivity:gw(b,20),entityName:u||void 0,entityType:h||void 0,scenarioName:m||void 0,errorMessage:f||void 0};console.log(`[Bundle] Generating bundle for ${b}...`),console.log(`[Bundle] Context: ${v.source}, issue: ${v.issueType}`);const N=await ww({projectRoot:w,projectSlug:b,feedback:v,screenshot:x,onProgress:C=>{console.log(`[Bundle] ${C}`)}}),k=(N.baseSize||0)+N.deltaSize;console.log(`[Bundle] Archives created: delta=${N.deltaSize} bytes${N.basePath?`, base=${N.baseSize} bytes`:" (base reused)"}`);const E=await vw({basePath:N.basePath,deltaPath:N.deltaPath,projectSlug:b,metadata:N.metadata,baseSha:N.baseSha,deltaSize:N.deltaSize,onProgress:C=>{console.log(`[Bundle] ${C}`)}});return console.log(`[Bundle] Upload complete: ${E.bundleId}`),X({success:!0,reportId:E.bundleId,size:k})}catch(t){return console.error("[Bundle] Error:",t),X({error:t.message||"Failed to generate bundle"},{status:500})}}function Cw(){const e=we(),t=e?Sd(e):null;return X({defaultEmail:t})}const Sw=Object.freeze(Object.defineProperty({__proto__:null,action:Nw,loader:Cw},Symbol.toStringTag,{value:"Module"}));async function _w({request:e}){try{const r=new URL(e.url).searchParams.get("date"),s=process.env.CODEYAM_ROOT_PATH||process.cwd(),a=L.join(s,".codeyam","journal","index.json");let o={entries:[]};try{const l=await Pe.readFile(a,"utf8");o=JSON.parse(l)}catch{}let i=o.entries;return r&&(i=i.filter(l=>l.date===r)),new Response(JSON.stringify({entries:i}),{headers:{"Content-Type":"application/json"}})}catch(t){const r=t instanceof Error?t.message:String(t);return console.error("[editor-journal] Error:",t),new Response(JSON.stringify({error:r}),{status:500,headers:{"Content-Type":"application/json"}})}}const kw=Object.freeze(Object.defineProperty({__proto__:null,loader:_w},Symbol.toStringTag,{value:"Module"}));function _d(e){if(!K.existsSync(e))return et.Unknown;try{const t=JSON.parse(K.readFileSync(e,"utf8")),r={...t.dependencies,...t.devDependencies};return r.next?et.Next:r["@remix-run/node"]||r["@remix-run/react"]||r["react-router"]?et.Remix:r["react-scripts"]?et.CRA:r.expo?et.Expo:r.vite?et.Vite:et.Unknown}catch{return et.Unknown}}function Ew(e,t){let r=e;const s=L.resolve(t);for(;;){const a=L.resolve(r);if(K.existsSync(L.join(a,"pnpm-lock.yaml")))return"pnpm";if(K.existsSync(L.join(a,"yarn.lock")))return"yarn";if(K.existsSync(L.join(a,"package-lock.json")))return"npm";if(a===s)break;const o=L.dirname(a);if(o===a)break;r=o}throw new Error(`Could not detect package manager in ${e} or any parent directory up to ${t}`)}function Aw(e){const t=/cd\s+([^\s;&|]+)\s*(?:&&|;)/,r=e.match(t);return r?r[1]:null}function Pw(e){const t=L.join(e,"package.json");if(!K.existsSync(t))return{isWebApp:!1};if(_d(t)===et.Unknown)return{isWebApp:!1};try{const a=JSON.parse(K.readFileSync(t,"utf8")).scripts||{},o=["remix","react-router","next dev","vite","react-scripts","webpack-dev-server","parcel","expo"],l=Object.keys(a).filter(c=>["dev","start","serve","build"].some(p=>c.includes(p))).filter(c=>o.some(p=>a[c].includes(p)));if(l.length===0)return{isWebApp:!1};for(const c of l){const p=a[c],u=Aw(p);if(u){const h=L.join(e,u);if(K.existsSync(h)&&K.statSync(h).isDirectory())return{isWebApp:!0,actualPath:h}}}return{isWebApp:!0}}catch{return{isWebApp:!1}}}function kd(e,t=e,r=0,s=3){if(r>s)return[];const a=[],o=Pw(t);if(o.isWebApp){const l=o.actualPath||t,c=L.relative(e,l);return a.push(c||"."),a}const i=["node_modules",".git",".next","dist","build",".cache","coverage",".codeyam"];try{const l=K.readdirSync(t,{withFileTypes:!0});for(const c of l)if(c.isDirectory()&&!i.includes(c.name)){const p=L.join(t,c.name);a.push(...kd(e,p,r+1,s))}}catch{}return a}function jw(e){const t=kd(e);return t.length===0?[]:t.map(s=>{const a=L.join(e,s),o=L.join(a,"package.json"),i=_d(o),l=Ew(a,e);let c;if(i===et.Remix||i===et.Next){const h=L.join(a,"app");K.existsSync(h)&&K.statSync(h).isDirectory()&&(c="app")}const p=Tw(s,e),u=p?{command:"sh",args:["-c",`${l} run ${p} -- --port $PORT`]}:void 0;return{path:s,framework:i,packageManager:l,appDirectory:c,startCommand:u}})}function Tw(e,t){const r=L.join(t,e),s=L.join(r,"package.json");if(!K.existsSync(s))return null;try{const o=JSON.parse(K.readFileSync(s,"utf8")).scripts||{},i=["dev","start","serve"];for(const l of i)if(o[l])return l;return null}catch{return null}}function Mw(e,t){const r=new Set(e.map(a=>a.path)),s=[...e];for(const a of t)r.has(a.path)||s.push(a);return s}async function $w({request:e}){if(e.method!=="POST")return new Response("Method not allowed",{status:405});try{const t=we()||process.cwd(),r=ee.join(t,".codeyam","config.json");let s=[];try{s=jw(t)}catch{}if(ce.existsSync(r)){const i=JSON.parse(ce.readFileSync(r,"utf8")),l=i.webapps||[];i.webapps=Mw(s,l),s=i.webapps,ce.writeFileSync(r,JSON.stringify(i,null,2))}const a=await ze();if(a)try{await Ln({projectSlug:a,metadataUpdate:{webapps:s}})}catch{}let o=!1;if(s.length>0)try{const i=process.env.CODEYAM_PORT||"3111",c=await(await fetch(`http://localhost:${i}/api/editor-dev-server`)).json();(c.status==="stopped"||c.status===void 0)&&(await fetch(`http://localhost:${i}/api/editor-dev-server`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({action:"start"})}),o=!0)}catch{}return new Response(JSON.stringify({success:!0,webapps:s,devServerStarted:o,message:`Detected ${s.length} webapp(s)`}),{headers:{"Content-Type":"application/json"}})}catch(t){const r=t instanceof Error?t.message:String(t);return new Response(JSON.stringify({error:r}),{status:500,headers:{"Content-Type":"application/json"}})}}const Iw=Object.freeze(Object.defineProperty({__proto__:null,action:$w},Symbol.toStringTag,{value:"Module"}));async function Rw({request:e}){if(e.method!=="POST")return new Response("Method not allowed",{status:405});try{const t=await e.json(),r=we()||process.cwd();if(t.action==="clear"){hg(r);try{K.unlinkSync(L.join(r,".codeyam","claude-session-id.txt"))}catch{}return new Response(JSON.stringify({success:!0,message:"Editor state cleared"}),{headers:{"Content-Type":"application/json"}})}return new Response(JSON.stringify({error:"Unknown action"}),{status:400,headers:{"Content-Type":"application/json"}})}catch(t){const r=t instanceof Error?t.message:String(t);return new Response(JSON.stringify({error:r}),{status:500,headers:{"Content-Type":"application/json"}})}}const Dw=Object.freeze(Object.defineProperty({__proto__:null,action:Rw},Symbol.toStringTag,{value:"Module"}));function mn(){const e=process.memoryUsage(),t=wp.getHeapStatistics();return{process:{rss:Math.round(e.rss/1024/1024),heapTotal:Math.round(e.heapTotal/1024/1024),heapUsed:Math.round(e.heapUsed/1024/1024),external:Math.round(e.external/1024/1024),arrayBuffers:Math.round(e.arrayBuffers/1024/1024)},heap:{totalHeapSize:Math.round(t.total_heap_size/1024/1024),totalHeapSizeExecutable:Math.round(t.total_heap_size_executable/1024/1024),totalPhysicalSize:Math.round(t.total_physical_size/1024/1024),totalAvailableSize:Math.round(t.total_available_size/1024/1024),usedHeapSize:Math.round(t.used_heap_size/1024/1024),heapSizeLimit:Math.round(t.heap_size_limit/1024/1024),mallocedMemory:Math.round(t.malloced_memory/1024/1024),peakMallocedMemory:Math.round(t.peak_malloced_memory/1024/1024)},system:{totalMemory:Math.round(Da.totalmem()/1024/1024),freeMemory:Math.round(Da.freemem()/1024/1024)}}}function Ow(){const e=mn();console.log(`
|
|
402
|
+
[Memory Profiler] Detailed Statistics:`),console.log(" Process Memory:"),console.log(` RSS: ${e.process.rss} MB (total memory used by process)`),console.log(` Heap Used: ${e.process.heapUsed} MB / ${e.process.heapTotal} MB`),console.log(` External: ${e.process.external} MB (C++ objects)`),console.log(` ArrayBuffers: ${e.process.arrayBuffers} MB`),console.log(" V8 Heap:"),console.log(` Used: ${e.heap.usedHeapSize} MB / ${e.heap.totalHeapSize} MB`),console.log(` Physical: ${e.heap.totalPhysicalSize} MB`),console.log(` Limit: ${e.heap.heapSizeLimit} MB`),console.log(` Malloced: ${e.heap.mallocedMemory} MB (peak: ${e.heap.peakMallocedMemory} MB)`),console.log(" System:"),console.log(` Total: ${e.system.totalMemory} MB`),console.log(` Free: ${e.system.freeMemory} MB`);const t=(e.heap.usedHeapSize/e.heap.heapSizeLimit*100).toFixed(1);return console.log(` Heap Usage: ${t}% of limit`),e}function Fw(){if(global.gc){console.log("[Memory Profiler] Running garbage collection...");const e=mn();global.gc();const t=mn(),r=e.process.heapUsed-t.process.heapUsed;return console.log(`[Memory Profiler] GC freed ${r} MB`),console.log(`[Memory Profiler] Heap: ${t.process.heapUsed} MB (was ${e.process.heapUsed} MB)`),!0}else return console.log("[Memory Profiler] GC not available. Start Node with --expose-gc to enable."),!1}function Lw(){const e=mn(),t=e.heap.usedHeapSize/e.heap.heapSizeLimit*100,r={highHeapUsage:t>80,highExternalMemory:e.process.external>200,highArrayBuffers:e.process.arrayBuffers>100,nearHeapLimit:e.heap.totalAvailableSize<100},s=[];return r.highHeapUsage&&s.push(`High heap usage: ${t.toFixed(1)}% of limit`),r.highExternalMemory&&s.push(`High external memory: ${e.process.external} MB`),r.highArrayBuffers&&s.push(`High ArrayBuffer usage: ${e.process.arrayBuffers} MB`),r.nearHeapLimit&&s.push(`Near heap limit: only ${e.heap.totalAvailableSize} MB available`),{indicators:r,warnings:s,hasIssues:s.length>0}}function zw({request:e}){const r=new URL(e.url).searchParams.get("action");try{switch(r){case"snapshot":return Response.json({success:!1,error:"Heap snapshots are disabled because they block the server for several minutes. Use action=leaks instead."},{status:400});case"gc":{const s=Fw(),a=mn();return Response.json({success:s,message:s?"Garbage collection completed":"GC not available. Restart server with --expose-gc flag.",stats:a})}case"detailed":{const s=Ow();return Response.json({success:!0,stats:s})}case"leaks":{const s=Lw(),a=mn();return Response.json({success:!0,leakCheck:s,stats:a})}default:{const s=mn();return Response.json({success:!0,stats:s,actions:{gc:"/api/memory-profile?action=gc - Force garbage collection (requires --expose-gc)",detailed:"/api/memory-profile?action=detailed - Log detailed stats to console",leaks:"/api/memory-profile?action=leaks - Check for memory leak indicators"}})}}}catch(s){return console.error("[Memory API] Error:",s),Response.json({success:!1,error:s.message},{status:500})}}const Bw=Object.freeze(Object.defineProperty({__proto__:null,loader:zw},Symbol.toStringTag,{value:"Module"})),Zr=ho(po);async function Yw({request:e}){const r=new URL(e.url).searchParams.get("pids");if(!r)return Response.json({error:"Missing pids parameter"},{status:400});const s=r.split(",").map(o=>parseInt(o.trim(),10)).filter(o=>!isNaN(o));if(s.length===0)return Response.json({error:"No valid PIDs provided"},{status:400});const a=await Promise.all(s.map(async o=>{const i=Uw(o),l=i?await Ww(o):null;return{pid:o,isRunning:i,processName:l}}));return Response.json({processes:a})}function Uw(e){try{return process.kill(e,0),!0}catch{return!1}}async function Ww(e){if(process.platform==="win32")try{const{stdout:r}=await Zr(`tasklist /FI "PID eq ${e}" /FO CSV /NH`),s=r.match(/"([^"]+)"/);if(!s)return null;const a=s[1];if(a.toLowerCase()==="node.exe")try{const{stdout:o}=await Zr(`wmic process where "ProcessId=${e}" get CommandLine /FORMAT:LIST`),i=o.match(/codeyam-(\w+)/);if(i)return`codeyam-${i[1]}`}catch{}return a}catch{return null}try{const{stdout:r}=await Zr(`ps -p ${e} -o comm=`);return r.trim()||null}catch{try{const{stdout:s}=await Zr(`ps -p ${e} -o args=`),a=s.trim(),o=a.match(/codeyam-(\w+)/);return o?`codeyam-${o[1]}`:a.split(" ")[0]||null}catch{return null}}}const Jw=Object.freeze(Object.defineProperty({__proto__:null,loader:Yw},Symbol.toStringTag,{value:"Module"})),Hw=Es(import.meta.url),Vw=L.dirname(Hw);function Gw({request:e}){if(e.method!=="POST")return new Response("Method not allowed",{status:405});try{const t=zs(),r=we()||(t==null?void 0:t.projectRoot);if(!r)throw new Error("Could not determine project root");const s=(t==null?void 0:t.port)||3111,a=L.join(Vw,"..","..","..","..","webserver","bootstrap.js"),o=L.join(r,".codeyam","logs");K.existsSync(o)||K.mkdirSync(o,{recursive:!0});const i=K.openSync(L.join(o,"background-server.log"),"a"),l=K.openSync(L.join(o,"background-server-error.log"),"a"),c=new Date().toISOString();K.appendFileSync(L.join(o,"background-server.log"),`
|
|
403
|
+
[${c}] Server restart requested via dashboard
|
|
404
|
+
`),Eo();const p=St("node",[a],{detached:!0,stdio:["ignore",i,l],env:{...process.env,CODEYAM_PORT:s.toString(),CODEYAM_ROOT_PATH:r,CODEYAM_PROCESS_NAME:"codeyam-server",CODEYAM_WAIT_FOR_PORT:"true"}});p.unref(),console.log(`[api.restart-server] Spawned new server process (pid: ${p.pid})`);const u=new Response(JSON.stringify({success:!0}),{status:200,headers:{"Content-Type":"application/json"}});return setTimeout(()=>{console.log("[api.restart-server] Exiting old server process"),process.exit(0)},100),u}catch(t){return console.error("[api.restart-server] Error restarting server:",t),new Response(JSON.stringify({success:!1,error:t instanceof Error?t.message:"Unknown error"}),{status:500,headers:{"Content-Type":"application/json"}})}}const Kw=Object.freeze(Object.defineProperty({__proto__:null,action:Gw},Symbol.toStringTag,{value:"Module"}));async function qw({request:e}){if(e.method!=="POST")return Response.json({error:"Method not allowed"},{status:405});try{const t=await e.json(),{analysis:r,scenarios:s}=t;if(!r||!s)return Response.json({error:"Missing required fields: analysis and scenarios"},{status:400});console.log(`[API] Saving scenarios for analysis ${r.id}`),console.log(`[API] Received ${s.length} scenarios to save`),s.forEach((l,c)=>{var h,m,f,g,y;const p=(m=(h=l.metadata)==null?void 0:h.data)==null?void 0:m.argumentsData,u=Array.isArray(p)&&p.length>0?JSON.stringify(p[0]).substring(0,200):"empty-or-not-array";console.log(`[API] Scenario ${c}: ${l.name}`,{id:l.id,projectId:l.projectId,analysisId:l.analysisId,hasMetadata:!!l.metadata,hasData:!!((f=l.metadata)!=null&&f.data),mockDataKeys:(y=(g=l.metadata)==null?void 0:g.data)!=null&&y.mockData?Object.keys(l.metadata.data.mockData):[],argumentsDataLength:Array.isArray(p)?p.length:"not-array",argumentsDataPreview:u})});const a=s.map(l=>({...l,projectId:l.projectId||r.projectId,analysisId:l.analysisId||r.id})),o=await cm(a);if(!o||o.length===0)throw new Error("Failed to save scenarios to database");console.log(`[API] Scenarios saved successfully for analysis ${r.id}`),console.log(`[API] Saved ${o.length} scenarios to database`),o.forEach((l,c)=>{var u,h;const p=(h=(u=l.metadata)==null?void 0:u.data)==null?void 0:h.argumentsData;console.log(`[API] Saved scenario ${c}: ${l.name}`,{id:l.id,argumentsDataLength:Array.isArray(p)?p.length:"not-array"})});const i={...r,scenarios:o};return Response.json({success:!0,analysis:i})}catch(t){return console.error("[API] Error saving scenarios:",t),Response.json({error:"Failed to save scenarios",details:t instanceof Error?t.message:String(t)},{status:500})}}const Qw=Object.freeze(Object.defineProperty({__proto__:null,action:qw},Symbol.toStringTag,{value:"Module"})),Zw=()=>[{title:"Agent Transcripts - CodeYam"},{name:"description",content:"View background agent transcripts and tool call history"}];async function Xw({request:e}){try{const t=new URL(e.url),r=t.searchParams.get("search")||"",s=t.searchParams.get("page")||"1",a=new URLSearchParams;r&&a.set("search",r),s!=="1"&&a.set("page",s);const o=a.toString(),i=new URL(`/api/agent-transcripts${o?`?${o}`:""}`,e.url),c=await(await fetch(i.toString())).json();if(c.error)return X({agents:[],error:c.error,search:r,page:1,totalPages:1});const p=c.total??(c.agents||[]).length,u=c.pageSize??20;return X({agents:c.agents||[],error:null,search:r,page:c.page??parseInt(s,10),totalPages:Math.max(1,Math.ceil(p/u))})}catch(t){return console.error("Failed to load agent transcripts:",t),X({agents:[],error:"Failed to load agent transcripts",search:"",page:1,totalPages:1})}}function ev(e){if(!e)return"";try{return new Date(e).toLocaleTimeString("en-US",{hour:"2-digit",minute:"2-digit",second:"2-digit",hour12:!1})}catch{return e}}function tv(e){if(!e)return"";try{return new Date(e).toLocaleDateString("en-US",{month:"short",day:"numeric",hour:"2-digit",minute:"2-digit",hour12:!1})}catch{return e}}function nv(e){return e.includes("opus")?"Opus":e.includes("sonnet")?"Sonnet":e.includes("haiku")?"Haiku":e}function is({type:e,toolName:t}){const r={user_prompt:"bg-[#00b4d8] text-black",assistant_text:"bg-[#a8dadc] text-black",tool_call:"bg-[#f4a261] text-black",tool_result:"bg-[#2a9d8f] text-black",context:"bg-[#7c3aed] text-white"},s={user_prompt:"USER",assistant_text:"ASSISTANT",tool_call:t||"TOOL",tool_result:"RESULT",context:"CONTEXT"};return n("span",{className:`inline-block px-2 py-0.5 rounded text-[10px] font-bold uppercase tracking-wide ${r[e]||"bg-gray-300 text-black"}`,children:s[e]||e})}function rv({input:e}){return n("div",{className:"text-xs font-mono space-y-1",children:Object.entries(e).map(([t,r])=>{let s=typeof r=="string"?r:JSON.stringify(r);return s.length>500&&(s=s.slice(0,500)+"..."),d("div",{children:[d("span",{className:"text-[#f4a261] font-bold",children:[t,":"]})," ",n("span",{className:"text-gray-700",children:s})]},t)})})}function sv({content:e,truncated:t,fullLength:r}){const[s,a]=M(!1);return d("div",{children:[d("pre",{className:"whitespace-pre-wrap break-words text-xs max-h-96 overflow-y-auto text-gray-700",children:[e,t&&!s&&"..."]}),t&&n("button",{onClick:()=>a(!s),className:"text-[11px] text-gray-500 hover:text-gray-700 mt-1 font-mono cursor-pointer",children:s?"Show less":`Show more (${(r||0)-e.length} more chars)`})]})}function av({entry:e,pairedResult:t}){const[r,s]=M(!1),a=ev(e.timestamp||"");return e.type==="user_prompt"?d("div",{className:"my-2",children:[d("div",{className:"flex items-center gap-2 mb-1",children:[n(is,{type:"user_prompt"}),n("span",{className:"text-[11px] text-gray-400 font-mono",children:a})]}),n("pre",{className:"bg-white border border-gray-200 rounded-md p-3 whitespace-pre-wrap break-words text-xs font-mono border-l-[3px] border-l-[#00b4d8] max-h-72 overflow-y-auto text-gray-800",children:e.text})]}):e.type==="assistant_text"?d("div",{className:"my-2",children:[d("div",{className:"flex items-center gap-2 mb-1",children:[n(is,{type:"assistant_text"}),n("span",{className:"text-[11px] text-gray-400 font-mono",children:a})]}),n("div",{className:"bg-white border border-gray-200 rounded-md p-3 whitespace-pre-wrap break-words text-sm border-l-[3px] border-l-[#a8dadc] text-gray-800",children:e.text})]}):e.type==="tool_call"?d("div",{className:"my-2",children:[d("button",{onClick:()=>s(!r),className:"flex items-center gap-2 w-full text-left bg-white border border-gray-200 rounded-md px-3 py-2 hover:bg-gray-50 cursor-pointer",children:[r?n(Nt,{className:"w-3 h-3 text-gray-400 flex-shrink-0"}):n(en,{className:"w-3 h-3 text-gray-400 flex-shrink-0"}),n(is,{type:"tool_call",toolName:e.name}),n("span",{className:"text-xs text-gray-500 font-mono truncate flex-1",children:e.summary||""}),n("span",{className:"text-[11px] text-gray-400 font-mono flex-shrink-0",children:a})]}),r&&d("div",{className:"bg-white border border-t-0 border-gray-200 rounded-b-md px-3 py-2 border-l-[3px] border-l-[#f4a261]",children:[n(rv,{input:e.input||{}}),t&&d("div",{className:"mt-3 pt-3 border-t border-gray-200",children:[d("div",{className:"text-[11px] font-bold uppercase tracking-wide text-[#2a9d8f] mb-1",children:["Result",t.is_error?" (Error)":"",":"]}),n(sv,{content:t.content||"",truncated:t.truncated,fullLength:t.fullLength})]})]})]}):(e.type==="tool_result",null)}function ov({context:e}){const[t,r]=M(!1);return d("div",{className:"my-2",children:[d("button",{onClick:()=>r(!t),className:"flex items-center gap-2 mb-1 cursor-pointer hover:opacity-80",children:[t?n(Nt,{className:"w-3 h-3 text-gray-400"}):n(en,{className:"w-3 h-3 text-gray-400"}),n(is,{type:"context"}),n("span",{className:"text-xs text-gray-500",children:"Full prompt context"})]}),t&&n("pre",{className:"bg-gray-50 border border-gray-200 rounded-md p-3 whitespace-pre-wrap break-words text-xs font-mono border-l-[3px] border-l-[#7c3aed] max-h-96 overflow-y-auto text-gray-700",children:e})]})}function iv({snippet:e}){const[t,r]=M(!1),s=e.split(`
|
|
405
|
+
`).filter(l=>l.trim()),a=s.slice(0,4),o=s.length>4,i=t?s:a;return d("div",{className:"my-2 bg-blue-50 border border-blue-200 rounded-md p-3",children:[d("div",{className:"flex items-center gap-2 mb-2",children:[n(zu,{className:"w-3.5 h-3.5 text-blue-600"}),n("span",{className:"text-xs font-bold text-blue-800",children:"Source Conversation"}),d("span",{className:"text-[10px] text-blue-500",children:[s.length," message",s.length!==1?"s":""]})]}),n("div",{className:"space-y-1",children:i.map((l,c)=>{const p=l.match(/^\[(\w+)\]:\s*(.*)/);if(!p)return null;const[,u,h]=p,m=u==="user";return d("div",{className:"text-xs",children:[d("span",{className:`font-bold ${m?"text-blue-700":"text-gray-500"}`,children:[m?"User":"Assistant",":"]})," ",n("span",{className:"text-gray-700",children:h.length>200?h.slice(0,200)+"...":h})]},c)})}),o&&n("button",{onClick:()=>r(!t),className:"text-[11px] text-blue-600 hover:text-blue-800 mt-2 font-mono cursor-pointer",children:t?"Show less":`Show all ${s.length} messages`})]})}function lv({change:e}){const[t,r]=M(!1),s=e.action==="created"?!!e.content:e.action==="modified"?!!(e.oldString||e.newString):!1;return d("li",{children:[n("button",{onClick:()=>s&&r(!t),className:`text-left w-full ${s?"hover:text-green-900 cursor-pointer":""}`,children:d("span",{className:"inline-flex items-center gap-1",children:[s&&(t?n(Nt,{className:"w-3 h-3 inline flex-shrink-0"}):n(en,{className:"w-3 h-3 inline flex-shrink-0"})),e.action==="created"?"Created":"Modified"," ",e.filePath]})}),t&&e.action==="created"&&e.content&&n("pre",{className:"mt-1 mb-2 ml-4 p-2 bg-white border border-green-200 rounded text-[11px] text-gray-700 whitespace-pre-wrap break-words max-h-64 overflow-y-auto",children:e.content}),t&&e.action==="modified"&&d("div",{className:"mt-1 mb-2 ml-4 space-y-1",children:[e.oldString&&d("pre",{className:"p-2 bg-red-50 border border-red-200 rounded text-[11px] text-red-800 whitespace-pre-wrap break-words max-h-32 overflow-y-auto",children:["- ",e.oldString]}),e.newString&&d("pre",{className:"p-2 bg-green-50 border border-green-300 rounded text-[11px] text-green-800 whitespace-pre-wrap break-words max-h-32 overflow-y-auto",children:["+ ",e.newString]})]})]})}function cv({changes:e}){const t=e.filter(i=>i.action==="touched"),r=e.filter(i=>i.action!=="touched"),s=r.some(i=>i.action==="created"),a=r.some(i=>i.action==="modified");return d("div",{className:`my-2 border rounded-md p-3 ${s?"bg-green-50 border-green-200 text-green-800 [&_ul]:text-green-700":a?"bg-amber-50 border-amber-200 text-amber-800 [&_ul]:text-amber-700":"bg-gray-50 border-gray-200 text-gray-600 [&_ul]:text-gray-500"}`,children:[n("div",{className:"text-xs font-bold mb-1",children:"Rule Changes:"}),d("ul",{className:"text-xs space-y-0.5 font-mono",children:[r.map((i,l)=>n(lv,{change:i},l)),t.length>0&&d("li",{children:["Touched timestamps on ",t.length," rule",t.length!==1?"s":""]})]})]})}function dv({result:e}){const t=e.is_error,r=t?"bg-red-50 border-red-200":"bg-green-50 border-green-200",s=t?"text-red-800":"text-green-800",a=t?"text-red-700":"text-green-700",o=e.subtype.replace(/^error_/,"").replace(/_/g," "),i=c=>c>=6e4?`${(c/6e4).toFixed(1)}m`:`${(c/1e3).toFixed(1)}s`,l=c=>c>=1e3?`${(c/1e3).toFixed(1)}k`:String(c);return d("div",{className:`my-2 border rounded-md p-3 ${r}`,children:[d("div",{className:`text-xs font-bold mb-1 ${s}`,children:["Session Result: ",o]}),d("div",{className:`text-xs ${a} font-mono space-y-0.5`,children:[d("div",{className:"flex flex-wrap gap-x-4 gap-y-0.5",children:[e.duration_ms!=null&&d("span",{children:["Duration: ",i(e.duration_ms)]}),e.duration_api_ms!=null&&d("span",{children:["API time: ",i(e.duration_api_ms)]}),e.num_turns!=null&&d("span",{children:["Turns: ",e.num_turns]}),e.total_cost_usd!=null&&d("span",{children:["Cost: $",e.total_cost_usd.toFixed(4)]})]}),e.usage&&d("div",{className:"flex flex-wrap gap-x-4 gap-y-0.5 mt-1",children:[e.usage.input_tokens!=null&&d("span",{children:["Input: ",l(e.usage.input_tokens)]}),e.usage.output_tokens!=null&&d("span",{children:["Output: ",l(e.usage.output_tokens)]}),e.usage.cache_read_input_tokens!=null&&d("span",{children:["Cache read: ",l(e.usage.cache_read_input_tokens)]}),e.usage.cache_creation_input_tokens!=null&&d("span",{children:["Cache write:"," ",l(e.usage.cache_creation_input_tokens)]})]}),e.errors&&e.errors.length>0&&n("div",{className:"mt-1",children:e.errors.map((c,p)=>n("div",{className:"text-red-700 break-words",children:c},p))})]})]})}function uv({agent:e,defaultOpen:t,isAdmin:r}){var k,E,C;const[s,a]=M(t),[o,i]=M(!1),[l,c]=M(null),[p,u]=M(!1),h=ae(()=>{const S={};for(const _ of e.entries)_.type==="tool_result"&&_.tool_use_id&&(S[_.tool_use_id]=_);return S},[e.entries]),m=ae(()=>{const S=new Set;for(const _ of e.entries)_.type==="tool_call"&&_.tool_use_id&&h[_.tool_use_id]&&S.add(_.tool_use_id);return S},[e.entries,h]),f=S=>{S.stopPropagation(),i(!0),c(null),fetch("/api/save-fixture",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({sessionId:e.id})}).then(_=>_.json()).then(_=>{_.success?c(`Saved to ${_.fixturePath}`):c(`Error: ${_.error}`)}).catch(_=>{c(`Error: ${_ instanceof Error?_.message:String(_)}`)}).finally(()=>{i(!1)})},g=(e.ruleChanges||[]).filter(S=>S.action!=="touched"),y=g.filter(S=>S.action==="created"),x=g.filter(S=>S.action==="modified"),w=(e.ruleChanges||[]).filter(S=>S.action==="touched"),b=g.length>0,v=w.length>0,N=b||v;return d("div",{className:`bg-white border rounded-lg overflow-hidden mb-4 ${e.stats.errors>0?"border-red-300":y.length>0?"border-green-300":x.length>0?"border-amber-300":"border-gray-200"}`,children:[d("button",{onClick:()=>a(!s),className:"w-full flex items-center gap-3 px-4 py-3 text-left hover:bg-gray-50 cursor-pointer",children:[s?n(Nt,{className:"w-4 h-4 text-gray-400 flex-shrink-0"}):n(en,{className:"w-4 h-4 text-gray-400 flex-shrink-0"}),n("span",{className:"text-sm font-bold text-[#005C75] font-mono",children:e.id.slice(0,8)}),e.slug&&n("span",{className:"text-xs text-gray-500",children:e.slug}),e.model&&n("span",{className:"inline-flex items-center px-2 py-0.5 rounded-full text-[10px] font-bold bg-purple-100 text-purple-700",title:e.model,children:nv(e.model)}),y.length>0&&d("span",{className:"inline-flex items-center gap-1 px-2 py-0.5 rounded-full text-[10px] font-bold bg-green-100 text-green-800",children:[n(cs,{className:"w-3 h-3"}),y.length," rule",y.length!==1?"s":""," ","created"]}),x.length>0&&d("span",{className:"inline-flex items-center gap-1 px-2 py-0.5 rounded-full text-[10px] font-bold bg-amber-100 text-amber-800",children:[n(cs,{className:"w-3 h-3"}),x.length," rule",x.length!==1?"s":""," ","modified"]}),!b&&v&&d("span",{className:"inline-flex items-center gap-1 px-2 py-0.5 rounded-full text-[10px] font-bold bg-gray-100 text-gray-500",children:[w.length," timestamp",w.length!==1?"s":""," ","touched"]}),e.stats.errors>0&&d("span",{className:"inline-flex items-center gap-1 px-2 py-0.5 rounded-full text-[10px] font-bold bg-red-100 text-red-800",children:[n(ls,{className:"w-3 h-3 flex-shrink-0"}),e.stats.errors," ",e.stats.errors===1?"Error":"Errors"]}),d("span",{className:"text-[11px] text-gray-400 font-mono",children:[e.stats.toolCalls," tool calls, ",e.stats.textBlocks," text blocks",((k=e.sessionResult)==null?void 0:k.duration_ms)!=null&&d(ye,{children:[" · ",e.sessionResult.duration_ms>=6e4?`${(e.sessionResult.duration_ms/6e4).toFixed(1)}m`:`${(e.sessionResult.duration_ms/1e3).toFixed(1)}s`]}),((E=e.sessionResult)==null?void 0:E.total_cost_usd)!=null&&d(ye,{children:[" · ","$",e.sessionResult.total_cost_usd.toFixed(2)]})]}),d("span",{className:"text-[11px] text-gray-400 font-mono ml-auto flex items-center gap-2",children:[tv(e.timestamp),r&&b&&d("button",{onClick:f,disabled:o,className:"inline-flex items-center gap-1 px-2 py-1 rounded text-[10px] font-bold bg-gray-100 text-gray-600 hover:bg-gray-200 disabled:opacity-50 cursor-pointer",title:"Save as test fixture",children:[n(Lu,{className:"w-3 h-3"}),o?"Saving...":"Save Fixture"]})]})]}),l&&n("div",{className:`px-4 py-2 text-xs font-mono ${l.startsWith("Error")?"bg-red-50 text-red-700":"bg-green-50 text-green-700"}`,children:l}),s&&d("div",{className:"px-4 pb-4 border-t border-gray-100",children:[e.sourceFile&&d("div",{className:"flex items-center gap-2 py-2 text-xs text-gray-500 font-mono",children:[n("span",{className:"text-gray-400",children:"FILE:"}),n("span",{className:"truncate",children:e.sourceFile}),n("button",{onClick:S=>{S.stopPropagation(),navigator.clipboard.writeText(e.sourceFile),u(!0),setTimeout(()=>u(!1),2e3)},className:"p-0.5 rounded text-gray-400 hover:text-gray-600 cursor-pointer transition-colors flex-shrink-0",title:"Copy file path",children:p?n(Ct,{className:"w-3.5 h-3.5 text-green-500"}):n(Pt,{className:"w-3.5 h-3.5"})})]}),e.sessionResult&&n(dv,{result:e.sessionResult}),e.stats.errors>0&&((C=e.stats.errorMessages)==null?void 0:C.length)>0&&d("div",{className:"my-2 bg-red-50 border border-red-200 rounded-md p-3",children:[d("div",{className:"text-xs font-bold text-red-800 mb-1",children:[e.stats.errors," Error",e.stats.errors!==1?"s":"",":"]}),n("ul",{className:"text-xs text-red-700 space-y-1 font-mono",children:e.stats.errorMessages.map((S,_)=>n("li",{className:"break-words",children:S},_))})]}),e.conversationSnippet&&n(iv,{snippet:e.conversationSnippet}),N&&n(cv,{changes:e.ruleChanges}),e.context&&n(ov,{context:e.context}),e.entries.map((S,_)=>{if(S.type==="tool_result"&&S.tool_use_id&&m.has(S.tool_use_id))return null;const j=S.type==="tool_call"&&S.tool_use_id?h[S.tool_use_id]:void 0;return n(av,{entry:S,pairedResult:j},`${e.id}-${_}`)})]})]})}function Pa(e,t){const r=new URLSearchParams;t&&r.set("search",t),e>1&&r.set("page",String(e));const s=r.toString();return`/agent-transcripts${s?`?${s}`:""}`}const pv=Qe(function(){const{agents:t,error:r,search:s,page:a,totalPages:o}=tt(),i=Mt(),l=yu("root"),c=(l==null?void 0:l.isAdmin)??!1,[p,u]=M(s),[h,m]=M(!1),[f,g]=M(0);$t({source:"agent-transcripts-page"});const y=w=>{w.preventDefault(),window.location.href=Pa(1,p)},x=()=>{m(!h),g(w=>w+1)};return r?n("div",{className:"bg-[#F8F7F6] min-h-screen",children:d("div",{className:"px-12 py-6 font-sans",children:[n("h1",{className:"text-[28px] font-semibold text-gray-900",children:"Error"}),n("p",{className:"text-base text-gray-500",children:r})]})}):n("div",{className:"bg-[#f9f9f9] min-h-screen",children:d("div",{className:"px-20 py-12 font-sans",children:[d("div",{className:"mb-8",children:[d("div",{className:"flex items-center gap-3 mb-1",children:[n("button",{onClick:()=>{i("/memory")},className:"text-gray-600 hover:text-[#005C75] transition-colors cursor-pointer",title:"Back to Memory","aria-label":"Back to Memory",children:n(Ou,{className:"w-5 h-5"})}),n(ds,{className:"w-6 h-6 text-[#232323]"}),n("h1",{className:"text-[24px] font-semibold mb-0",style:{fontFamily:"Sora",color:"#232323"},children:"Agent Transcripts"})]}),n("p",{className:"text-[15px] text-gray-500 ml-14",children:"View background agent transcripts and tool call history"})]}),d("div",{className:"flex items-center gap-4 mb-6",children:[d("form",{onSubmit:y,className:"relative flex-1 max-w-md",children:[n(Sr,{className:"absolute left-3 top-1/2 -translate-y-1/2 w-4 h-4 text-gray-400"}),n("input",{type:"text",value:p,onChange:w=>u(w.target.value),placeholder:"Search transcripts...",className:"w-full pl-10 pr-4 py-2 border border-gray-200 rounded-md bg-white focus:outline-none focus:ring-2 focus:ring-[#005C75] focus:border-transparent text-sm"})]}),n("button",{onClick:x,className:"text-xs text-[#005C75] hover:underline cursor-pointer font-mono uppercase font-semibold",children:h?"Collapse All":"Expand All"})]}),d("div",{className:"text-sm text-gray-500 mb-4",children:["Page ",a," of ",o,s&&d("span",{children:[" ","matching “",s,"”",n(ve,{to:"/agent-transcripts",className:"text-[#005C75] hover:underline ml-2",children:"Clear"})]})]}),t.length===0?d("div",{className:"bg-white rounded-lg border border-gray-200 p-12 text-center",children:[n(ds,{className:"w-12 h-12 text-gray-300 mx-auto mb-4"}),n("h3",{className:"text-lg font-medium text-gray-900 mb-2",children:"No Agent Transcripts Found"}),n("p",{className:"text-gray-500",children:"Background agent output files will appear here when available."})]}):n("div",{children:t.map(w=>n(uv,{agent:w,defaultOpen:h,isAdmin:c},w.id))},f),o>1&&d("div",{className:"flex items-center justify-center gap-3 mt-8",children:[d("a",{href:a>1?Pa(a-1,s):void 0,className:`inline-flex items-center gap-1 px-3 py-1.5 rounded-md text-sm font-medium ${a>1?"bg-white border border-gray-200 text-gray-700 hover:bg-gray-50 cursor-pointer":"bg-gray-100 text-gray-400 pointer-events-none"}`,children:[n(Fu,{className:"w-4 h-4"}),"Prev"]}),d("span",{className:"text-sm text-gray-500 font-mono",children:[a," / ",o]}),d("a",{href:a<o?Pa(a+1,s):void 0,className:`inline-flex items-center gap-1 px-3 py-1.5 rounded-md text-sm font-medium ${a<o?"bg-white border border-gray-200 text-gray-700 hover:bg-gray-50 cursor-pointer":"bg-gray-100 text-gray-400 pointer-events-none"}`,children:["Next",n(en,{className:"w-4 h-4"})]})]})]})})}),hv=Object.freeze(Object.defineProperty({__proto__:null,default:pv,loader:Xw,meta:Zw},Symbol.toStringTag,{value:"Module"}));async function mv({request:e}){if(e.method!=="POST")return new Response("Method not allowed",{status:405});try{const t=await e.json(),{message:r}=t;if(!r)return new Response(JSON.stringify({error:"message is required"}),{status:400,headers:{"Content-Type":"application/json"}});const s=process.env.CODEYAM_ROOT_PATH||process.cwd();console.log(`[editor-commit] Committing with message: "${r}" in ${s}`);const a=bb(s);a&&console.log("[editor-commit] Initialized new git repository"),wb(s),console.log("[editor-commit] Staged all changes");const o=vb(s,r);console.log(`[editor-commit] Created commit: ${o}`);try{const{broadcastHideResults:i}=await Promise.resolve().then(()=>D0);i()}catch{}return new Response(JSON.stringify({success:!0,commitSha:o,initialized:a}),{headers:{"Content-Type":"application/json"}})}catch(t){const r=t instanceof Error?t.message:String(t);return console.error("[editor-commit] Error:",t),new Response(JSON.stringify({error:r}),{status:500,headers:{"Content-Type":"application/json"}})}}const fv=Object.freeze(Object.defineProperty({__proto__:null,action:mv},Symbol.toStringTag,{value:"Module"})),gv=["JSX","React","Element","ReactNode"];function yv(e){return e.returnType?gv.some(t=>e.returnType.includes(t)):!1}function xv(e){const t=[],r=[];for(const s of e)yv(s)?t.push(s):r.push(s);return{components:t,functions:r}}function bv({components:e,functions:t,scenarioCounts:r,testFileExistence:s,testResults:a,clientErrors:o}){const i=e.map(x=>{const w=r[x.name]||0,b=o==null?void 0:o[x.name],v=w>0&&b&&b.length>0;let N;return w===0?N="missing":v?N="has_errors":N="ok",{name:x.name,filePath:x.filePath,scenarioCount:w,status:N,...v?{clientErrors:b}:{}}}),l=t.map(x=>{if(!(x.testFile?s[x.testFile]??!1:!1))return{name:x.name,filePath:x.filePath,testFile:x.testFile,testFileExists:!1,status:"missing"};const b=x.testFile&&a?a[x.testFile]:void 0;if(!b)return{name:x.name,filePath:x.filePath,testFile:x.testFile,testFileExists:!0,status:"ok"};let v;return!b.passing&&b.errorMessage?v="runner_error":b.passing?b.hasEntityNameDescribe?v="ok":v="name_mismatch":v="failing",{name:x.name,filePath:x.filePath,testFile:x.testFile,testFileExists:!0,testsPassing:b.passing,testsVisibleInUi:b.hasEntityNameDescribe,status:v,...b.errorMessage?{errorMessage:b.errorMessage}:{}}}),c=i.filter(x=>x.status==="ok").length,p=i.filter(x=>x.status==="has_errors").length,u=i.filter(x=>x.status==="missing").length,h=l.filter(x=>x.status==="ok").length,m=l.filter(x=>x.status==="failing").length,f=l.filter(x=>x.status==="runner_error").length,g=l.filter(x=>x.status==="name_mismatch").length,y=l.filter(x=>x.status==="missing").length;return{components:i,functions:l,summary:{totalComponents:i.length,componentsOk:c,componentsMissing:u,componentsWithErrors:p,totalFunctions:l.length,functionsOk:h,functionsMissing:y,functionsFailing:m,functionsRunnerError:f,functionsNameMismatch:g,allPassing:u===0&&p===0&&m===0&&f===0&&g===0&&y===0}}}function wv({featureStartedAt:e,entityChangeStatus:t}){return t&&Object.keys(t).length>0?{featureStartedAt:e,entityChangeStatus:t}:{featureStartedAt:null,entityChangeStatus:t}}function vv(e,t){return!t||Object.keys(t).length===0?e:e.filter(r=>!!(t[r.name]||t[r.filePath]))}async function Nv(e,t,r){const a=await e.selectFrom("editor_scenarios").select(["entity_sha"]).select(e.fn.count("id").as("count")).where("project_id","=",t).where("entity_sha","is not",null).groupBy("entity_sha").execute();if(a.length===0)return[];const o=a.map(v=>v.entity_sha),i=await e.selectFrom("analyses").select("entity_sha").where("entity_sha","in",o).groupBy("entity_sha").execute(),l=new Set(i.map(v=>v.entity_sha)),c=a.filter(v=>!l.has(v.entity_sha));if(c.length===0)return[];const p=c.map(v=>v.entity_sha),u=await e.selectFrom("entities").select(["sha","name","file_path"]).where("sha","in",p).execute(),h=new Map(u.map(v=>[v.sha,v.name])),m=[...new Set(u.map(v=>v.name).filter(Boolean))];let f=new Set;if(m.length>0){const v=await e.selectFrom("entities").innerJoin("analyses","analyses.entity_sha","entities.sha").select("entities.name").where("entities.name","in",m).groupBy("entities.name").execute();f=new Set(v.map(N=>N.name))}const g=c.filter(v=>{const N=h.get(v.entity_sha);return!N||!f.has(N)});if(g.length===0)return[];const y=g.map(v=>v.entity_sha),x=await e.selectFrom("editor_scenarios").select(["entity_sha","component_name"]).where("project_id","=",t).where("entity_sha","in",y).where("component_name","is not",null).groupBy("entity_sha").execute(),w=new Map(x.map(v=>[v.entity_sha,v.component_name]));let b=new Set;if(r){const v=r.replace("T"," ").replace(/\.\d{3}Z$/,""),N=await e.selectFrom("editor_scenarios").select("entity_sha").where("project_id","=",t).where("entity_sha","in",y).where(k=>k.or([k("created_at",">=",v),k("updated_at",">=",v)])).groupBy("entity_sha").execute();b=new Set(N.map(k=>k.entity_sha))}return g.map(v=>{const N=v.entity_sha;return{entitySha:N,name:h.get(N)||w.get(N)||"Unknown",scenarioCount:Number(v.count),preExisting:r?!b.has(N):!1}})}async function Cv(e,t,r){let s=e.selectFrom("editor_scenarios").select(["component_name","name","url"]).where("project_id","=",t).where("component_name","is not",null).where("url","is not",null);if(r){const l=r.replace("T"," ").replace(/\.\d{3}Z$/,"");s=s.where(c=>c.or([c("created_at",">=",l),c("updated_at",">=",l)]))}const o=(await s.execute()).filter(l=>l.url&&!Ys(l.url));if(o.length===0)return[];const i=new Map;for(const l of o){const c=`${l.component_name}::${l.url}`,p=i.get(c);p?p.scenarioNames.push(l.name):i.set(c,{componentName:l.component_name,scenarioNames:[l.name],url:l.url})}return[...i.values()]}async function Sv(e,t,r){let s=e.selectFrom("editor_scenarios").select(["component_name"]).select(e.fn.count("id").as("count")).where("project_id","=",t).where("component_name","is not",null).groupBy("component_name");if(r){const i=r.replace("T"," ").replace(/\.\d{3}Z$/,"");s=s.where(l=>l.or([l("created_at",">=",i),l("updated_at",">=",i)]))}const a=await s.execute(),o={};for(const i of a)i.component_name&&(o[i.component_name]=Number(i.count));return o}async function _v(e,t,r){let s=e.selectFrom("editor_scenarios").select(["page_file_path"]).select(e.fn.count("id").as("count")).where("project_id","=",t).where("component_name","is",null).where("page_file_path","is not",null).groupBy("page_file_path");if(r){const i=r.replace("T"," ").replace(/\.\d{3}Z$/,"");s=s.where(l=>l.or([l("created_at",">=",i),l("updated_at",">=",i)]))}const a=await s.execute(),o={};for(const i of a)i.page_file_path&&(o[i.page_file_path]=Number(i.count));return o}function kv(e){const t=new Map;for(const r of e){const s=t.get(r.name);s?s.push(r):t.set(r.name,[r])}for(const[r,s]of t)s.length<=1&&t.delete(r);return t}function Ev(e){const{scenarios:t,entityChangeStatus:r}=e;if(!r||Object.keys(r).length===0)return[];const s=[];for(const a of t){if(a.updatedInSession||!a.entityName)continue;const o=r[a.entityName];o&&s.push({scenarioName:a.name,entityName:a.entityName,status:o})}return s}async function Av(){const e=we()||process.cwd(),t=L.join(e,".codeyam","glossary.json");let r;try{const C=K.readFileSync(t,"utf8");r=jo(JSON.parse(C))}catch{return Response.json({components:[],functions:[],summary:{totalComponents:0,componentsOk:0,componentsMissing:0,componentsWithErrors:0,totalFunctions:0,functionsOk:0,functionsMissing:0,functionsFailing:0,functionsNameMismatch:0,allPassing:!0}})}if(r.length===0)return Response.json({components:[],functions:[],summary:{totalComponents:0,componentsOk:0,componentsMissing:0,componentsWithErrors:0,totalFunctions:0,functionsOk:0,functionsMissing:0,functionsFailing:0,functionsNameMismatch:0,allPassing:!0}});const s=L.join(e,".codeyam","editor-step.json");let a=null;try{const C=K.readFileSync(s,"utf8");a=JSON.parse(C).featureStartedAt||null}catch{}let o;const i=await ze();if(i)try{const{project:C}=await Oe(i),_=await Te().selectFrom("editor_scenarios").select(["name","component_name","component_path","page_file_path","url"]).where("project_id","=",C.id).orderBy("created_at","asc").execute(),$=Tt(_,I=>`${I.name}::${I.url||"/"}`).map(I=>({componentName:I.component_name||null,componentPath:I.component_path||null,pageFilePath:I.page_file_path??null,url:I.url??null})),P=await Pr({projectRoot:e,scenarioInputs:$});Object.keys(P.entityChangeStatus).length>0&&(o=P.entityChangeStatus)}catch{}const l=wv({featureStartedAt:a,entityChangeStatus:o});a=l.featureStartedAt,o=l.entityChangeStatus;const c=vv(r,o),{components:p,functions:u}=xv(c);let h={};if(i)try{const{project:C}=await Oe(i),S=Te();h=await Sv(S,C.id,a);const _=await _v(S,C.id,a);for(const[j,$]of Object.entries(_)){const P=c.find(I=>I.filePath===j);P&&(h[P.name]=(h[P.name]||0)+$)}}catch{}const m={};try{const C=process.env.CODEYAM_ROOT_PATH||process.cwd(),S=await td(C);for(const[,_]of Object.entries(S)){if(_.errors.length===0)continue;const j=_.scenarioName,$=j.indexOf(" - "),P=$>=0?j.slice(0,$):j;P&&(m[P]||(m[P]=[]),m[P].push(..._.errors))}}catch{}const f={};for(const C of u)C.testFile&&(f[C.testFile]=K.existsSync(L.join(e,C.testFile)));const g={};for(const C of u)if(!(!C.testFile||!f[C.testFile]))try{const S=await xd(e,C.testFile),_=S.status==="passed",j=S.testCases.some($=>$.fullName.startsWith(C.name));g[C.testFile]={passing:_,hasEntityNameDescribe:j,...S.status==="error"&&S.errorMessage?{errorMessage:S.errorMessage}:{}}}catch(S){g[C.testFile]={passing:!1,hasEntityNameDescribe:!1,errorMessage:S.message||"Unknown test runner error"}}const y=new Set(r.map(C=>C.filePath)),x=[];if(i)try{const{project:C}=await Oe(i),_=await Te().selectFrom("editor_scenarios").select(["component_name","component_path","page_file_path"]).where("project_id","=",C.id).execute(),j=new Map;for(const $ of _){const P=$,I=P.component_path||P.page_file_path;if(!I)continue;const R=j.get(I);R?R.count++:j.set(I,{name:P.component_name||L.basename(I,L.extname(I)),count:1})}for(const[$,P]of j)y.has($)||x.push({name:P.name,filePath:$,scenarioCount:P.count})}catch{}const w=bv({components:p,functions:u,scenarioCounts:h,testFileExistence:f,testResults:g,clientErrors:m});w.missingFromGlossary=x,x.length>0&&(w.summary.allPassing=!1,w.summary.missingFromGlossary=x.length);let b=[];if(i)try{const{project:C}=await Oe(i),S=Te();b=await Nv(S,C.id,a)}catch{}if(w.incompleteEntities=b,b.length>0){w.summary.allPassing=!1,w.summary.incompleteEntities=b.length;const C=b.filter(S=>S.preExisting).length;C>0&&(w.summary.preExistingIncompleteEntities=C)}let v=[];if(i)try{const{project:C}=await Oe(i),S=Te();v=await Cv(S,C.id,a)}catch{}w.miscategorizedScenarios=v,v.length>0&&(w.summary.allPassing=!1,w.summary.miscategorizedScenarios=v.length);let N=[];if(i&&o&&Object.keys(o).length>0)try{const{project:C}=await Oe(i),_=await Te().selectFrom("editor_scenarios").leftJoin("entities","entities.sha","editor_scenarios.entity_sha").select(["editor_scenarios.name","entities.name as entity_name","editor_scenarios.created_at","editor_scenarios.updated_at"]).where("editor_scenarios.project_id","=",C.id).execute(),j=a?Us(a):null,$=_.map(P=>({name:P.name,entityName:P.entity_name,updatedInSession:j?Ic({created_at:P.created_at,updated_at:P.updated_at},j):!1}));N=Ev({scenarios:$,entityChangeStatus:o})}catch{}w.scenariosNeedingRecapture=N,N.length>0&&(w.summary.allPassing=!1,w.summary.scenariosNeedingRecapture=N.length);const k=[],E=kv(r);for(const[C,S]of E)k.push({name:C,filePaths:S.map(_=>_.filePath)});return w.duplicateNames=k,Response.json(w)}const Pv=Object.freeze(Object.defineProperty({__proto__:null,loader:Av},Symbol.toStringTag,{value:"Module"}));async function jv({request:e}){try{const t=await e.json(),{pid:r,signal:s="SIGTERM",commitSha:a}=t;if(!r||typeof r!="number")return Response.json({error:"Missing or invalid pid parameter"},{status:400});if(!el(r))return Response.json({error:"Process not running",pid:r},{status:404});try{process.kill(r,s)}catch(u){return Response.json({error:"Failed to kill process",pid:r,details:u instanceof Error?u.message:String(u)},{status:500})}const i=3e4,l=500,c=Date.now();let p=!0;for(;p&&Date.now()-c<i;)await new Promise(u=>setTimeout(u,l)),p=el(r);if(p){console.warn(`Process ${r} didn't die after SIGTERM, sending SIGKILL`);try{process.kill(r,"SIGKILL"),await new Promise(u=>setTimeout(u,2e3))}catch(u){console.error(`Failed to SIGKILL process ${r}:`,u)}}if(a)try{await qt({commitSha:a,runStatusUpdate:{analyzerPid:void 0,capturePid:void 0,failedAt:new Date().toISOString(),failureReason:`Process ${r} killed by user`}})}catch(u){console.error("Failed to update database after killing process:",u)}return Response.json({success:!0,pid:r,signal:s,message:`Process ${r} killed successfully`,waitedMs:Date.now()-c})}catch(t){return console.error("Error in kill-process API:",t),Response.json({error:"Internal server error",details:t instanceof Error?t.message:String(t)},{status:500})}}function el(e){try{return process.kill(e,0),!0}catch{return!1}}const Tv=Object.freeze(Object.defineProperty({__proto__:null,action:jv},Symbol.toStringTag,{value:"Module"})),Mv=Es(import.meta.url),$v=ee.dirname(Mv),Iv=ee.resolve($v,"../../../../src/utils/ruleReflection/__tests__/fixtures/captured");function Rv(e){const t=[],r=new Set;for(const s of e.split(`
|
|
406
|
+
`)){const a=s.trim();if(!a)continue;let o;try{o=JSON.parse(a)}catch{continue}if(o.type!=="assistant")continue;const i=o.message;if(!(!i||!Array.isArray(i.content)))for(const l of i.content){if(typeof l!="object"||l===null)continue;const c=l;if(c.type!=="tool_use")continue;const p=String(c.name||""),u=c.input||{};if(p==="Write"||p==="Edit"){const h=String(u.file_path||"");if(h.includes(".claude/rules/")){const m=h.replace(/^.*?(\.claude\/rules\/)/,"$1"),f=`${p}:${m}`;r.has(f)||(r.add(f),t.push({action:p==="Write"?"created":"modified",filePath:m}))}}else if(p==="Bash"){const h=String(u.command||"");if(h.includes("codeyam memory touch")){const m=`touch:${h}`;r.has(m)||(r.add(m),t.push({action:"touched",filePath:h}))}}}}return t}async function Dv({request:e}){if(e.method!=="POST")return Response.json({error:"Method not allowed"},{status:405});try{const t=await e.json(),{sessionId:r}=t;if(!r)return Response.json({error:"Missing required field: sessionId"},{status:400});const s=await wd(),a=s?ee.join(as,s):null;let o=a?ee.join(a,`${r}.log`):"";if((!o||!wt(o))&&(o=ee.join(as,`${r}.log`)),!wt(o))return Response.json({error:`Log file not found: ${r}.log`},{status:404});const i=await Ra(o,"utf-8");let l=a?ee.join(a,`${r}.context`):"";(!l||!wt(l))&&(l=ee.join(as,`${r}.context`));let c=null;if(wt(l))try{c=await Ra(l,"utf-8")}catch{}const p=Rv(i),h=c?["no,","no ","that's not","wrong","incorrect","actually,","actually ","i meant","i mean","not what i","stop","wait","don't do","shouldn't","try again","that broke","that failed","error","bug"].some(x=>c.toLowerCase().includes(x)):!1,m=r.endsWith("-stale")?"-stale":r.endsWith("-conversation")?"-conv":r.endsWith("-interruption")?"-int":"",f=r.slice(0,8)+m,g=ee.join(Iv,f);await lp(g,{recursive:!0}),await dr(ee.join(g,"agent-log.jsonl"),i),c&&await dr(ee.join(g,"context.md"),c),await dr(ee.join(g,"rule-changes.json"),JSON.stringify(p,null,2)),await dr(ee.join(g,"metadata.json"),JSON.stringify({sessionId:r,capturedAt:new Date().toISOString(),hasConfusion:h,ruleChangeCount:p.length},null,2));const y=ee.relative(process.cwd(),g);return console.log(`[api.save-fixture] Saved fixture to ${y}`),Response.json({success:!0,fixturePath:y})}catch(t){return console.error("[api.save-fixture] Error:",t),Response.json({error:"Failed to save fixture",details:t instanceof Error?t.message:String(t)},{status:500})}}const Ov=Object.freeze(Object.defineProperty({__proto__:null,action:Dv},Symbol.toStringTag,{value:"Module"}));async function Fv({params:e}){const t=e["*"];if(!t)return new Response("Screenshot path is required",{status:400});const r=we();if(!r)return console.error("[screenshot api] Project root not found"),new Response("Project root not found",{status:500});const s=ee.join(r,".codeyam","captures","screenshots",t);try{await Ee.access(s);const a=await Ee.readFile(s),o=ee.extname(s).toLowerCase(),i=o===".png"?"image/png":o===".jpg"||o===".jpeg"?"image/jpeg":"application/octet-stream";return new Response(a,{status:200,headers:{"Content-Type":i,"Cache-Control":"public, max-age=3600"}})}catch{return new Response("Screenshot not found",{status:404})}}const Lv=Object.freeze(Object.defineProperty({__proto__:null,loader:Fv},Symbol.toStringTag,{value:"Module"})),tl={visual:{label:"VISUAL",bgColor:"#f9f9f9",textColor:"#9040f5"},library:{label:"LIBRARY",bgColor:"#f9f9f9",textColor:"#06b6d5"},type:{label:"TYPE",bgColor:"#ffe1e1",textColor:"#db2627"},other:{label:"OTHER",bgColor:"#f9f9f9",textColor:"#646464"}};function Jo({type:e,className:t=""}){const r=tl[e]||tl.other;return n("div",{className:`inline-flex items-center justify-center px-[4px] rounded-[4px] ${t}`,style:{backgroundColor:r.bgColor,color:r.textColor,height:"15px"},children:n("span",{className:"text-[10px] font-['IBM_Plex_Sans'] font-semibold leading-[15px] uppercase",children:r.label})})}const zv={analyzer:{bgColor:"#e1e1e1",textColor:"#3e3e3e",borderColor:"#e1e1e1"},capture:{bgColor:"#e1e1e1",textColor:"#3e3e3e",borderColor:"#e1e1e1"},running:{bgColor:"#e8ffe6",textColor:"#00925d",borderColor:"#c3f3bf"},error:{bgColor:"#fee2e2",textColor:"#991b1b",borderColor:"#fecaca"}};function Xr({variant:e,pid:t,label:r,className:s=""}){const a=zv[e],o=r||(e==="analyzer"&&t?`Analyzer: ${t}`:e==="capture"&&t?`Capture: ${t}`:e==="running"?"Running":e==="error"?"Error":"");return n("div",{className:`inline-flex items-center justify-center px-[8px] rounded-[4px] ${s}`,style:{backgroundColor:a.bgColor,borderWidth:"1px",borderStyle:"solid",borderColor:a.borderColor,height:"20px"},children:n("span",{className:"font-['IBM_Plex_Sans']",style:{fontSize:"10px",fontWeight:400,lineHeight:"15px",color:a.textColor},children:o})})}let nl=!1;function Bv(){if(nl)return;const e=document.createElement("style");e.textContent=`
|
|
407
|
+
@keyframes strongPulse {
|
|
408
|
+
0%, 100% { opacity: 0.2; }
|
|
409
|
+
50% { opacity: 1; }
|
|
410
|
+
}
|
|
411
|
+
`,document.head.appendChild(e),nl=!0}function Ho({size:e="medium",className:t=""}){typeof document<"u"&&Bv();const r={small:{sideDotSize:3,centerDotSize:4,gap:2},medium:{sideDotSize:4,centerDotSize:6,gap:2},large:{sideDotSize:6,centerDotSize:8,gap:3}},{sideDotSize:s,centerDotSize:a,gap:o}=r[e];return d("div",{className:`flex items-center justify-center ${t}`,style:{gap:`${o}px`},role:"status","aria-label":"Loading",children:[n("div",{className:"rounded-full",style:{width:`${s}px`,height:`${s}px`,backgroundColor:"#005c75",animation:"strongPulse 1.5s ease-in-out infinite",animationDelay:"0s"}}),n("div",{className:"rounded-full",style:{width:`${a}px`,height:`${a}px`,backgroundColor:"#005c75",animation:"strongPulse 1.5s ease-in-out infinite",animationDelay:"0.3s"}}),n("div",{className:"rounded-full",style:{width:`${s}px`,height:`${s}px`,backgroundColor:"#005c75",animation:"strongPulse 1.5s ease-in-out infinite",animationDelay:"0.6s"}})]})}const Yv=()=>[{title:"Activity - CodeYam"},{name:"description",content:"View analysis activity and queue status"}];async function Uv({request:e,context:t,params:r}){var H,U,z,A,Y,V,W,Q;let s=t.analysisQueue;s||(s=await Ht());const a=new URL(e.url),o=parseInt(a.searchParams.get("page")||"1",10),i=20,l=r.tab||"current";if(!s)return X({error:"Queue not initialized",state:{paused:!1,jobs:[]},currentRun:void 0,historicalRuns:[],totalHistoricalRuns:0,currentPage:o,totalPages:0,projectSlug:null,commitSha:void 0,queueJobs:[],currentlyExecuting:null,currentEntities:[],tab:l,hasCurrentActivity:!1,queuedCount:0,recentCompletedEntities:[],hasMoreCompletedRuns:!1,currentEntityScenarios:[],currentEntityForScenarios:null,currentAnalysisStatus:null},{status:500});const c=s.getState(),p=await ze();let u=null;if(p&&((H=c==null?void 0:c.currentlyExecuting)!=null&&H.commitSha)){const{project:B,branch:D}=await Oe(p),O=await fs({projectId:B.id,branchId:D.id,shas:[c.currentlyExecuting.commitSha]});u=O&&O.length>0?O[0]:null}else u=await Hn();const h=async B=>{const D=await xn(B);if(!D)return null;const{getAnalysesForEntity:O}=await Promise.resolve().then(()=>Tm),q=await O(B,!1);return{...D,analyses:q||[]}},m=await Promise.all(((c==null?void 0:c.jobs)||[]).map(async B=>{const D=[];if(B.entityShas&&B.entityShas.length>0){const O=B.entityShas.map(re=>h(re)),q=await Promise.all(O);D.push(...q.filter(re=>re!==null))}return{...B,entities:D}}));let f=null;if(c!=null&&c.currentlyExecuting){const B=c.currentlyExecuting,D=[];if(B.entityShas&&B.entityShas.length>0){const O=B.entityShas.map(re=>h(re)),q=await Promise.all(O);D.push(...q.filter(re=>re!==null))}f={...B,entities:D}}const g=f?m.filter(B=>B.id!==f.id):m,y=((z=(U=u==null?void 0:u.metadata)==null?void 0:U.currentRun)==null?void 0:z.currentEntityShas)||[],w=(await Promise.all(y.map(B=>h(B)))).filter(B=>B!==null),b=[];if(p)try{const{project:B,branch:D}=await Oe(p),O=await fs({projectId:B.id,branchId:D.id,limit:100});for(const q of O){const re=((A=q.metadata)==null?void 0:A.historicalRuns)||[];b.push(...re)}}catch(B){console.error("[activity.tsx] Failed to load historical runs from commits:",B)}const v=[...b].sort((B,D)=>{const O=B.lastCaptureAt||B.analysisCompletedAt||B.archivedAt||B.createdAt||"";return(D.lastCaptureAt||D.analysisCompletedAt||D.archivedAt||D.createdAt||"").localeCompare(O)}),N=(o-1)*i,k=N+i,E=v.slice(N,k),C=Math.ceil(v.length/i),S=await Promise.all(E.map(async B=>{const D=B.currentEntityShas||[];if(D.length===0)return{...B,entities:[]};const O=await Promise.all(D.map(q=>h(q)));return{...B,entities:O.filter(q=>q!==null)}})),_=!!f,j=g.length,$=v.filter(B=>{const D=!!B.failedAt,O=B.readyToBeCaptured,q=B.capturesCompleted??0,re=O===void 0?!0:O===0||q>=O;return!D&&!!B.analysisCompletedAt&&re}),P=new Set(((Y=f==null?void 0:f.entities)==null?void 0:Y.map(B=>B.sha))||[]),I=$.filter(B=>!(B.currentEntityShas||[]).some(O=>P.has(O))),T=(await Promise.all(I.slice(0,3).map(async B=>{const D=B.currentEntityShas||[];if(D.length===0)return{run:B,entities:[]};const O=await Promise.all(D.map(q=>h(q)));return{run:B,entities:O.filter(q=>q!==null)}}))).flatMap(({run:B,entities:D})=>D.map(O=>({...O,runId:B.id,completedAt:B.lastCaptureAt||B.analysisCompletedAt||B.archivedAt||B.createdAt})));let G=[],J=null,F=null;if((W=(V=u==null?void 0:u.metadata)==null?void 0:V.currentRun)!=null&&W.analysisCompletedAt&&w.length>0){const B=w[0].sha;J=w[0];const D=await Ms(B);D&&D.length>0&&D[0].scenarios&&(G=D[0].scenarios,F=D[0].status)}return X({state:{...c,jobs:g,currentlyExecuting:f},currentRun:(Q=u==null?void 0:u.metadata)==null?void 0:Q.currentRun,historicalRuns:S,totalHistoricalRuns:v.length,currentPage:o,totalPages:C,projectSlug:p,commitSha:u==null?void 0:u.sha,queueJobs:g,currentlyExecuting:f,currentEntities:w,tab:l,hasCurrentActivity:_,queuedCount:j,recentCompletedEntities:T,hasMoreCompletedRuns:I.length>3,currentEntityScenarios:G,currentEntityForScenarios:J,currentAnalysisStatus:F})}function Wv({activeTab:e,hasCurrentActivity:t,queuedCount:r,historicCount:s}){const a=[{id:"current",label:"Current Activity",hasContent:t,count:t?1:null},{id:"queued",label:"Queued Activity",hasContent:r>0,count:r},{id:"historic",label:"Historic Activity",hasContent:s>0,count:s}];return n("div",{className:"border-b border-gray-200 mb-6",children:n("nav",{className:"flex gap-8",children:a.map(o=>{const i=e===o.id;return n(ve,{to:o.id==="current"?"/activity":`/activity/${o.id}`,className:`
|
|
412
|
+
relative pb-4 px-2 text-sm transition-colors cursor-pointer
|
|
413
|
+
${i?"font-medium border-b-2":"font-normal hover:text-gray-700"}
|
|
414
|
+
`,style:i?{color:"#005C75",borderColor:"#005C75"}:{color:"#9ca3af"},children:d("span",{className:"flex items-center gap-2",children:[o.label,o.count!==null&&o.count>0&&n("span",{className:`inline-flex items-center justify-center px-2 py-0.5 text-xs font-semibold rounded-full ${i?"bg-[#cbf3fa] text-[#005c75]":"bg-[#e1e1e1] text-[#3e3e3e]"}`,children:o.count}),o.count===null&&o.hasContent&&n("span",{className:`
|
|
415
|
+
inline-block w-2 h-2 rounded-full
|
|
416
|
+
${i?"":"bg-gray-400"}
|
|
417
|
+
`,style:i?{backgroundColor:"#005C75"}:{}})]})},o.id)})})})}function Jv({currentlyExecuting:e,currentRun:t,state:r,projectSlug:s,commitSha:a,onShowLogs:o,recentCompletedEntities:i,hasMoreCompletedRuns:l,currentEntityScenarios:c,currentEntityForScenarios:p,currentAnalysisStatus:u}){var R,T,G,J;const[h,m]=M({}),[f,g]=M({isKilling:!1,current:0,total:0}),y=Yt(),x=!!e,w=(e==null?void 0:e.entities)||[],b=!!(t!=null&&t.analysisCompletedAt),v=b&&!!(t!=null&&t.capturePid),N=!b,k=x,E=c||[],{lastLine:C}=Ut(s,k);se(()=>{if(!t)return;const F=[t.analyzerPid,t.capturePid].filter(A=>!!A);if(F.length===0)return;let H=!0;const U=async()=>{try{const Y=await(await fetch(`/api/process-status?pids=${F.join(",")}`)).json();if(Y.processes&&H){const V={};Y.processes.forEach(W=>{V[W.pid]={isRunning:W.isRunning,processName:W.processName}}),m(V)}}catch(A){H&&console.error("Failed to fetch process statuses:",A)}};U();const z=setInterval(()=>void U(),5e3);return()=>{H=!1,clearInterval(z)}},[t==null?void 0:t.analyzerPid,t==null?void 0:t.capturePid]);const[S,_]=M(!1),[j,$]=M(!1);se(()=>{w.length<=3&&S&&_(!1)},[w.length,S]),se(()=>{i.length<=3&&j&&$(!1)},[i.length,j]);const P=S?w:w.slice(0,3),I=w.length>3;return d("div",{className:"flex flex-col gap-[45px]",children:[k?d("div",{className:"rounded-[10px] p-[15px]",style:{backgroundColor:"#f6f9fc",border:"1px solid #e0e9ec"},children:[d("div",{className:"flex items-center gap-2 mb-[15px]",children:[n(At,{size:14,strokeWidth:2.5,className:"animate-spin",style:{color:"#005c75"}}),n("span",{className:"font-medium",style:{fontSize:"14px",lineHeight:"18px",color:"#005c75"},children:v?"Capturing...":"Analyzing..."})]}),P.map(F=>d("div",{className:"bg-white border border-[#e1e1e1] rounded-[4px] mb-[15px]",style:{height:"60px",padding:"0 15px",display:"flex",alignItems:"center",justifyContent:"space-between",boxShadow:"0 1px 3px 0 rgb(0 0 0 / 0.1)"},children:[d("div",{className:"flex items-center gap-3",children:[n("div",{children:n(ut,{type:F.entityType||"other",size:"large"})}),d("div",{className:"flex flex-col gap-[1px]",children:[d("div",{className:"flex items-center gap-[14px]",children:[n(ve,{to:`/entity/${F.sha}`,className:"hover:underline cursor-pointer",style:{fontSize:"14px",lineHeight:"18px",fontWeight:500,color:"#000"},children:F.name}),F.entityType&&n(Jo,{type:F.entityType})]}),n("div",{className:"truncate font-mono",style:{fontSize:"12px",lineHeight:"15px",color:"#8e8e8e",width:"422px"},title:F.filePath,children:F.filePath})]})]}),n("button",{onClick:o,className:"px-[10px] rounded-[4px] transition-colors whitespace-nowrap cursor-pointer",style:{backgroundColor:"#e0e9ec",color:"#005c75",fontSize:"10px",lineHeight:"22px",fontWeight:600},children:"View Logs"})]},F.sha)),I&&!S&&d("button",{onClick:()=>_(!0),className:"flex items-center justify-center bg-gray-50 border border-gray-200 rounded-[4px] mb-[15px] hover:bg-gray-100 hover:border-gray-300 transition-colors cursor-pointer w-full",style:{height:"60px",fontSize:"14px",color:"#646464",fontWeight:500},children:["+",w.length-3," more"," ",w.length-3===1?"entity":"entities"]}),S&&I&&n("button",{onClick:()=>_(!1),className:"flex items-center justify-center bg-gray-50 border border-gray-200 rounded-[4px] mb-[15px] hover:bg-gray-100 hover:border-gray-300 transition-colors cursor-pointer w-full",style:{height:"60px",fontSize:"14px",color:"#646464",fontWeight:500},children:"Show less"}),v&&E&&E.length>0&&p&&n("div",{className:"flex gap-[10px] overflow-x-auto mb-[15px]",children:E.map(F=>{var W,Q,B,D;if(!F.id)return null;const H=(Q=(W=F.metadata)==null?void 0:W.screenshotPaths)==null?void 0:Q[0],U=(B=F.metadata)==null?void 0:B.noScreenshotSaved,z=H&&!U,A=(D=u==null?void 0:u.scenarios)==null?void 0:D.find(O=>O.name===F.name),V=A&&A.screenshotStartedAt&&!A.screenshotFinishedAt||!z&&!U;return n(ve,{to:`/entity/${p.sha}/scenarios/${F.id}`,className:"border border-solid rounded-[6px] overflow-hidden flex-shrink-0 cursor-pointer",style:{width:"160px",height:"90px",backgroundColor:V?"#f9f9f9":void 0,borderColor:V?"#efefef":"#ccc"},children:z?n(rt,{screenshotPath:H,alt:F.name,className:"w-full h-full object-contain bg-gray-100"}):V?n("div",{className:"w-full h-full flex items-center justify-center",children:n(Ho,{size:"medium"})}):n("div",{className:"w-full h-full flex items-center justify-center font-mono",style:{backgroundColor:"#FAFAFA",backgroundImage:"radial-gradient(circle, rgba(0,0,0,0.02) 1px, transparent 1px)",backgroundSize:"20px 20px",color:"#b0b0b0",fontSize:"11px"},children:"No preview"})},F.id)})}),C&&n("div",{className:"mb-[15px] font-['IBM_Plex_Mono']",style:{fontSize:"12px",lineHeight:"20px",fontWeight:500,color:"#005c75"},children:C}),n("div",{className:"mb-[15px]",style:{height:"1px",backgroundColor:"#e0e9ec"}}),((t==null?void 0:t.analyzerPid)||(t==null?void 0:t.capturePid))&&d("div",{className:"flex items-center justify-between",children:[d("div",{className:"flex items-center gap-2",children:[d("span",{style:{fontSize:"12px",lineHeight:"15px",fontWeight:400,color:"#000"},children:["Running Processes:"," "]}),(t==null?void 0:t.analyzerPid)&&n(Xr,{variant:"analyzer",pid:t.analyzerPid}),(t==null?void 0:t.analyzerPid)&&(N||((R=h[t.analyzerPid])==null?void 0:R.isRunning))&&n(Xr,{variant:"running"}),(t==null?void 0:t.capturePid)&&n(Xr,{variant:"capture",pid:t.capturePid}),(t==null?void 0:t.capturePid)&&(v||((T=h[t.capturePid])==null?void 0:T.isRunning))&&n(Xr,{variant:"running"})]}),(((G=h[t==null?void 0:t.analyzerPid])==null?void 0:G.isRunning)||((J=h[t==null?void 0:t.capturePid])==null?void 0:J.isRunning))&&n("button",{onClick:()=>{const F=[t==null?void 0:t.analyzerPid,t==null?void 0:t.capturePid].filter(z=>{var A;return!!z&&((A=h[z])==null?void 0:A.isRunning)});if(F.length===0)return;const H=F.join(", ");if(!confirm(`Are you sure you want to kill all running processes (${H})?`))return;g({isKilling:!0,current:1,total:F.length}),(async()=>{for(let z=0;z<F.length;z++){const A=F[z];try{await fetch("/api/kill-process",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({pid:A,commitSha:a||""})})}catch(Y){console.error(`Failed to kill process ${A}:`,Y)}z<F.length-1&&g({isKilling:!0,current:z+2,total:F.length})}g({isKilling:!1,current:0,total:0}),y.revalidate()})()},disabled:f.isKilling,className:"px-[8px] rounded-[4px] transition-colors whitespace-nowrap cursor-pointer disabled:opacity-50 disabled:cursor-not-allowed",style:{backgroundColor:"#991b1b",color:"white",fontSize:"12px",lineHeight:"15px",fontWeight:500,height:"27px",width:"114px"},children:f.isKilling?"Killing...":"Kill All Processes"})]})]}):d("div",{className:"border border-dashed border-[#BCCDD3] rounded-xl p-6 flex items-center justify-between",style:{backgroundColor:"#EDEFF0",backgroundImage:"radial-gradient(circle, rgba(0,0,0,0.03) 1px, transparent 1px)",backgroundSize:"20px 20px",borderWidth:"1px",borderStyle:"dashed"},children:[d("div",{className:"flex items-center gap-4",children:[n("div",{className:"w-12 h-12 bg-[#DEE3E5] border border-[#BBCCD3] rounded-full flex items-center justify-center flex-shrink-0",children:n(zl,{size:24,style:{color:"#005C75"}})}),d("div",{children:[n("h3",{className:"text-base font-medium mb-1",style:{color:"#3E3E3E"},children:"No Current Activity"}),d("p",{className:"text-sm",style:{color:"#8e8e8e"},children:["There are no analyses running. Trigger one from"," ",n(ve,{to:"/git",className:"text-[#005C75] hover:underline font-medium cursor-pointer",children:"Git"})," ","or"," ",n(ve,{to:"/files",className:"text-[#005C75] hover:underline font-medium cursor-pointer",children:"Files"}),"."]})]})]}),d(ve,{to:"/files",className:"px-4 py-2 bg-[#005C75] text-white rounded-lg text-sm font-medium hover:bg-[#004a5e] transition-colors flex items-center gap-2 whitespace-nowrap no-underline",children:[n("span",{children:"+"}),n("span",{children:"New Analysis"})]})]}),i&&i.length>0&&d("div",{children:[n("h3",{className:"font-mono uppercase",style:{fontSize:"12px",lineHeight:"18px",color:"#8e8e8e",marginBottom:"16px",fontWeight:500,letterSpacing:"0.05em"},children:"Recently Completed Analyses"}),d("div",{className:"flex flex-col gap-4",children:[(j?i:i.slice(0,3)).map(F=>{var z;const H=(z=F.analyses)==null?void 0:z[0],U=(H==null?void 0:H.scenarios)||[];return H==null||H.status,n("div",{className:"rounded-[8px] p-[15px]",style:{backgroundColor:"#ffffff",border:"1px solid #aff1a9"},children:d("div",{className:"flex flex-col gap-[15px]",children:[d("div",{className:"flex items-center",children:[n("div",{className:"flex-shrink-0",children:n(ut,{type:F.entityType||"other",size:"large"})}),d("div",{className:"flex flex-col flex-shrink-0",style:{marginLeft:"15px",gap:"4px"},children:[d("div",{className:"flex items-center gap-[5px]",children:[n(ve,{to:`/entity/${F.sha}`,className:"hover:underline cursor-pointer",title:F.name,style:{fontSize:"14px",lineHeight:"18px",color:"#343434",fontWeight:500},children:F.name}),n("div",{className:"flex items-center justify-center px-2 rounded",style:{height:"20px",backgroundColor:"#e8ffe6",color:"#00925d",fontSize:"12px",lineHeight:"16px",fontWeight:400},children:F.isUncommitted?"Modified":"Up to date"})]}),n("div",{style:{fontSize:"12px",lineHeight:"15px",color:"#8e8e8e",fontWeight:400},className:"font-mono",title:F.filePath,children:F.filePath})]}),n("div",{className:"flex-1"}),n("div",{className:"flex-shrink-0",children:n("button",{onClick:o,className:"px-[10px] rounded transition-colors whitespace-nowrap",style:{backgroundColor:"#e0e9ec",color:"#005c75",fontSize:"10px",lineHeight:"22px",fontWeight:600},onMouseEnter:A=>{A.currentTarget.style.backgroundColor="#d0dfe3"},onMouseLeave:A=>{A.currentTarget.style.backgroundColor="#e0e9ec"},children:"View Logs"})})]}),n("div",{className:"border-t border-gray-200 mx-[-15px]"}),U.length>0?n("div",{className:"flex gap-2.5 overflow-x-auto pb-3 px-[15px] pt-3",style:{paddingLeft:"47px"},children:U.map(A=>{var Q,B,D;if(!A.id)return null;const Y=(B=(Q=A.metadata)==null?void 0:Q.screenshotPaths)==null?void 0:B[0],V=(D=A.metadata)==null?void 0:D.noScreenshotSaved,W=Y&&!V;return d("div",{className:"shrink-0 flex flex-col gap-2",children:[n(ve,{to:`/entity/${F.sha}/scenarios/${A.id}`,className:"block cursor-pointer",children:n("div",{className:"w-36 h-24 rounded-md border overflow-hidden flex items-center justify-center transition-all",style:{backgroundColor:W?"#f3f4f6":"#FAFAFA",borderColor:W?"#d1d5db":"#BCCDD3",borderStyle:W?"solid":"dashed"},onMouseEnter:O=>{W&&(O.currentTarget.style.borderColor="#005C75",O.currentTarget.style.boxShadow="0 4px 12px rgba(0, 92, 117, 0.15)")},onMouseLeave:O=>{O.currentTarget.style.borderColor=W?"#d1d5db":"#BCCDD3",O.currentTarget.style.boxShadow="none"},children:W?n(rt,{screenshotPath:Y,alt:A.name,className:"max-w-full max-h-full object-contain"}):n("div",{className:"w-full h-full flex items-center justify-center font-mono",style:{backgroundImage:"radial-gradient(circle, rgba(0,0,0,0.02) 1px, transparent 1px)",backgroundSize:"20px 20px",color:"#b0b0b0",fontSize:"11px"},children:"No preview"})})}),n("div",{className:"text-left text-xs text-gray-600 cursor-default",style:{fontSize:"11px",lineHeight:"14px",maxWidth:"144px",overflow:"hidden",textOverflow:"ellipsis",whiteSpace:"nowrap"},children:A.name})]},A.id)})}):n("div",{className:"italic",style:{fontSize:"12px",color:"#646464",marginLeft:"49px"},children:"No scenarios available"})]})},F.sha)}),i.length>3&&!j&&d("button",{onClick:()=>$(!0),className:"flex items-center justify-center bg-gray-50 border border-gray-200 rounded-[4px] hover:bg-gray-100 hover:border-gray-300 transition-colors cursor-pointer w-full",style:{height:"60px",fontSize:"14px",color:"#646464",fontWeight:500},children:["+",i.length-3," more"," ",i.length-3===1?"entity":"entities"]}),j&&i.length>3&&n("button",{onClick:()=>$(!1),className:"flex items-center justify-center bg-gray-50 border border-gray-200 rounded-[4px] hover:bg-gray-100 hover:border-gray-300 transition-colors cursor-pointer w-full",style:{height:"60px",fontSize:"14px",color:"#646464",fontWeight:500},children:"Show less"})]})]})]})}function Hv({queueJobs:e,state:t,currentRun:r}){if(!e||e.length===0)return d("div",{className:"border border-dashed border-[#BCCDD3] rounded-xl p-6 flex items-center justify-between",style:{backgroundColor:"#EDEFF0",backgroundImage:"radial-gradient(circle, rgba(0,0,0,0.03) 1px, transparent 1px)",backgroundSize:"20px 20px",borderWidth:"1px",borderStyle:"dashed"},children:[d("div",{className:"flex items-center gap-4",children:[n("div",{className:"w-12 h-12 bg-[#DEE3E5] border border-[#BBCCD3] rounded-full flex items-center justify-center flex-shrink-0",children:n(Bu,{size:24,style:{color:"#005C75"}})}),d("div",{children:[n("h3",{className:"text-base font-medium mb-1",style:{color:"#3E3E3E"},children:"No Queued Jobs"}),n("p",{className:"text-sm",style:{color:"#8e8e8e"},children:"Analysis jobs will appear here when they are queued but not yet started."})]})]}),d(ve,{to:"/files",className:"px-4 py-2 bg-[#005C75] text-white rounded-lg text-sm font-medium hover:bg-[#004a5e] transition-colors flex items-center gap-2 whitespace-nowrap no-underline",children:[n("span",{children:"+"}),n("span",{children:"New Analysis"})]})]});const[s,a]=M(null),[o,i]=M(null),[l,c]=M(null),[p,u]=M(!1),[h,m]=M(!1),[f,g]=M(new Set),y=Yt();se(()=>{e.length<=3&&h&&m(!1)},[e.length,h]);const x=E=>{a(E)},w=(E,C)=>{E.preventDefault(),i(C)},b=async(E,C)=>{if(E.preventDefault(),!s){i(null);return}const S=e.findIndex($=>$.id===s);if(S===-1){a(null),i(null);return}if(S===C){a(null),i(null);return}const _=S<C?"down":"up",j=Math.abs(C-S);u(!0);try{for(let $=0;$<j;$++)await fetch("/api/queue",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({action:"reorder",jobId:s,direction:_})});y.revalidate()}catch($){console.error("Failed to reorder job:",$)}finally{u(!1),a(null),i(null)}},v=()=>{p||(a(null),i(null))},N=async E=>{if(confirm("Are you sure you want to cancel this job?"))try{await fetch("/api/queue",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({action:"remove",jobId:E})}),window.location.reload()}catch(C){console.error("Failed to cancel job:",C)}},k=async()=>{if(confirm(`Are you sure you want to cancel all ${e.length} queued jobs?`))try{await fetch("/api/queue",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({action:"clear"})}),window.location.reload()}catch(E){console.error("Failed to cancel jobs:",E)}};return d("div",{children:[d("div",{className:"flex items-center justify-between mb-4",children:[d("h3",{className:"font-semibold",style:{fontSize:"16px",lineHeight:"24px",color:"#343434"},children:[e.length," Queued Job",e.length!==1?"s":""]}),e.length>0&&n("button",{onClick:()=>void k(),className:"px-[10px] py-0 rounded transition-colors cursor-pointer hover:bg-red-300",style:{backgroundColor:"#ffdcd9",color:"#ef4444",fontSize:"12px",fontWeight:500,height:"29px"},children:"Cancel All"})]}),d("div",{className:"flex flex-col gap-3",children:[(h?e:e.slice(0,3)).map(E=>{var I,R,T,G;const C=e.findIndex(J=>J.id===E.id),S=l===C,_=s===E.id,j=o===C,$=f.has(E.id),P=((I=E.entities)==null?void 0:I.length)>0?$?E.entities:E.entities.slice(0,3):[];return d("div",{className:"rounded-lg p-4 relative",style:{backgroundColor:"#f6f9fc",border:"1px solid #005C75",opacity:_||p?.5:1,transform:j&&s!==null&&!_?"translateY(-2px)":"translateY(0)",transition:"transform 0.2s ease, opacity 0.2s ease",cursor:p?"not-allowed":_?"grabbing":"grab"},onMouseEnter:()=>c(C),onMouseLeave:()=>c(null),draggable:!p,onDragStart:J=>{x(E.id),J.dataTransfer.effectAllowed="move"},onDragOver:J=>w(J,C),onDrop:J=>void b(J,C),onDragEnd:v,children:[d("div",{className:"absolute left-4 top-4 flex items-center gap-1.5 flex-shrink-0",children:[n(Yu,{size:16,style:{color:"#005C75"}}),d("span",{style:{fontSize:"14px",fontWeight:500,lineHeight:"18px",color:"#005C75"},children:["Job ",C+1]})]}),d("div",{className:"flex flex-col gap-2 mt-8",children:[P.length>0?d(ye,{children:[P.map(J=>n("div",{className:"bg-white rounded",style:{border:"1px solid #e1e1e1",height:"60px"},children:n("div",{className:"flex items-center justify-between h-full px-[15px]",children:d("div",{className:"flex items-center gap-3 flex-1",children:[n("div",{children:n(ut,{type:J.entityType||"other",size:"large"})}),d("div",{className:"flex-1",children:[d("div",{className:"flex items-center gap-2 mb-1",children:[n(ve,{to:`/entity/${J.sha}`,className:"hover:underline cursor-pointer",style:{fontSize:"14px",lineHeight:"18px",fontWeight:500,color:"#000"},children:J.name}),J.entityType&&n(Jo,{type:J.entityType})]}),n("div",{className:"font-mono",style:{fontSize:"12px",lineHeight:"15px",color:"#8e8e8e"},children:J.filePath})]})]})})},J.sha)),((R=E.entities)==null?void 0:R.length)>3&&n("button",{onClick:()=>{g(J=>{const F=new Set(J);return F.has(E.id)?F.delete(E.id):F.add(E.id),F})},className:"flex items-center justify-center bg-gray-50 border border-gray-200 rounded-[4px] hover:bg-gray-100 hover:border-gray-300 transition-colors cursor-pointer w-full",style:{height:"40px",fontSize:"12px",color:"#646464",fontWeight:500},children:$?"Show less":`+${E.entities.length-3} more ${E.entities.length-3===1?"entity":"entities"}`})]}):n("div",{className:"bg-white rounded",style:{border:"1px solid #e1e1e1",height:"60px"},children:n("div",{className:"flex items-center justify-between h-full px-[15px]",children:d("div",{className:"flex items-center gap-3 flex-1",children:[n("div",{style:{transform:"scale(1.0)"},children:n(us,{size:18,style:{color:"#8e8e8e"}})}),d("div",{className:"flex-1",children:[n("div",{style:{fontSize:"14px",lineHeight:"18px",fontWeight:500,color:"#000"},children:((T=E.entityNames)==null?void 0:T[0])||(E.type==="analysis"?"Analysis Job":E.type==="recapture"?"Recapture Job":E.type==="debug-setup"?"Debug Setup":E.type.charAt(0).toUpperCase()+E.type.slice(1))}),n("div",{style:{fontSize:"12px",lineHeight:"15px",color:"#8e8e8e"},children:((G=E.filePaths)==null?void 0:G[0])||(E.filePaths&&E.filePaths.length>1?`${E.filePaths.length} files`:E.entityShas&&E.entityShas.length>0?`${E.entityShas.length} ${E.entityShas.length===1?"entity":"entities"}`:"Queued for processing")})]})]})})}),d("div",{className:"flex items-center justify-end gap-2 mt-1",children:[S&&n("div",{className:"cursor-grab active:cursor-grabbing",style:{color:"#8e8e8e"},title:"Drag to reorder",children:n(Uu,{size:20})}),n("button",{onClick:()=>void N(E.id),className:"transition-colors cursor-pointer hover:bg-red-100 rounded flex items-center justify-center",style:{fontSize:"10px",fontWeight:600,lineHeight:"22px",color:"#ef4444",backgroundColor:"#fef6f6",padding:"0 10px",height:"22px"},children:"Cancel"})]})]})]},E.id)}),e.length>3&&!h&&d("button",{onClick:()=>m(!0),className:"flex items-center justify-center bg-gray-50 border border-gray-200 rounded-[4px] hover:bg-gray-100 hover:border-gray-300 transition-colors cursor-pointer w-full",style:{height:"60px",fontSize:"14px",color:"#646464",fontWeight:500},children:["+",e.length-3," more"," ",e.length-3===1?"job":"jobs"]}),h&&e.length>3&&n("button",{onClick:()=>m(!1),className:"flex items-center justify-center bg-gray-50 border border-gray-200 rounded-[4px] hover:bg-gray-100 hover:border-gray-300 transition-colors cursor-pointer w-full",style:{height:"60px",fontSize:"14px",color:"#646464",fontWeight:500},children:"Show less"})]})]})}function Vv({historicalRuns:e,totalHistoricalRuns:t,currentPage:r,totalPages:s,tab:a,onShowLogs:o}){if(t===0)return d("div",{className:"border border-dashed border-[#BCCDD3] rounded-xl p-6 flex items-center justify-between",style:{backgroundColor:"#EDEFF0",backgroundImage:"radial-gradient(circle, rgba(0,0,0,0.03) 1px, transparent 1px)",backgroundSize:"20px 20px",borderWidth:"1px",borderStyle:"dashed"},children:[d("div",{className:"flex items-center gap-4",children:[n("div",{className:"w-12 h-12 bg-[#DEE3E5] border border-[#BBCCD3] rounded-full flex items-center justify-center flex-shrink-0",children:n(Wu,{size:24,style:{color:"#005C75"}})}),d("div",{children:[n("h3",{className:"text-base font-medium mb-1",style:{color:"#3E3E3E"},children:"No Historic Activity"}),n("p",{className:"text-sm",style:{color:"#8e8e8e"},children:"Completed analyses will appear here for historical reference."})]})]}),d(ve,{to:"/files",className:"px-4 py-2 bg-[#005C75] text-white rounded-lg text-sm font-medium hover:bg-[#004a5e] transition-colors flex items-center gap-2 whitespace-nowrap no-underline",children:[n("span",{children:"+"}),n("span",{children:"New Analysis"})]})]});const[i,l]=M(!1),c=[];e.forEach(u=>{u.entities&&u.entities.length>0&&u.entities.forEach(h=>{c.push({...h,runCreatedAt:u.createdAt})})});const p=i?c:c.slice(0,3);return d("div",{className:"flex flex-col gap-4",children:[p.map(u=>{var g;const h=(g=u.analyses)==null?void 0:g[0],m=(h==null?void 0:h.scenarios)||[],f=!u.isUncommitted;return d("div",{className:"rounded-lg p-4",style:{backgroundColor:f?"#ffffff":"#fef9e7",border:"1px solid",borderColor:f?"#aff1a9":"#f9d689"},children:[d("div",{className:"flex items-start justify-between mb-3",children:[d("div",{className:"flex items-start gap-3 flex-1",children:[n("div",{children:n(ut,{type:u.entityType||"other",size:"large"})}),d("div",{className:"flex-1",children:[d("div",{className:"flex items-center gap-2 mb-1",children:[n(ve,{to:`/entity/${u.sha}`,className:"hover:underline cursor-pointer",style:{fontSize:"14px",lineHeight:"18px",fontWeight:500,color:"#343434"},children:u.name}),n("div",{className:"px-2 py-0.5 rounded",style:{backgroundColor:f?"#e8ffe6":"#fef3cd",color:f?"#00925d":"#a16207",fontSize:"12px",fontWeight:400},children:f?"Up to date":"Out of date"})]}),n("div",{className:"font-mono",style:{fontSize:"12px",lineHeight:"15px",color:"#8e8e8e"},title:u.filePath,children:u.filePath})]})]}),n("button",{onClick:o,className:"px-3 py-1 rounded transition-colors whitespace-nowrap cursor-pointer",style:{backgroundColor:"#e0e9ec",color:"#005c75",fontSize:"10px",fontWeight:600},children:"View Logs"})]}),m.length>0&&d("div",{className:"flex gap-2 overflow-x-auto",style:{marginLeft:"44px"},children:[m.slice(0,8).map(y=>{var v,N,k;if(!y.id)return null;const x=(N=(v=y.metadata)==null?void 0:v.screenshotPaths)==null?void 0:N[0],w=(k=y.metadata)==null?void 0:k.noScreenshotSaved,b=x&&!w;return n(ve,{to:`/entity/${u.sha}/scenarios/${y.id}`,className:"border rounded overflow-hidden flex-shrink-0 cursor-pointer",style:{width:"120px",height:"80px",borderColor:b?"#ccc":"#BCCDD3",borderStyle:b?"solid":"dashed"},children:b?n(rt,{screenshotPath:x,alt:y.name,className:"w-full h-full object-cover bg-gray-100"}):n("div",{className:"w-full h-full flex items-center justify-center font-mono",style:{backgroundColor:"#FAFAFA",backgroundImage:"radial-gradient(circle, rgba(0,0,0,0.02) 1px, transparent 1px)",backgroundSize:"20px 20px",color:"#b0b0b0",fontSize:"11px"},children:"No preview"})},y.id)}),m.length>8&&d("div",{className:"flex items-center justify-center flex-shrink-0",style:{width:"120px",height:"80px",fontSize:"12px",color:"#646464"},children:["+",m.length-8," more"]})]})]},`${u.sha}-${u.runCreatedAt}`)}),c.length>3&&!i&&d("button",{onClick:()=>l(!0),className:"flex items-center justify-center bg-gray-50 border border-gray-200 rounded-[4px] hover:bg-gray-100 hover:border-gray-300 transition-colors cursor-pointer w-full",style:{height:"60px",fontSize:"14px",color:"#646464",fontWeight:500},children:["+",c.length-3," more"," ",c.length-3===1?"entity":"entities"]}),i&&c.length>3&&n("button",{onClick:()=>l(!1),className:"flex items-center justify-center bg-gray-50 border border-gray-200 rounded-[4px] hover:bg-gray-100 hover:border-gray-300 transition-colors cursor-pointer w-full",style:{height:"60px",fontSize:"14px",color:"#646464",fontWeight:500},children:"Show less"})]})}const Gv=Qe(function(){const t=tt(),r=Ol(),[s,a]=M(!1);$t({source:"activity-page"});const o=r.tab||"current";return t?d("div",{className:"px-20 py-12",children:[d("div",{className:"mb-8",children:[n("h1",{className:"text-[28px] font-semibold text-gray-900 mb-2",children:"Activity"}),n("p",{className:"text-[15px] text-gray-500",children:"View queued, current, and historical analysis activity."})]}),n(Wv,{activeTab:o,hasCurrentActivity:t.hasCurrentActivity,queuedCount:t.queuedCount,historicCount:t.totalHistoricalRuns}),o==="current"&&n(Jv,{currentlyExecuting:t.currentlyExecuting,currentRun:t.currentRun,state:t.state,projectSlug:t.projectSlug,commitSha:t.commitSha,onShowLogs:()=>a(!0),recentCompletedEntities:t.recentCompletedEntities||[],hasMoreCompletedRuns:t.hasMoreCompletedRuns||!1,currentEntityScenarios:t.currentEntityScenarios||[],currentEntityForScenarios:t.currentEntityForScenarios,currentAnalysisStatus:t.currentAnalysisStatus}),o==="queued"&&n(Hv,{queueJobs:t.queueJobs,state:t.state,currentRun:t.currentRun}),o==="historic"&&n(Vv,{historicalRuns:t.historicalRuns,totalHistoricalRuns:t.totalHistoricalRuns,currentPage:t.currentPage,totalPages:t.totalPages,tab:o,onShowLogs:()=>a(!0)}),s&&t.projectSlug&&n(Qt,{projectSlug:t.projectSlug,onClose:()=>a(!1)})]}):n("div",{className:"px-20 py-12",children:n("div",{className:"text-center",children:n("p",{className:"text-gray-600",children:"Loading..."})})})}),Kv=Object.freeze(Object.defineProperty({__proto__:null,default:Gv,loader:Uv,meta:Yv},Symbol.toStringTag,{value:"Module"}));async function Ed(e,t,r){var N,k;await Ue();const s=await Jt({id:e,includeScenarios:!0,includeCommitAndBranch:!0});if(!s)throw new Error(`Analysis ${e} not found`);if(!s.commit)throw new Error(`Commit not found for analysis ${e}`);const a=we();if(!a)throw new Error("Project root not found");const o=L.join(a,".codeyam","config.json"),i=JSON.parse(K.readFileSync(o,"utf8")),{projectSlug:l}=i;if(!l)throw new Error("Project slug not found in config");const c=Ds(l);try{K.writeFileSync(c,"","utf8")}catch{}const{project:p}=await Oe(l),u=((N=p.metadata)==null?void 0:N.packageManager)||"npm",h=3112,m=jt(l),f=((k=p.metadata)==null?void 0:k.webapps)||[];if(f.length===0)throw new Error(`No webapps found in project metadata for project ${l}`);const g=i.environmentVariables||[],y=Wh({filePath:s.filePath,webapps:f,environmentVariables:g,port:h,packageManager:u});await Jn(e,E=>{if(E&&(E.readyToBeCaptured=!0,E.scenarios))for(const C of E.scenarios)(!t||C.name===t)&&(delete C.screenshotStartedAt,delete C.screenshotFinishedAt,delete C.interactiveStartedAt,delete C.interactiveFinishedAt,delete C.error,delete C.errorStack)});const{jobId:x}=r.enqueue({type:"debug-setup",commitSha:s.commit.sha,projectSlug:l,analysisId:e,scenarioId:t,prepOnly:!0}),w=y.startCommand,b={title:"Debug Setup In Progress",sections:[{heading:"Status",items:[{content:"Setting up debug environment... This may take a minute."},{label:"Project Path",content:m}]},{heading:"What's Happening",items:[{content:"1. Preparing analyzer and dependencies"},{content:"2. Syncing project files"},{content:"3. Setting up mock environment"}]},{heading:"Next Steps (Once Complete)",items:[{label:"1. Open the project directory",content:`code ${m}`,isCode:!0},{label:"2. Start the development server (copy & paste this exact command)",content:w,isCode:!0},{label:"3. View the scenario in your browser",content:`http://localhost:${h}/static/codeyam-sample`,isLink:!0}]}]};return{success:!0,jobId:x,analysisId:e,scenarioId:t,projectPath:m,projectSlug:l,port:h,packageManager:u,framework:y.framework,instructions:b}}async function qv({request:e,context:t}){const r=new URL(e.url),s=r.searchParams.get("analysisId"),a=r.searchParams.get("scenarioId")||void 0;if(!s)return X({error:"Missing analysisId parameter",usage:"GET /api/debug-setup?analysisId=<uuid>&scenarioId=<uuid>",example:'curl "http://localhost:3111/api/debug-setup?analysisId=f35509cb-b8f1-4d86-998e-fc24201ae2c7"'},{status:400});let o=t.analysisQueue;if(o||(o=await Ht()),!o)return X({error:"Queue not initialized"},{status:500});console.log("[Debug Setup API] GET request for:",{analysisId:s,scenarioId:a});try{const i=await Ed(s,a,o);return X({...i,success:!0,message:"Debug setup queued"})}catch(i){return console.error("[Debug Setup API] GET Error:",i),X({error:"Failed to setup debug environment",details:i.message},{status:500})}}async function Qv({request:e,context:t}){if(e.method!=="POST")return X({error:"Method not allowed"},{status:405});let r=t.analysisQueue;if(r||(r=await Ht()),!r)return X({error:"Queue not initialized"},{status:500});try{const s=await e.formData(),a=s.get("analysisId"),o=s.get("scenarioId");if(!a)return X({error:"Missing required field: analysisId"},{status:400});const i=await Ed(a,o,r);return X({...i,success:!0,message:"Debug setup queued"})}catch(s){console.error("[Debug Setup API] Error during debug setup:",s);const a=s instanceof Error?s.message:String(s),o=s instanceof Error?s.stack:void 0;return console.error("[Debug Setup API] Error stack:",o),X({error:"Failed to setup debug environment",details:a},{status:500})}}const Zv=Object.freeze(Object.defineProperty({__proto__:null,action:Qv,loader:qv},Symbol.toStringTag,{value:"Module"}));function Xv({request:e}){const r=new URL(e.url).searchParams.get("path");if(!r)return new Response("Missing path parameter",{status:400});const s=we()||process.cwd(),a=L.resolve(s,r);if(!a.startsWith(s+L.sep)&&a!==s)return new Response("Path outside project root",{status:403});try{const o=K.readFileSync(a,"utf8");return new Response(o,{headers:{"Content-Type":"text/plain; charset=utf-8"}})}catch{return new Response("File not found",{status:404})}}const eN=Object.freeze(Object.defineProperty({__proto__:null,loader:Xv},Symbol.toStringTag,{value:"Module"})),tN=process.env.LABS_UNLOCK_SALT||"codeyam-labs-default-salt";function Ad(e){const t=up("sha256",tN);return t.update(e),`CY-${t.digest("hex").slice(0,16)}`}function nN(e,t){return t===Ad(e)}async function rN({request:e}){if(e.method!=="POST")return X({error:"Method not allowed"},{status:405});try{const r=(await e.formData()).get("unlockCode");if(!r)return X({success:!1,error:"Unlock code is required"},{status:400});const s=await ze();return s?nN(s,r)?(await Ln({projectSlug:s,metadataUpdate:{labs:{accessGranted:!0,simulations:!0}}}),X({success:!0})):X({success:!1,error:"Invalid unlock code"},{status:400}):X({success:!1,error:"Project not found"},{status:404})}catch(t){return console.error("[Labs Unlock] Error:",t),X({success:!1,error:"Failed to validate unlock code. Please try again."},{status:500})}}const sN=Object.freeze(Object.defineProperty({__proto__:null,action:rN},Symbol.toStringTag,{value:"Module"}));async function aN({request:e,context:t}){if(e.method!=="POST")return X({error:"Method not allowed"},{status:405});let r=t.analysisQueue;if(r||(r=await Ht()),!r)return X({error:"Queue not initialized"},{status:500});try{const s=await e.formData(),a=s.get("analysisId"),o=s.get("defaultWidth");if(!a||!o)return X({error:"Missing required fields: analysisId and defaultWidth"},{status:400});const i=parseInt(o,10);if(isNaN(i)||i<320||i>3840)return X({error:"Invalid defaultWidth: must be between 320 and 3840"},{status:400});console.log(`[API] Starting recapture for analysis ${a} with width ${i}`);const l=await Ab(a,i,r);return console.log("[API] Recapture queued",l),X({success:!0,message:"Recapture queued",...l})}catch(s){return console.log("[API] Error during recapture:",s),X({error:"Failed to recapture screenshots",details:s instanceof Error?s.message:String(s)},{status:500})}}const oN=Object.freeze(Object.defineProperty({__proto__:null,action:aN},Symbol.toStringTag,{value:"Module"}));function iN(e){if(e.length===0)throw new Error("paths array must not be empty");return e.map(lN).map(a=>a===""?[]:a.split("/")).reduce((a,o)=>{const i=[];for(let l=0;l<Math.min(a.length,o.length)&&a[l]===o[l];l++)i.push(a[l]);return i}).join("/")}function lN(e){const r=e.replace(/\/+$/,"").split("/");for(;r.length>0;){const s=r[r.length-1];if(cN(s))r.pop();else break}return r.join("/")}function cN(e){return!!(e.includes("*")||/\.\w+$/.test(e))}function dN({request:e}){const r=new URL(e.url).searchParams.getAll("paths");if(r.length===0)return Response.json({error:"Missing required query parameter: paths"},{status:400});const s=iN(r),a=s?`.claude/rules/${s}/`:".claude/rules/";return Response.json({result:a})}const uN=Object.freeze(Object.defineProperty({__proto__:null,loader:dN},Symbol.toStringTag,{value:"Module"}));function pN(e,t){var i,l,c,p,u;const r=((i=e.metadata)==null?void 0:i.isUncommitted)===!0,s=e.analyses&&e.analyses.length>0&&e.analyses.some(h=>h.scenarios&&h.scenarios.length>0);if(!r){const h=!!((l=e.metadata)!=null&&l.previousVersionWithAnalyses),m=s&&e.analyses&&e.analyses.length>0&&e.analyses[0].entitySha!==e.sha;return h||m?s?{state:"committed_no_simulations",hasSimulations:!0,hasOutdatedSimulations:!0,canGenerateSimulations:!0,badge:{label:"Committed - Simulations Outdated",color:"text-orange-700",bgColor:"bg-orange-50",borderColor:"border-orange-300",icon:"⚠"}}:{state:"committed_no_simulations",hasSimulations:!1,hasOutdatedSimulations:!1,canGenerateSimulations:!0,badge:{label:"Not Yet Analyzed",color:"text-gray-600",bgColor:"bg-gray-50",borderColor:"border-gray-200",icon:"○"}}:s?{state:"committed_with_simulations",hasSimulations:!0,hasOutdatedSimulations:!1,canGenerateSimulations:!1,badge:{label:"Up to date",color:"text-green-700",bgColor:"bg-green-50",borderColor:"border-green-200",icon:"✓"}}:{state:"committed_no_simulations",hasSimulations:!1,hasOutdatedSimulations:!1,canGenerateSimulations:!0,badge:{label:"Not analyzed",color:"text-gray-600",bgColor:"bg-gray-50",borderColor:"border-gray-200",icon:"○"}}}const a=!!((c=e.metadata)!=null&&c.previousCommittedSha);if(!!((p=e.metadata)!=null&&p.previousVersionWithAnalyses)||a){const h=s&&e.analyses&&e.analyses.length>0&&e.analyses[0].entitySha===((u=e.metadata)==null?void 0:u.previousVersionWithAnalyses);return s&&!h?{state:"uncommitted_with_new_simulations",hasSimulations:!0,hasOutdatedSimulations:!1,canGenerateSimulations:!1,badge:{label:"Up-to-date Simulations",color:"text-green-700",bgColor:"bg-green-50",borderColor:"border-green-200",icon:"●"}}:s?{state:"uncommitted_outdated_simulations",hasSimulations:!0,hasOutdatedSimulations:!0,canGenerateSimulations:!0,badge:{label:"Edited - Simulations Outdated",color:"text-amber-700",bgColor:"bg-amber-50",borderColor:"border-amber-300",icon:"⚠"}}:{state:"uncommitted_outdated_simulations",hasSimulations:!1,hasOutdatedSimulations:!1,canGenerateSimulations:!0,badge:{label:"Not Analyzed",color:"text-gray-600",bgColor:"bg-gray-50",borderColor:"border-gray-200",icon:"○"}}}else return s?{state:"uncommitted_with_new_simulations",hasSimulations:!0,hasOutdatedSimulations:!1,canGenerateSimulations:!1,badge:{label:"Up-to-date Simulations",color:"text-green-700",bgColor:"bg-green-50",borderColor:"border-green-200",icon:"●"}}:{state:"uncommitted_no_previous_simulations",hasSimulations:!1,hasOutdatedSimulations:!1,canGenerateSimulations:!0,badge:{label:"New",color:"text-purple-700",bgColor:"bg-purple-50",borderColor:"border-purple-200",icon:"+"}}}function hN(e){return pN(e).hasOutdatedSimulations}function Qs(e,t,r,s,a){var J,F,H,U,z,A,Y,V;const o=(J=t==null?void 0:t.scenarios)==null?void 0:J.find(W=>W.name===e.name),i=!!(o!=null&&o.startedAt),l=!!(o!=null&&o.screenshotStartedAt),c=!!(o!=null&&o.screenshotFinishedAt),p=!!(o!=null&&o.finishedAt),u=1800*1e3,h=l&&!c&&(o==null?void 0:o.screenshotStartedAt)&&Date.now()-new Date(o.screenshotStartedAt).getTime()>u,m=!!((H=(F=e.metadata)==null?void 0:F.screenshotPaths)!=null&&H[0])||!!((U=e.metadata)!=null&&U.executionResult),f=l&&!c,g=o==null?void 0:o.error,y=(A=(z=e.metadata)==null?void 0:z.executionResult)==null?void 0:A.error,x=[];if(t!=null&&t.errors&&t.errors.length>0)for(const W of t.errors)x.push({source:`${W.phase} phase`,message:W.message});if(t!=null&&t.steps)for(const W of t.steps)W.error&&x.push({source:W.name,message:W.error});const w=!m&&!g&&!y&&x.length>0,b=!!(g||y||h||w),v=h?"Capture timed out after 30 minutes":(typeof g=="string"?g:null)||(y==null?void 0:y.message)||(w?`Analysis error: ${x[0].message}`:null),N=h?"The capture process has been running for more than 30 minutes and likely got stuck. Consider re-running the analysis.":(o==null?void 0:o.errorStack)||(y==null?void 0:y.stack)||null,E=(s&&a?a.jobs.some(W=>{var Q;return((Q=W.entityShas)==null?void 0:Q.includes(s))||W.type==="analysis"&&W.entityShas&&W.entityShas.length===0})||((V=(Y=a.currentlyExecuting)==null?void 0:Y.entityShas)==null?void 0:V.includes(s)):!1)&&!i&&!b||!!(o!=null&&o.analyzing)&&!i&&!b,C=i&&!l&&!p&&!b,S=(E||C||f)&&!b,_=(E||C)&&r===!1&&!m;let j;_?j="crashed":b?j="error":m||p?j="completed":f?j="capturing":C?j="starting":E?j="queued":j="pending";let $="📷",P="pending",I=!1,R=`Not captured: ${e.name}`;const T="border-gray-300",G=b||_?"bg-red-50":"bg-white";return b||_?($="⚠️",P="error",R=`Error: ${_?"Analysis process crashed":v||"Unknown error"}`):E?($="⋯",P="queued",R=`Queued: ${e.name}`):C?($="⋯",P="starting",I=!0,R=`Starting server for ${e.name}...`):f&&!b?($="⋯",P="capturing",I=!0,R=`Capturing ${e.name}...`):m&&($="✓",P="completed",R=e.name),{hasError:b||_,errorMessage:_?"Analysis process crashed":v,errorStack:_?"Process terminated unexpectedly before completing analysis":N,isCapturing:f,isCaptured:m,hasCrashed:_,isAnalyzing:S,isQueued:E,isServerStarting:C,status:j,icon:$,iconType:P,shouldSpin:I,title:R,borderColor:T,bgColor:G}}function Pd({scenario:e,entitySha:t,size:r="medium",showBorder:s=!0,isOutdated:a=!1}){var N,k,E,C,S,_;const o=Qs(e,void 0,void 0,t,void 0),i=(N=e.metadata)==null?void 0:N.executionResult,l=!!i,p=(((E=(k=e.metadata)==null?void 0:k.data)==null?void 0:E.argumentsData)||[]).length,u=(i==null?void 0:i.returnValue)!==void 0&&(i==null?void 0:i.returnValue)!==null,h=((S=(C=i==null?void 0:i.sideEffects)==null?void 0:C.consoleOutput)==null?void 0:S.length)||0,m=((_=i==null?void 0:i.timing)==null?void 0:_.duration)||0;let f=0;p>0&&f++,p>2&&f++,u&&f++,h>0&&f++,f=Math.min(3,f);const g=r==="small"?{width:"w-[50px]",height:"h-[38px]",iconSize:"text-base",textSize:"text-[8px]"}:{width:"w-20",height:"h-15",iconSize:"text-xl",textSize:"text-[10px]"},x=o.hasError?{border:"border-red-400",bg:"bg-red-50",icon:"text-red-600",badge:"bg-red-100 text-red-700"}:l?a?{border:"border-amber-500",bg:"bg-amber-50",icon:"text-amber-700",badge:"bg-amber-100 text-amber-700"}:{border:"border-blue-400",bg:"bg-blue-50",icon:"text-blue-600",badge:"bg-blue-100 text-blue-700"}:{border:"border-gray-300 border-dashed",bg:"bg-gray-50",icon:"text-gray-400",badge:"bg-gray-100 text-gray-600"},w=s?`border-2 ${x.border}`:"",b=Array.from({length:3},(j,$)=>n("div",{className:`w-1 h-1 rounded-full ${$<f?x.icon.replace("text-","bg-"):"bg-gray-300"}`},$)),v=o.hasError?`Error: ${o.errorMessage||"Unknown error"}`:l?`${e.name}
|
|
418
|
+
${p} args → ${u?"value":"void"}${h>0?` (${h} logs)`:""}
|
|
419
|
+
${m}ms`:`Not executed: ${e.name}`;return d(ve,{to:`/entity/${t}/scenarios/${e.id}`,className:`relative ${g.width} ${g.height} ${w} rounded ${x.bg} flex flex-col items-center justify-center gap-0.5 cursor-pointer transition-all hover:scale-105 hover:shadow-md`,title:v,onClick:j=>j.stopPropagation(),children:[n("div",{className:`${x.icon} ${g.iconSize} font-mono font-bold`,children:o.hasError?"⚠":l?"ƒ":"○"}),l&&!o.hasError&&d("div",{className:`flex items-center gap-0.5 ${g.textSize} ${x.badge} px-1 rounded`,children:[n("span",{children:p}),n("span",{children:"→"}),n("span",{children:u?"✓":"∅"})]}),l&&!o.hasError&&r==="medium"&&n("div",{className:"flex gap-0.5 mt-0.5",children:b}),l&&!o.hasError&&m>100&&r==="medium"&&n("div",{className:`absolute top-0.5 right-0.5 ${g.textSize} ${x.badge} px-1 rounded`,children:m>1e3?`${Math.round(m/1e3)}s`:`${m}ms`}),l&&!o.hasError&&h>0&&r==="medium"&&d("div",{className:"absolute bottom-0.5 left-0.5 text-[8px] text-gray-500",children:["📝",h]})]})}function so({size:e=24,className:t=""}){return d("svg",{width:e,height:e,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",className:t,"aria-hidden":"true",children:[n("path",{d:"M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z",fill:"#ef4444",stroke:"none"}),n("line",{x1:"12",y1:"9",x2:"12",y2:"13",stroke:"#FFFFFF",strokeWidth:"2",strokeLinecap:"round"}),n("circle",{cx:"12",cy:"17",r:"1",fill:"#FFFFFF"})]})}function rl({scenario:e,entity:t,analysisStatus:r,queueState:s,processIsRunning:a,size:o="medium",cacheBuster:i,className:l="",viewMode:c}){var y,x;if(t.entityType==="library")return n(Pd,{scenario:e,entitySha:t.sha,size:o==="small"?"small":"medium"});const u=Qs(e,r,a,t.sha,s),h=o==="small"?{containerClass:"w-16 h-12",iconSize:"text-xl"}:o==="large"?{containerClass:"w-full h-[67px]",iconSize:"text-2xl"}:{containerClass:"w-20 h-15",iconSize:"text-2xl"},m=`relative ${h.containerClass} ${l}`,f=()=>{const w=`/entity/${t.sha}/scenarios/${e.id}`;return c?`${w}/${c}`:w};if(u.isCaptured){const w=(x=(y=e.metadata)==null?void 0:y.screenshotPaths)==null?void 0:x[0];return n(ve,{to:f(),className:`${m} overflow-hidden bg-gray-50 cursor-pointer transition-all flex items-center justify-center hover:scale-105 hover:shadow-md`,children:n(rt,{screenshotPath:w,cacheBuster:i,alt:e.name,title:e.name,className:"max-w-full max-h-full object-contain object-center"})})}const g=()=>{const w={size:o==="small"?16:o==="large"?24:20,strokeWidth:2},b=n(Ho,{size:o});if(u.shouldSpin||u.iconType==="queued"||u.iconType==="pending")return b;switch(u.iconType){case"starting":case"capturing":return b;case"error":return d("div",{className:"flex flex-col items-center justify-center gap-1",children:[n(so,{size:24}),n("span",{className:"text-[10px] text-[#ef4444] font-medium",children:"Capture Error"})]});case"completed":return n(Ju,{...w});default:return b}};return n(ve,{to:f(),className:`${m} ${u.bgColor} flex flex-col items-center justify-center cursor-pointer transition-all hover:scale-105 hover:shadow-md`,title:u.title,children:n("div",{className:h.iconSize,children:g()})})}const $n=70;function mN({scenarios:e,hiddenScenarios:t=[],analysis:r,selectedScenario:s,entitySha:a,cacheBuster:o,activeTab:i,entityType:l,entity:c,queueState:p,processIsRunning:u,isEntityAnalyzing:h,areScenariosStale:m,viewMode:f,setViewMode:g,isBreakdownView:y}){var I,R,T,G,J,F;const x=fe(null),[w,b]=M(new Set),[v,N]=M(!1);se(()=>{x.current&&i==="scenarios"&&x.current.scrollIntoView({behavior:"smooth",block:"nearest"})},[s==null?void 0:s.id,i]);const k=H=>`/entity/${a}/scenarios/${H}`,E=H=>{b(U=>{const z=new Set(U);return z.has(H)?z.delete(H):z.add(H),z})},C=(H,U=2)=>{const A=H.split(`
|
|
420
|
+
`).slice(0,U).join(" ").trim();return A.length>$n?A.substring(0,$n-3):(H.split(`
|
|
421
|
+
`).length>U||H.length>A.length,A)},S=ae(()=>{var U;if(!((U=r==null?void 0:r.metadata)!=null&&U.executionFlows)||!(r!=null&&r.scenarios))return null;const H=r.scenarios.filter(z=>{var A;return!((A=z.metadata)!=null&&A.sameAsDefault)});return Bo(r.metadata.executionFlows,H)},[r]),_=(S==null?void 0:S.totalFlows)||0,j=(S==null?void 0:S.coveredFlows)||0,$=(S==null?void 0:S.coveragePercentage)||0;(I=c==null?void 0:c.metadata)!=null&&I.defaultWidth||(R=r==null?void 0:r.metadata)!=null&&R.defaultWidth;const P=(T=r==null?void 0:r.status)!=null&&T.finishedAt?new Date(r.status.finishedAt).toLocaleDateString("en-US",{month:"short",day:"numeric",year:"numeric"}):null;return d("aside",{className:"w-[250px] bg-white border-r border-[#e1e1e1] shrink-0 flex flex-col gap-2 p-4",children:[r&&e.length>0&&d("div",{className:"flex flex-col gap-2",children:[n("div",{className:"text-[10px] text-black font-normal uppercase font-mono",children:"SCENARIOS"}),d("div",{className:"grid grid-cols-2 gap-2",children:[d(ve,{to:y?`/entity/${a}/scenarios/${(s==null?void 0:s.id)||((G=e[0])==null?void 0:G.id)}`:`/entity/${a}/scenarios/breakdown`,className:"bg-[#F6F9FC] border border-[#E0E9EC] rounded px-3 py-3 text-center no-underline cursor-pointer hover:bg-[#EDF4F8] transition-colors",children:[d("div",{className:"text-xl font-semibold text-[#005c75] font-mono",children:[Math.round($),"%"]}),n("div",{className:"text-[10px] text-[#9e9e9e] font-normal uppercase mt-1",children:"COVERAGE"})]}),d(ve,{to:y?`/entity/${a}/scenarios/${(s==null?void 0:s.id)||((J=e[0])==null?void 0:J.id)}`:`/entity/${a}/scenarios/breakdown`,className:"bg-[#F6F9FC] border border-[#E0E9EC] rounded px-3 py-3 text-center no-underline cursor-pointer hover:bg-[#EDF4F8] transition-colors",children:[d("div",{className:"text-xl font-semibold text-[#005c75] font-mono",children:[j,"/",_]}),n("div",{className:"text-[10px] text-[#9e9e9e] font-normal uppercase mt-1 whitespace-nowrap",children:"FLOWS COVERED"})]})]}),d(ve,{to:y?`/entity/${a}/scenarios/${(s==null?void 0:s.id)||((F=e[0])==null?void 0:F.id)}`:`/entity/${a}/scenarios/breakdown`,className:`border rounded px-3 py-2 no-underline hover:shadow-sm transition-shadow flex items-center justify-between ${y?"bg-[#CBF3FA] border-[#CBF3FA]":"bg-[#F6F9FC] border-[#E0E9EC]"}`,children:[n("div",{className:"text-[11px] text-[#005c75] font-normal uppercase font-mono underline",children:"EXECUTION FLOWS"}),y?n("svg",{width:"12",height:"12",viewBox:"0 0 12 12",fill:"none",children:n("path",{d:"M3 3L9 9M9 3L3 9",stroke:"#005c75",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})}):n("svg",{width:"12",height:"12",viewBox:"0 0 12 12",fill:"none",children:n("path",{d:"M4.5 3L7.5 6L4.5 9",stroke:"#005c75",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})})]})]}),c&&c.filePath&&n("div",{children:n(ve,{to:`/entity/${a}/create-scenario`,className:"w-full px-3 py-2 bg-[#005c75] text-white border border-[rgba(0,92,117,0.05)] rounded text-[11px] font-medium font-mono cursor-pointer transition-colors hover:bg-[#004a5e] no-underline flex items-center justify-center gap-1",children:"+ Create New Scenario"})}),e.length>0&&d("div",{className:"py-3 flex items-center justify-between",children:[d("div",{className:"text-[10px] text-black font-normal uppercase font-mono",children:[e.length," AUTO-GENERATED"]}),P&&n("div",{className:"text-[10px] text-[#9e9e9e] font-normal font-mono",children:P})]}),h&&(m||e.length===0)?d("div",{className:"",children:[d("span",{className:"text-[12px] px-2 rounded inline-flex items-center gap-1.5",style:{backgroundColor:"#FFF4FC",color:"#FF2AB5",height:"23px"},children:[d("svg",{width:"9",height:"9",viewBox:"0 0 9 9",fill:"none",className:"animate-spin",children:[n("circle",{cx:"4.5",cy:"4.5",r:"3.5",stroke:"#FFF4FC",strokeWidth:"1",fill:"none"}),n("path",{d:"M4.5 1C2.57 1 1 2.57 1 4.5C1 5.6 1.5 6.58 2.28 7.23",stroke:"#FF2AB5",strokeWidth:"1",strokeLinecap:"round",fill:"none"})]}),"Analyzing..."]}),n("p",{className:"text-[#8e8e8e] text-xs font-normal m-0 mt-2 text-left leading-5",children:"Scenarios will appear here once analysis completes"})]}):e.length===0?n("div",{className:"",children:n("p",{className:"text-[#8e8e8e] text-xs font-medium m-0 text-left leading-5",children:"No Scenarios"})}):n("div",{className:"overflow-y-auto flex-1",children:n("div",{className:"flex flex-col gap-[11.6px]",children:e.map((H,U)=>{const z=!y&&(s==null?void 0:s.id)===H.id,A=w.has(H.id||"");return H.id?d(ve,{to:k(H.id),ref:z?x:null,className:`group flex flex-col w-full border rounded-[5.155px] cursor-pointer transition-all no-underline overflow-hidden ${z?"border-[#005c75] bg-white":"border-[#e1e1e1] bg-white hover:border-[#005c75]"}`,children:[n("div",{className:"w-full flex justify-center border-b border-[#e1e1e1]",children:n(rl,{scenario:H,entity:{sha:a,entityType:l},analysisStatus:r==null?void 0:r.status,queueState:p,processIsRunning:u,size:"large",cacheBuster:o,viewMode:f})}),d("div",{className:"px-3 py-3",children:[n("div",{className:`text-xs font-semibold text-[#343434] ${A?"":"line-clamp-1"}`,children:H.name}),H.description&&n("div",{className:"mt-2",children:d("div",{className:"text-xs leading-[15px] text-[#808080] font-normal",children:[A?H.description:C(H.description),!A&&H.description.length>$n&&d(ye,{children:["...",n("button",{onClick:Y=>{Y.preventDefault(),Y.stopPropagation(),E(H.id)},className:"text-[10px] text-[#005c75] font-medium cursor-pointer hover:underline ml-1",children:"Read More"})]}),A&&H.description.length>$n&&n("button",{onClick:Y=>{Y.preventDefault(),Y.stopPropagation(),E(H.id)},className:"text-[10px] text-[#005c75] font-medium cursor-pointer hover:underline ml-1",children:"Read Less"})]})})]})]},U):null})})}),t.length>0&&!(h&&m)&&d("div",{className:"border-t border-[#e1e1e1] pt-3",children:[d("button",{onClick:()=>N(!v),className:"flex items-center gap-1 text-[10px] text-[#626262] font-medium cursor-pointer bg-transparent border-none p-0 hover:text-[#005c75] transition-colors w-full",children:[n("svg",{width:"10",height:"10",viewBox:"0 0 10 10",fill:"none",className:`transition-transform ${v?"rotate-90":""}`,children:n("path",{d:"M3.5 2L6.5 5L3.5 8",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})}),"Hidden Scenarios (",t.length,")"]}),v&&d("div",{className:"mt-2",children:[n("p",{className:"text-[10px] text-[#8e8e8e] leading-[14px] mb-3",children:"These scenarios were hidden because the screenshots did not differ from the Default Scenario."}),n("div",{className:"flex flex-col gap-[11.6px]",children:t.map((H,U)=>{const z=!y&&(s==null?void 0:s.id)===H.id,A=w.has(H.id||"");return H.id?d(ve,{to:`/entity/${a}/scenarios/${H.id}`,ref:z?x:null,className:`group flex flex-col w-full border rounded-[5.155px] cursor-pointer transition-all no-underline overflow-hidden ${z?"border-[#005c75] bg-white":"border-[#e1e1e1] bg-white hover:border-[#005c75]"}`,children:[n("div",{className:"w-full flex justify-center border-b border-[#e1e1e1]",children:n(rl,{scenario:H,entity:{sha:a,entityType:l},analysisStatus:r==null?void 0:r.status,queueState:p,processIsRunning:u,size:"large",cacheBuster:o,viewMode:f})}),d("div",{className:"px-3 py-3",children:[n("div",{className:`text-xs font-semibold text-[#343434] ${A?"":"line-clamp-1"}`,children:H.name}),H.description&&n("div",{className:"mt-2",children:d("div",{className:"text-xs leading-[15px] text-[#808080] font-normal",children:[A?H.description:C(H.description),!A&&H.description.length>$n&&d(ye,{children:["...",n("button",{onClick:Y=>{Y.preventDefault(),Y.stopPropagation(),E(H.id)},className:"text-[10px] text-[#005c75] font-medium cursor-pointer hover:underline ml-1",children:"Read More"})]}),A&&H.description.length>$n&&n("button",{onClick:Y=>{Y.preventDefault(),Y.stopPropagation(),E(H.id)},className:"text-[10px] text-[#005c75] font-medium cursor-pointer hover:underline ml-1",children:"Read Less"})]})})]})]},U):null})})]})]})]})}function fN({scenario:e,entitySha:t,onApply:r,onSave:s,onEditMockData:a,onDelete:o,isApplying:i=!1,isSaving:l=!1,saveMessage:c=null,showDeleteConfirm:p=!1,onShowDeleteConfirm:u,isDeleting:h=!1,deleteError:m=null}){const[f,g]=M(""),y=async()=>{await r(f)},x=async w=>{await s(f,w),w||g("")};return d("aside",{className:"w-[220px] bg-white border-r border-[#e1e1e1] shrink-0 flex flex-col gap-2 p-3 h-full",children:[d("div",{className:"border-b border-[#e1e1e1] pb-3",children:[d("div",{className:"flex items-start justify-between mb-2",children:[n("div",{className:"text-[10px] text-[#626262] font-medium",children:"Edit Scenario"}),n(ve,{to:`/entity/${t}`,className:"text-[#626262] hover:text-[#3e3e3e] transition-colors text-sm leading-none no-underline cursor-pointer",title:"Close",children:"×"})]}),n("div",{className:"text-xs font-semibold text-[#626262]",children:e.name})]}),d("div",{className:"flex-1 overflow-y-auto flex flex-col gap-2",children:[d("div",{className:"pt-1",children:[n("label",{htmlFor:"ai-description",className:"block text-xs text-[#343434] font-semibold mb-[6px]",children:"Describe changes to the AI"}),n("textarea",{id:"ai-description",value:f,onChange:w=>g(w.target.value),placeholder:"e.g. change amount of data to zero",className:"w-full px-[7px] py-[6px] border border-[#c7c7c7] rounded-[4px] text-xs focus:outline-none focus:ring-1 focus:ring-[#005c75] focus:border-[#005c75] resize-none",rows:4}),d("button",{onClick:()=>void y(),disabled:i||!f.trim(),className:"w-full mt-1 h-[22px] bg-[#005c75] text-white border border-[rgba(0,92,117,0.05)] rounded text-[10px] font-normal cursor-pointer transition-colors hover:bg-[#004a5e] disabled:bg-gray-400 disabled:cursor-not-allowed flex items-center justify-center gap-1",children:[i&&d("svg",{className:"animate-spin h-3 w-3",xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",children:[n("circle",{className:"opacity-25",cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeWidth:"4"}),n("path",{className:"opacity-75",fill:"currentColor",d:"M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"})]}),i?"Applying...":"Apply"]})]}),n("div",{className:"border-t border-[#e1e1e1] my-1"}),d("div",{className:"pt-1",children:[n("div",{className:"text-xs text-[#343434] font-semibold mb-[6px]",children:"Change file"}),n("p",{className:"text-[10px] text-[#808080] mb-2",children:"You can edit the data used for this scenario directly."}),n("button",{onClick:a,className:"w-full h-[22px] bg-[#e0e9ec] text-[#005c75] border border-[#e0e9ec] rounded-[4px] text-[10px] font-normal cursor-pointer transition-colors hover:bg-[#cbf3fa]",children:"Edit Mock Data"})]}),c&&n("div",{className:`text-[10px] px-[7px] py-[6px] rounded-[4px] ${c.startsWith("Error")?"bg-red-50 text-red-600":"bg-green-50 text-green-600"}`,children:c}),c==="Recapture successful"&&n("div",{children:n(ve,{to:`/entity/${t}`,className:"text-[#005c75] hover:text-[#004a5e] hover:underline text-[10px] cursor-pointer",children:"View updated screenshot on entity page →"})})]}),d("div",{className:"border-t border-[#e1e1e1] pt-2 bg-white flex flex-col gap-1",children:[n("button",{onClick:()=>void x(!1),disabled:l||!f.trim(),className:"w-full h-[22px] bg-[#005c75] text-white border border-[rgba(0,92,117,0.05)] rounded text-[10px] font-normal cursor-pointer transition-colors hover:bg-[#004a5e] disabled:bg-gray-400 disabled:cursor-not-allowed flex items-center justify-center",children:l?"Saving...":"Save Scenario Data"}),n("button",{onClick:()=>void x(!0),disabled:l||!f.trim(),className:"w-full h-[22px] bg-[#e0e9ec] text-[#005c75] border border-[#e0e9ec] rounded-[4px] text-[10px] font-normal cursor-pointer transition-colors hover:bg-[#cbf3fa] disabled:opacity-50 disabled:cursor-not-allowed flex items-center justify-center",children:"Save As New"}),o&&d(ye,{children:[p?d("div",{className:"flex flex-col gap-1",children:[d("div",{className:"text-[10px] text-red-600 font-medium",children:['Are you sure you want to delete "',e.name,'"?']}),d("div",{className:"flex gap-1",children:[n("button",{onClick:()=>void o(),disabled:h,className:"flex-1 h-[22px] bg-red-600 text-white rounded text-[10px] font-normal hover:bg-red-700 disabled:bg-red-400 disabled:cursor-not-allowed transition-colors flex items-center justify-center cursor-pointer",children:h?"Deleting...":"Yes, Delete"}),n("button",{onClick:()=>u==null?void 0:u(!1),disabled:h,className:"flex-1 h-[22px] bg-gray-100 text-gray-700 border border-gray-300 rounded text-[10px] font-normal hover:bg-gray-200 disabled:opacity-50 transition-colors flex items-center justify-center cursor-pointer",children:"Cancel"})]})]}):n("button",{onClick:()=>u==null?void 0:u(!0),className:"w-full h-[22px] bg-red-50 text-red-600 border border-red-200 rounded text-[10px] font-normal hover:bg-red-100 transition-colors flex items-center justify-center cursor-pointer",children:"Delete Scenario"}),m&&n("div",{className:"text-[10px] text-red-600 bg-red-50 px-[7px] py-[6px] rounded-[4px]",children:m})]})]})]})}function gN({scenario:e,analysis:t,entity:r}){var i,l,c;const s=((i=e.metadata)==null?void 0:i.executionResult)||null,a=((c=(l=e.metadata)==null?void 0:l.data)==null?void 0:c.argumentsData)||[],o=p=>{var g,y,x;if(!p)return"No execution results available yet. Run the function to capture side effects including console output, file operations, and API calls.";const u=[],h=((g=p.sideEffects)==null?void 0:g.consoleOutput)||[];h.length>0&&(u.push(`Console Output: ${h.length} log ${h.length===1?"entry":"entries"} captured`),h.forEach(w=>{u.push(` [${w.level.toUpperCase()}] ${w.args.join(" ")}`)}));const m=((y=p.sideEffects)==null?void 0:y.fileWrites)||[];m.length>0&&(u.push(`
|
|
422
|
+
File System Operations: ${m.length} ${m.length===1?"operation":"operations"} detected`),m.forEach(w=>{u.push(` ${w.operation}: ${w.path}${w.size?` (${w.size} bytes)`:""}`)}));const f=((x=p.sideEffects)==null?void 0:x.apiCalls)||[];return f.length>0&&(u.push(`
|
|
423
|
+
API Calls: ${f.length} ${f.length===1?"call":"calls"} made`),f.forEach(w=>{u.push(` ${w.method} ${w.url}${w.status?` → ${w.status}`:""}${w.duration?` (${w.duration}ms)`:""}`)})),p.error&&u.push(`
|
|
424
|
+
Error: ${p.error.name||"Error"}: ${p.error.message}`),u.length===0?"No side effects detected. The function executed without console output, file operations, or API calls.":u.join(`
|
|
425
|
+
`)};return d("div",{className:"flex w-full h-full gap-0",children:[d("div",{className:"flex-1 border border-gray-200 bg-white rounded flex flex-col",children:[n("div",{className:"px-4 pt-3.5 pb-2.5",children:n("h3",{className:"text-[9px] font-semibold text-[#005c75] uppercase tracking-wide text-center m-0",children:"Input Data"})}),n("div",{className:"flex-1 overflow-auto px-4 pb-0",children:n("pre",{className:"text-xs font-mono text-gray-800 whitespace-pre-wrap break-words m-0",children:JSON.stringify(a,null,2)})})]}),d("div",{className:"flex-1 border border-gray-200 bg-white rounded flex flex-col ml-[-1px]",children:[n("div",{className:"px-4 pt-3.5 pb-2.5",children:n("h3",{className:"text-[9px] font-semibold text-[#005c75] uppercase tracking-wide text-center m-0",children:"Returned Data"})}),n("div",{className:"flex-1 overflow-auto px-4 pb-0",children:s?n("pre",{className:"text-xs font-mono text-gray-800 whitespace-pre-wrap break-words m-0",children:s.returnValue!==void 0?JSON.stringify(s.returnValue,null,2):"undefined"}):n("div",{className:"text-sm text-gray-500 italic",children:"No execution results yet"})})]}),d("div",{className:"flex-1 border border-gray-200 bg-white rounded flex flex-col ml-[-1px]",children:[n("div",{className:"px-4 pt-3.5 pb-2.5",children:n("h3",{className:"text-[9px] font-semibold text-[#005c75] uppercase tracking-wide text-center m-0",children:"Side Effects"})}),n("div",{className:"flex-1 overflow-auto px-4 pb-4",children:n("p",{className:"text-sm text-gray-700 leading-[22px] m-0 whitespace-pre-wrap",children:o(s)})})]})]})}const cn={commandBoxBg:"#f6f9fc",commandBoxBorder:"#e1e1e1",commandBoxText:"#005c75",heading:"#000",subtext:"#646464",link:"#005c75"};function es({scenarioId:e,analysisId:t}){const[r,s]=M(!1),[a,o]=M(!1),[i,l]=M(null),[c,p]=M(!1),u=e||t;if(!u)return null;const h=`/codeyam-diagnose ${u}`,m=async()=>{o(!0);try{const{default:g}=await import("html2canvas-pro"),x=(await g(document.body,{scale:.5})).toDataURL("image/jpeg",.8);l(x),s(!0)}catch(g){console.error("Screenshot capture failed:",g),s(!0)}finally{o(!1)}},f=()=>{s(!1),l(null)};return d(ye,{children:[d("div",{className:"text-center p-6 bg-cywhite-100 rounded-lg border-cygray-30 border",children:[n("h3",{className:"font-semibold font-['IBM_Plex_Sans']",style:{fontSize:"18px",lineHeight:"26px",color:cn.heading},children:"Claude can help debug this error."}),n("p",{className:"m-0 mb-4 font-['IBM_Plex_Sans']",style:{fontSize:"14px",lineHeight:"18px",color:cn.subtext},children:"Simply run this command in Claude Code:"}),d("div",{className:"flex items-center justify-between rounded mx-auto mb-3 border",style:{backgroundColor:cn.commandBoxBg,borderColor:cn.commandBoxBorder,maxWidth:"505px",height:"35px",paddingLeft:"13px",paddingRight:"13px",paddingTop:"6px",paddingBottom:"6px"},children:[n("code",{className:"font-mono font-['IBM_Plex_Mono'] flex-1 text-left",style:{fontSize:"12px",lineHeight:"20px",color:cn.commandBoxText},children:h}),n("button",{onClick:g=>{g.stopPropagation(),navigator.clipboard.writeText(h),p(!0),setTimeout(()=>p(!1),2e3)},className:"ml-3 cursor-pointer p-0 bg-transparent border-none hover:opacity-80 transition-opacity",style:{width:"14px",height:"14px",color:c?"#22c55e":cn.commandBoxText},title:c?"Copied!":"Copy command","aria-label":"Copy command to clipboard",children:c?n(Ct,{size:14}):n(Pt,{size:14})})]}),d("p",{className:"m-0 font-['IBM_Plex_Sans']",style:{fontSize:"12px",lineHeight:"15px",color:"#005c75"},children:["If Claude is unable to address this issue or suggests reporting it,"," ",n("button",{onClick:()=>void m(),disabled:a,className:"underline cursor-pointer bg-transparent border-none p-0 font-normal hover:opacity-80 disabled:opacity-50 disabled:cursor-not-allowed font-['IBM_Plex_Sans']",style:{fontSize:"12px",lineHeight:"15px",color:cn.link},children:a?"capturing...":"please do so here"}),"."]})]}),n(Gl,{isOpen:r,onClose:f,context:{source:e?"scenario-page":"entity-page",entitySha:void 0,scenarioId:e,analysisId:t,currentUrl:typeof window<"u"?window.location.pathname:"/"},screenshotDataUrl:i??void 0})]})}const sl=1440,ts=[{name:"Mobile",width:375,height:667},{name:"Tablet",width:768,height:1024},{name:"Laptop",width:1024,height:768},{name:"Desktop",width:1440,height:900}],Lt={background:"#ffdcd9",border:"#fda4a4",text:"#ef4444",link:"#991b1b"};function jd({selectedScenario:e,analysis:t,entity:r,viewMode:s,cacheBuster:a,hasScenarios:o,isAnalyzing:i=!1,projectSlug:l,hasAnApiKey:c=!0,processIsRunning:p,queueState:u}){var q,re,le,he,oe,ge,_e,je,pe,Z,Ne;const h=Je(),[m,f]=M(!1),[g,y]=M(!1),[x,w]=M({name:"Desktop",width:sl,height:900}),[b,v]=M(sl),[N,k]=M(1),{customSizes:E,addCustomSize:C,removeCustomSize:S}=Bs(l),_=ae(()=>[...ts,...E],[E]),j=(de,ne)=>{v(de);const be=_.find(Ce=>Ce.width===de&&Ce.height===ne);w({name:(be==null?void 0:be.name)||"Custom",width:de,height:ne})},$=de=>{v(de.width),w({name:de.name,width:de.width,height:de.height})},P=de=>{C(de,x.width,x.height??900),y(!1),w(ne=>({...ne,name:de}))},I=(de,ne)=>{v(de);const be=_.find(Ce=>Ce.width===de&&Ce.height===ne);w(Ce=>({name:(be==null?void 0:be.name)||"Custom",width:de,height:Ce.height}))},R=(re=(q=e==null?void 0:e.metadata)==null?void 0:q.screenshotPaths)==null?void 0:re[0],T=ae(()=>e?Qs(e,t==null?void 0:t.status,p,r==null?void 0:r.sha,u):null,[e,t==null?void 0:t.status,p,r==null?void 0:r.sha,u]),G=ae(()=>{var ne,be;const de=[];if((ne=t==null?void 0:t.status)!=null&&ne.errors&&t.status.errors.length>0)for(const Ce of t.status.errors)de.push({source:`${Ce.phase} phase`,message:Ce.message,stack:Ce.stack});if((be=t==null?void 0:t.status)!=null&&be.steps)for(const Ce of t.status.steps)Ce.error&&de.push({source:Ce.name,message:Ce.error,stack:Ce.errorStack});return de},[(le=t==null?void 0:t.status)==null?void 0:le.errors,(he=t==null?void 0:t.status)==null?void 0:he.steps]),J=(T==null?void 0:T.errorMessage)||null,F=(T==null?void 0:T.errorStack)||null,{interactiveServerUrl:H,isStarting:U,isLoading:z,showIframe:A,iframeKey:Y,onIframeLoad:V}=vn({analysisId:t==null?void 0:t.id,scenarioId:e==null?void 0:e.id,scenarioName:e==null?void 0:e.name,projectSlug:l,enabled:s==="interactive"}),W=ae(()=>H||null,[H]),Q=!i&&o&&e&&!((ge=(oe=e.metadata)==null?void 0:oe.screenshotPaths)!=null&&ge[0])&&((je=(_e=t==null?void 0:t.status)==null?void 0:_e.scenarios)==null?void 0:je.some(de=>de.name===e.name&&de.screenshotStartedAt&&!de.screenshotFinishedAt)),{lastLine:B}=Ut(l,i||s==="interactive"||Q||!1);if(!e){if(i&&r)return d(ye,{children:[n("div",{className:"flex-1 flex flex-col items-center justify-center p-12 text-center bg-[#f6f9fc]",children:d("div",{className:"flex flex-col items-center gap-6 max-w-2xl",children:[n("div",{className:"w-12 h-12 mb-2",children:n("svg",{className:"animate-spin",viewBox:"0 0 50 50",children:n("circle",{cx:"25",cy:"25",r:"20",fill:"none",stroke:"#005c75",strokeWidth:"4",strokeDasharray:"31.4 31.4",strokeLinecap:"round"})})}),n("h2",{className:"text-2xl font-semibold text-[#005c75] leading-[30px] m-0 font-['IBM_Plex_Sans']",children:Q?"Capturing screenshots...":"Analyzing..."}),n("p",{className:"text-xs text-[#8e8e8e] text-center leading-5 m-0 font-['IBM_Plex_Mono']",children:"This may take a few minutes."}),B&&n("p",{className:"text-xs font-mono text-[#005c75] text-center leading-5 m-0 max-w-xl",children:B}),l&&n("button",{onClick:()=>f(!0),className:"w-[148px] px-2.5 py-[5px] bg-[#005c75] text-white border-none rounded-sm text-xs font-medium cursor-pointer transition-colors hover:bg-[#004a5c] font-['IBM_Plex_Sans']",children:"View full logs"})]})}),m&&l&&n(Qt,{projectSlug:l,onClose:()=>f(!1)})]});if(!o&&r&&!i){if(G.length>0){const de=G.length===1?((pe=G[0])==null?void 0:pe.message)||"An error occurred during analysis.":`${G.length} errors occurred during analysis.`;return d(ye,{children:[n("div",{className:"flex-1 flex flex-col justify-center items-center px-5",style:{minHeight:"75vh"},children:d("div",{className:"w-full flex flex-col gap-4",style:{maxWidth:"600px"},children:[n("div",{className:"p-4 rounded",style:{backgroundColor:Lt.background,border:`2px solid ${Lt.border}`},role:"alert",children:d("div",{className:"flex items-center gap-3",children:[n(so,{size:24,className:"shrink-0"}),n("div",{className:"flex-1 min-w-0",children:d("p",{className:"m-0 font-['IBM_Plex_Sans']",style:{fontSize:"14px",lineHeight:"20px",color:Lt.text},children:[n("span",{className:"font-semibold",children:"Analysis Error."})," ",de," ",n("button",{onClick:()=>f(!0),className:"underline cursor-pointer bg-transparent border-none p-0 font-medium hover:opacity-80",style:{color:Lt.link},children:"See logs"})," ","for details."]})})]})}),n("div",{className:"bg-white border rounded-lg",style:{borderColor:"#e1e1e1"},children:n(es,{analysisId:t==null?void 0:t.id})})]})}),m&&l&&n(Qt,{projectSlug:l,onClose:()=>f(!1)})]})}return n("div",{className:"flex-1 flex flex-col items-center justify-center p-6 text-center bg-[#f6f9fc]",children:d("div",{className:"max-w-[600px]",children:[n("h2",{className:"text-[28px] font-semibold text-[#343434] mb-4 m-0 leading-10",children:"No simulations yet"}),n("p",{className:"text-base font-normal text-[#3e3e3e] mb-8 leading-6 m-0",children:"Analyze the code to create simulations and create test scenarios automatically."}),r.filePath&&n("button",{onClick:()=>{h.submit({entitySha:r.sha,filePath:r.filePath},{method:"post",action:"/api/analyze"})},disabled:h.state!=="idle",className:"h-[54px] w-[183px] px-2.5 py-[5px] bg-[#005c75] text-white border-none rounded-lg text-base font-medium cursor-pointer transition-all hover:bg-[#004a5e] disabled:bg-gray-400 disabled:cursor-not-allowed",children:h.state!=="idle"?"Analyzing...":"Analyze"})]})})}return n("div",{className:"flex-1 flex flex-col items-center justify-center p-6 text-center",children:n("p",{className:"text-base text-gray-500 m-0",children:"Select a scenario to view its screenshot"})})}return d(ye,{children:[n("main",{className:"flex-1 overflow-auto flex flex-col min-w-0",style:{backgroundImage:`
|
|
426
|
+
linear-gradient(45deg, #ebebeb 25%, transparent 25%),
|
|
427
|
+
linear-gradient(-45deg, #ebebeb 25%, transparent 25%),
|
|
428
|
+
linear-gradient(45deg, transparent 75%, #ebebeb 75%),
|
|
429
|
+
linear-gradient(-45deg, transparent 75%, #ebebeb 75%)
|
|
430
|
+
`,backgroundSize:"16px 16px",backgroundPosition:"0 0, 0 8px, 8px -8px, -8px 0px",backgroundColor:"#fafafa"},children:(i||Q&&!R)&&!J&&s==="screenshot"?n("div",{className:"flex-1 flex flex-col items-center justify-center p-6 text-center bg-linear-to-br from-blue-50 to-indigo-50",children:d("div",{className:"max-w-2xl w-full bg-white rounded-t-2xl shadow-xl p-8",children:[d("div",{className:"mb-8",children:[n("div",{className:"inline-flex items-center justify-center w-24 h-24 bg-blue-100 rounded-full mb-6",children:n("span",{className:"text-5xl animate-spin",children:"⚙️"})}),n("h2",{className:"text-3xl font-bold text-gray-900 mb-4 m-0",children:Q?`Capturing ${r==null?void 0:r.name}`:`Analyzing ${r==null?void 0:r.name}`}),n("p",{className:"text-base text-gray-600 leading-relaxed m-0 mb-2",children:Q?`Taking screenshots for ${((Z=t==null?void 0:t.scenarios)==null?void 0:Z.length)||0} scenario${((Ne=t==null?void 0:t.scenarios)==null?void 0:Ne.length)!==1?"s":""}...`:`Generating simulations and scenarios for this ${r==null?void 0:r.entityType} entity...`}),e&&d("p",{className:"text-sm text-blue-600 font-semibold m-0",children:["Currently processing: ",e.name]})]}),B&&n("div",{className:"bg-[#f6f9fc] border-2 border-[#e1e1e1] rounded-lg p-6 mb-6",children:d("div",{className:"flex items-start gap-3",children:[n("span",{className:"text-xl shrink-0",children:"📝"}),d("div",{className:"flex-1 min-w-0",children:[n("h3",{className:"text-xs font-semibold text-gray-700 uppercase tracking-wide mb-2 m-0",children:"Current Progress"}),n("p",{className:"text-sm text-gray-900 font-mono wrap-break-word m-0",title:B,children:B})]})]})}),l&&n("button",{onClick:()=>f(!0),className:"px-6 py-3 bg-[#005c75] text-white border-none rounded-lg text-base font-semibold cursor-pointer transition-all hover:bg-[#004a5e] hover:shadow-lg",children:"📋 View Full Logs"}),n("p",{className:"text-xs text-gray-500 mt-8 m-0",children:"Screenshots will appear here as they are captured. This may take a few minutes."})]})}):s==="screenshot"&&(R||J)||s==="interactive"&&(W||U)||s==="data"?d(ye,{children:[J&&!R&&n("div",{className:"flex-1 flex flex-col justify-center items-center p-6",children:d("div",{className:"w-full flex flex-col gap-4",style:{maxWidth:"600px"},children:[n("div",{className:"p-4 rounded overflow-auto",style:{backgroundColor:Lt.background,border:`2px solid ${Lt.border}`,maxHeight:"50vh"},role:"alert",children:d("div",{className:"flex flex-col gap-3",children:[d("div",{className:"flex items-center justify-center gap-2 font-bold",style:{color:Lt.text},children:[n(so,{size:24,className:"shrink-0"}),n("div",{children:"Capture Error"})]}),d("div",{className:"text-center",children:[n("button",{onClick:()=>f(!0),className:"underline cursor-pointer bg-transparent border-none p-0 font-medium hover:opacity-80",style:{color:Lt.link},children:"See logs"})," ","for details."]}),n("div",{className:"flex-1 min-w-0",children:n("div",{className:"m-0 font-['IBM_Plex_Sans']",style:{fontSize:"14px",lineHeight:"20px",color:Lt.text},children:J})})]})}),n("div",{className:"bg-white border rounded-lg",style:{borderColor:"#e1e1e1"},children:n(es,{scenarioId:e==null?void 0:e.id,analysisId:t==null?void 0:t.id})})]})}),s==="interactive"?d("div",{className:"flex-1 flex flex-col min-h-0",children:[W&&d("div",{className:"bg-gray-50 border-b border-gray-200 px-6 py-3 shrink-0 flex justify-center items-center gap-4",children:[n(Rg,{presets:[...ts],customSizes:E,currentWidth:x.width,currentHeight:x.height??900,scale:N,onSizeChange:j,onSaveCustomSize:()=>y(!0),onRemoveCustomSize:S}),e&&r&&d(ve,{to:`/entity/${r.sha}/scenarios/${e.id}/fullscreen?from=${encodeURIComponent(`/entity/${r.sha}/scenarios/${e.id}/interactive`)}`,className:"flex items-center gap-2 px-4 py-2 bg-[#005c75] text-white rounded hover:bg-[#004a5c] transition-colors text-sm font-medium no-underline",title:"Open in fullscreen",children:[n("svg",{width:"16",height:"16",viewBox:"0 0 16 16",fill:"none",children:n("path",{d:"M2 5V2H5M11 2H14V5M14 11V14H11M5 14H2V11",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})}),"Fullscreen"]})]}),W&&n("div",{className:"bg-[#005c75] border-b border-[rgba(0,0,0,0.2)] flex justify-center",children:n("div",{style:{maxWidth:`${ts[ts.length-1].width}px`,width:"100%"},children:n(Ao,{currentViewportWidth:b,currentPresetName:x.name,onDevicePresetClick:$,devicePresets:_})})}),n(Js,{scenarioId:e.id,scenarioName:e.name,iframeUrl:W,isStarting:U,isLoading:z,showIframe:A,iframeKey:Y,onIframeLoad:V,onScaleChange:k,onDimensionChange:I,projectSlug:l,defaultWidth:x.width,defaultHeight:x.height})]}):s==="data"?n("div",{className:"flex-1 min-h-0",children:n(gN,{scenario:e,analysis:t,entity:r})}):n("div",{className:"flex-1 flex flex-col",children:n("div",{className:"flex-1 p-6 flex items-center justify-center",children:n("div",{className:"transition-all duration-300",style:{maxWidth:`${b}px`},children:(R||!J)&&n(rt,{screenshotPath:R,cacheBuster:a,alt:e.name,className:"w-full rounded-lg shadow-[0_10px_25px_rgba(0,0,0,0.1)] bg-white"})})})})]}):n("div",{className:"flex-1 flex flex-col",children:n("div",{className:"flex-1 flex flex-col items-center justify-center p-6 overflow-auto w-full",children:i&&!R?n("div",{className:"w-full h-full flex items-center justify-center",children:n("div",{className:"bg-blue-50 border-2 border-blue-200 rounded-lg p-8",children:d("div",{className:"flex items-start gap-4 mb-6",children:[n("span",{className:"animate-spin text-4xl shrink-0",children:"⚙️"}),d("div",{className:"flex-1",children:[n("h3",{className:"text-xl font-semibold text-blue-900 m-0 mb-3",children:"Capturing Screenshot"}),d("p",{className:"text-sm text-blue-800 m-0 mb-4",children:["Analysis is in progress for"," ",n("strong",{children:e.name}),". The screenshot will appear here once capture is complete."]}),B&&d("div",{className:"bg-white border border-blue-200 rounded p-4 mt-4",children:[n("h4",{className:"text-xs font-semibold text-blue-800 m-0 mb-2 uppercase tracking-wide",children:"Current Progress"}),n("p",{className:"text-sm text-blue-900 m-0 font-mono wrap-break-word",children:B})]}),l&&n("button",{onClick:()=>f(!0),className:"mt-4 px-4 py-2 bg-[#005c75] text-white border-none rounded-md text-sm font-semibold cursor-pointer transition-colors hover:bg-[#004a5e]",children:"📋 View Full Logs"})]})]})})}):J?d("div",{className:"w-full h-full flex flex-col items-center justify-center overflow-auto gap-6",children:[!c&&n("div",{className:"bg-blue-50 border-2 border-blue-300 rounded-lg p-8",children:d("div",{className:"flex-1 flex flex-col gap-4 items-center justify-center",children:[d("div",{className:"flex items-start gap-4",children:[n("span",{className:"text-blue-600 text-2xl shrink-0",children:"🔑"}),n("h3",{className:"text-xl font-semibold text-blue-900 m-0 mb-3",children:"Improve Analysis Quality with an API Key"})]}),d("div",{className:"bg-white border border-blue-200 rounded p-4",children:[n("h4",{className:"text-xs font-semibold text-blue-900 m-0 mb-2 uppercase tracking-wide",children:"CodeYam requires an AI API key for reliable analysis."}),d("ul",{className:"text-sm text-blue-800 m-0 space-y-1 pl-5 list-disc",children:[n("li",{children:"You can use API keys for a variety of models"}),n("li",{children:"Faster analysis processing"}),n("li",{children:"Better handling of complex code structures"}),n("li",{children:"Improved scenario generation quality"})]})]}),n(ve,{to:"/settings",className:"inline-block px-4 py-2 bg-blue-600 text-white border-none rounded-md text-sm font-semibold cursor-pointer transition-colors hover:bg-blue-700",children:"🔐 Configure API Keys"})]})}),n("div",{className:"bg-red-50 border-2 border-red-300 rounded-lg p-8 w-full max-w-4xl my-auto",children:d("div",{className:"flex items-start gap-4 mb-6",children:[n("span",{className:"text-red-500 text-4xl shrink-0",children:"⚠️"}),d("div",{className:"flex-1 min-w-0",children:[n("h3",{className:"text-xl font-semibold text-red-800 m-0 mb-3",children:"Capture Failed"}),n("p",{className:"text-sm text-red-700 m-0 mb-4",children:"An error occurred while capturing this scenario. No screenshot is available."}),d("div",{className:"bg-white border border-red-200 rounded p-4",children:[n("h4",{className:"text-xs font-semibold text-red-800 m-0 mb-2 uppercase tracking-wide",children:"Error Message"}),n("div",{className:"max-h-[300px] overflow-auto",children:n("p",{className:"text-sm text-red-900 m-0 font-mono whitespace-pre-wrap wrap-break-word",children:J})})]}),F&&d("details",{className:"mt-4",children:[n("summary",{className:"text-sm text-red-700 cursor-pointer hover:text-red-900 font-semibold",children:"📋 View full stack trace"}),n("div",{className:"mt-3 bg-white border border-red-200 rounded p-4 overflow-auto",children:n("pre",{className:"text-xs text-red-900 font-mono whitespace-pre-wrap wrap-break-word m-0",children:F})})]}),n("div",{className:"mt-4 bg-white border rounded-lg",style:{borderColor:"#e1e1e1"},children:n(es,{scenarioId:e==null?void 0:e.id,analysisId:t==null?void 0:t.id})})]})]})})]}):G.length>0?n("div",{className:"w-full h-full flex items-center justify-center overflow-auto",children:n("div",{className:"bg-red-50 border-2 border-red-300 rounded-lg p-8 w-full max-w-4xl my-auto",children:d("div",{className:"flex items-start gap-4 mb-6",children:[n("span",{className:"text-red-500 text-4xl shrink-0",children:"⚠️"}),d("div",{className:"flex-1 min-w-0",children:[n(AnalysisErrorDisplay,{errors:G,title:"Analysis Error",description:G.length===1?"An error occurred during analysis. Screenshot capture was not completed.":`${G.length} errors occurred during analysis. Screenshot capture was not completed.`}),n("div",{className:"mt-4 bg-white border rounded-lg",style:{borderColor:"#e1e1e1"},children:n(es,{scenarioId:e==null?void 0:e.id,analysisId:t==null?void 0:t.id})})]})]})})}):d("div",{className:"flex flex-col items-center gap-4 text-center",children:[n("span",{className:"text-6xl text-gray-300",children:"📷"}),n("p",{className:"text-lg text-gray-500 m-0",children:"No screenshot available for this scenario"}),n("p",{className:"text-sm text-gray-400 m-0",children:"Try recapturing or debugging this scenario"})]})})})}),m&&l&&n(Qt,{projectSlug:l,onClose:()=>f(!1)}),g&&n(Po,{width:x.width,height:x.height??900,onSave:P,onCancel:()=>y(!1)})]})}function yN({analysis:e,entitySha:t}){Yt();const[r,s]=M(e);se(()=>{s(e)},[e]);const[a,o]=M(null),i=ae(()=>{var h;if(!((h=r==null?void 0:r.metadata)!=null&&h.executionFlows)||!(r!=null&&r.scenarios))return null;const u=r.scenarios.filter(m=>{var f;return!((f=m.metadata)!=null&&f.sameAsDefault)});return Bo(r.metadata.executionFlows,u)},[r]),l=ae(()=>i?ry(i):[],[i]),c=ae(()=>r!=null&&r.scenarios?r.scenarios.filter(u=>{var h;return!((h=u.metadata)!=null&&h.sameAsDefault)}):[],[r]),p=u=>{var m;const h=((m=u.metadata)==null?void 0:m.coveredFlows)||[];return i?i.executionFlows.filter(f=>h.includes(f.id)):[]};return r?!i||i.executionFlows.length===0?n("div",{className:"flex-1 flex items-center justify-center p-8 bg-[#F8F7F6]",children:d("div",{className:"text-center text-gray-500",children:[n("p",{className:"text-lg font-medium mb-2",children:"No Execution Flows"}),n("p",{className:"text-sm",children:"Re-analyze this entity to generate execution flows."})]})}):n("div",{className:"flex-1 overflow-auto bg-[#fafafa]",children:d("div",{className:"p-6 space-y-6",children:[d("div",{className:"bg-white border border-gray-200 rounded-lg p-4",children:[n("h2",{className:"text-lg font-semibold text-gray-900 m-0 mb-3",children:"Scenarios Breakdown"}),d("div",{className:"grid grid-cols-4 gap-4 text-center",children:[d("div",{className:"bg-gray-50 rounded-lg p-3",children:[n("div",{className:"text-2xl font-bold text-gray-900",children:c.length}),n("div",{className:"text-xs text-gray-500",children:"Scenarios"})]}),d("div",{className:"bg-gray-50 rounded-lg p-3",children:[n("div",{className:"text-2xl font-bold text-gray-900",children:i.executionFlows.length}),n("div",{className:"text-xs text-gray-500",children:"Execution Flows"})]}),d("div",{className:"bg-gray-50 rounded-lg p-3",children:[d("div",{className:"text-2xl font-bold text-gray-900",children:[i.coveredFlows,"/",i.totalFlows]}),n("div",{className:"text-xs text-gray-500",children:"Flows Covered"})]}),d("div",{className:"bg-gray-50 rounded-lg p-3",children:[d("div",{className:`text-2xl font-bold ${i.coveragePercentage===100?"text-green-600":i.coveragePercentage>=50?"text-amber-600":"text-red-600"}`,children:[i.coveragePercentage.toFixed(0),"%"]}),n("div",{className:"text-xs text-gray-500",children:"Coverage"})]})]})]}),d("div",{className:"bg-white border border-gray-200 rounded-lg overflow-hidden",children:[n("div",{className:"px-4 py-3 border-b border-gray-100 bg-gray-50",children:d("h3",{className:"text-sm font-semibold text-gray-900 m-0",children:["Scenarios (",c.length,")"]})}),n("div",{className:"divide-y divide-gray-100",children:c.length===0?d("div",{className:"p-4 text-center text-gray-500 text-sm",children:["No scenarios yet."," ",n(ve,{to:`/entity/${t}/create-scenario`,className:"text-blue-600 hover:underline",children:"Create one"})]}):c.map(u=>{var f,g,y;const h=(g=(f=u.metadata)==null?void 0:f.screenshotPaths)==null?void 0:g[0],m=p(u);return d("div",{className:"p-4 flex gap-4",children:[n("div",{className:"w-72 h-40 shrink-0 bg-gray-100 rounded overflow-hidden flex items-start justify-center",children:n(rt,{screenshotPath:h,alt:u.name||"Scenario screenshot",className:"max-w-full max-h-full object-contain object-top"})}),d("div",{className:"flex-1 min-w-0",children:[n("div",{className:"flex items-start justify-between gap-2",children:d("div",{children:[n(ve,{to:`/entity/${t}/scenarios/${u.id}`,className:"font-medium text-gray-900 hover:text-blue-600 no-underline text-sm",children:u.name}),((y=u.metadata)==null?void 0:y.error)&&n("span",{className:"ml-2 text-xs px-1.5 py-0.5 bg-red-100 text-red-700 rounded",children:"Error"})]})}),n("p",{className:"text-xs text-gray-500 mt-1 line-clamp-2",children:u.description}),m.length>0&&n("div",{className:"flex flex-wrap gap-1 mt-2",children:m.map(x=>n("span",{className:`text-xs px-1.5 py-0.5 rounded ${x.isError?"bg-red-50 text-red-700":x.blocksOtherFlows?"bg-purple-50 text-purple-700":"bg-blue-50 text-blue-700"}`,children:x.name},x.id))})]})]},u.id)})}),n("div",{className:"px-4 py-3 border-t border-gray-100 bg-gray-50",children:d(ve,{to:`/entity/${t}/create-scenario`,className:"w-full px-4 py-2 text-sm font-medium text-blue-600 bg-blue-50 rounded-lg hover:bg-blue-100 flex items-center justify-center gap-2 no-underline",children:[n("span",{className:"text-lg leading-none",children:"+"}),"Add Scenario"]})})]}),l.length>0&&d("div",{className:"p-3 bg-amber-50 border border-amber-200 rounded-lg",children:[d("p",{className:"text-sm text-amber-800 font-medium mb-2",children:[l.length," uncovered execution flow",l.length>1?"s":""," — consider adding scenarios to cover these"]}),d("div",{className:"flex flex-wrap gap-1",children:[l.slice(0,10).map(u=>d("span",{className:`text-xs px-2 py-0.5 rounded ${u.impact==="high"?"bg-red-100 text-red-700":"bg-amber-100 text-amber-700"}`,children:[u.name,u.impact==="high"&&" (high impact)"]},u.id)),l.length>10&&d("span",{className:"text-xs text-amber-600",children:["+",l.length-10," more"]})]})]}),d("div",{className:"bg-white border border-gray-200 rounded-lg overflow-hidden",children:[n("div",{className:"px-4 py-3 border-b border-gray-100 bg-gray-50",children:d("h3",{className:"text-sm font-semibold text-gray-900 m-0",children:["Execution Flows (",i.executionFlows.length,")"]})}),n("div",{className:"divide-y divide-gray-100",children:i.executionFlows.map(u=>{const h=a===u.id,m=u.usedInScenarios.length>0;return d("div",{children:[n("button",{onClick:()=>o(h?null:u.id),className:"w-full px-4 py-3 flex items-start justify-between text-left bg-transparent border-none cursor-pointer hover:bg-gray-50",children:d("div",{className:"flex items-start gap-3 flex-1",children:[n("span",{className:"text-gray-400 text-sm mt-0.5 shrink-0",children:h?"▼":"▶"}),d("div",{className:"flex-1",children:[d("div",{className:"flex items-center gap-2 flex-wrap",children:[n("span",{className:"font-medium text-sm text-gray-900",children:u.name}),m?n("span",{className:"text-xs px-2 py-0.5 rounded bg-green-100 text-green-700",children:"Covered"}):n("span",{className:"text-xs px-2 py-0.5 rounded bg-amber-100 text-amber-700",children:"Uncovered"}),u.blocksOtherFlows&&n("span",{className:"text-xs px-2 py-0.5 rounded bg-purple-100 text-purple-700",children:"Blocking"}),u.impact==="high"&&n("span",{className:"text-xs px-2 py-0.5 rounded bg-red-100 text-red-700",children:"High Impact"}),u.isError&&n("span",{className:"text-xs px-2 py-0.5 rounded bg-red-100 text-red-700",children:"Error"})]}),u.description&&n("p",{className:"text-sm text-gray-600 mt-1 m-0",children:u.description})]})]})}),h&&d("div",{className:"border-t border-gray-100 px-4 py-3 bg-gray-50/50",children:[u.requiredValues.length>0&&d("div",{className:"mb-4",children:[n("p",{className:"text-xs font-medium text-gray-500 uppercase mb-2",children:"Required Values"}),n("div",{className:"space-y-1",children:u.requiredValues.map((f,g)=>d("div",{className:"flex items-center gap-2 text-xs",children:[n("code",{className:"font-mono text-gray-800 bg-gray-100 px-1 py-0.5 rounded",children:f.attributePath}),n("span",{className:"text-gray-400",children:f.comparison}),n("code",{className:"font-mono text-blue-700 bg-blue-50 px-1 py-0.5 rounded",children:f.value})]},g))})]}),m&&d("div",{children:[n("p",{className:"text-xs font-medium text-gray-500 uppercase mb-2",children:"Covered by Scenarios"}),n("div",{className:"flex flex-wrap gap-1",children:u.usedInScenarios.map(f=>n("span",{className:"text-xs px-1.5 py-0.5 bg-green-50 text-green-700 rounded",children:f.name},f.id))})]}),u.codeSnippet&&d("div",{className:"mt-4 pt-3 border-t border-gray-200",children:[n("p",{className:"text-xs font-medium text-gray-500 uppercase mb-2",children:"Code Location"}),n("pre",{className:"text-xs bg-gray-900 text-gray-100 p-2 rounded overflow-x-auto font-mono whitespace-pre-wrap",children:n("code",{children:u.codeSnippet})})]})]})]},u.id)})})]})]})}):n("div",{className:"flex-1 flex items-center justify-center p-8 bg-[#F8F7F6]",children:d("div",{className:"text-center text-gray-500",children:[n("p",{className:"text-lg font-medium mb-2",children:"No Analysis Found"}),n("p",{className:"text-sm",children:"Analyze this entity to see the scenarios breakdown."})]})})}function al({hasIndirectBadge:e,onAnalyze:t}){return d(ye,{children:[n("div",{className:"px-5 py-3 bg-white border-b border-[#e1e1e1]",children:d("div",{className:"flex items-center justify-end gap-2",children:[e&&n("span",{className:"px-[5px] py-0 h-[25px] flex items-center bg-[#fce8c5] text-[#ef4444] rounded text-xs font-medium leading-5",children:"Indirect"}),n("span",{className:"px-[5px] py-0 h-[25px] flex items-center bg-[#efefef] text-[#3e3e3e] rounded text-xs font-medium leading-5",children:"0 scenarios"})]})}),d("div",{className:"px-5 py-5 bg-white rounded-bl-lg rounded-br-lg flex items-center justify-between",children:[n("p",{className:"text-sm font-normal text-[#8e8e8e] m-0 leading-[22px]",children:"No analyses available for this version."}),n("button",{className:"px-[15px] py-0 h-[23px] bg-[#005c75] text-white rounded text-xs font-medium leading-5 border-none cursor-pointer hover:bg-[#004a5e] transition-colors flex items-center justify-center",onClick:t,children:"Analyze"})]})]})}function xN({entity:e,history:t}){const[r,s]=M("entity"),[a,o]=M(new Set),i=t.filter(u=>u.analyses.length>0).length,l=ae(()=>{const u=new Map;return t.forEach(h=>{h.analyses.forEach(m=>{(m.scenarios??[]).filter(g=>{var y;return!((y=g.metadata)!=null&&y.sameAsDefault)}).forEach(g=>{u.has(g.name)||u.set(g.name,[]),u.get(g.name).push({version:h,analysis:m,scenario:g})})})}),Array.from(u.entries()).map(([h,m])=>{var f;return{name:h,description:((f=m[0])==null?void 0:f.scenario.description)||"",versions:m.sort((g,y)=>{const x=new Date(g.analysis.createdAt||0).getTime();return new Date(y.analysis.createdAt||0).getTime()-x})}})},[t]),c=l.length,p=u=>{o(h=>{const m=new Set(h);return m.has(u)?m.delete(u):m.add(u),m})};return n("div",{className:"flex-1 bg-[#f9f9f9] overflow-auto",children:d("div",{className:"max-w-[1400px] mx-auto px-8 py-8",children:[n("div",{className:"mb-8",children:d("div",{className:"flex items-center gap-6 border-b-2 border-[#e1e1e1]",children:[d("button",{onClick:()=>s("entity"),className:`flex items-center gap-2 px-0 py-3 border-b-2 transition-colors bg-transparent cursor-pointer ${r==="entity"?"border-[#005c75] text-[#232323]":"border-transparent text-[#626262] hover:text-[#232323]"}`,children:[n("span",{className:"text-base font-semibold leading-6",children:"Entity History"}),n("span",{className:`flex items-center justify-center min-w-[22px] h-[22px] px-[5px] rounded-lg text-xs font-medium leading-5 ${r==="entity"?"bg-[#e0e9ec] text-[#005c75]":"bg-[#ebf0f2] text-[#626262]"}`,children:i})]}),d("button",{onClick:()=>s("scenarios"),className:`flex items-center gap-2 px-0 py-3 border-b-2 transition-colors bg-transparent cursor-pointer ${r==="scenarios"?"border-[#005c75] text-[#232323]":"border-transparent text-[#626262] hover:text-[#232323]"}`,children:[n("span",{className:"text-base font-normal leading-6",children:"Scenario Changes"}),n("span",{className:`flex items-center justify-center min-w-[22px] h-[22px] px-[5px] rounded-lg text-xs font-medium leading-5 ${r==="scenarios"?"bg-[#e0e9ec] text-[#005c75]":"bg-[#ebf0f2] text-[#626262]"}`,children:c})]})]})}),t.length===0?n("div",{className:"bg-white rounded-lg border border-gray-200 p-12 text-center",children:n("p",{className:"text-gray-500 text-base m-0",children:"No history available"})}):r==="entity"?d("div",{className:"relative pl-12",children:[t.length>1&&n("div",{className:"absolute left-[17.5px] top-10 bottom-10 w-px bg-[#c7c7c7]"}),t.map((u,h)=>d("div",{className:"relative mb-12 last:mb-0",children:[n("div",{className:"absolute left-[-35px] top-[19px] w-[11.5px] h-[11.5px] rounded-full bg-[#00925d]"}),d("div",{className:"bg-white rounded-lg border border-[#e1e1e1] overflow-hidden",children:[n("div",{className:"px-5 py-3 bg-[#f6f9fc] border-b border-[#e1e1e1]",children:d("div",{className:"flex items-center justify-between",children:[d("div",{className:"flex items-center gap-3",children:[u.sha===(e==null?void 0:e.sha)&&n("span",{className:"px-[5px] py-0 h-[25px] flex items-center bg-[#deeafc] text-[#2f80ed] rounded text-xs font-medium leading-5",children:"Current Version"}),d(ve,{to:`/entity/${u.sha}/scenarios`,className:"text-xs font-mono text-[#646464] leading-5 hover:text-[#005c75] transition-colors",children:["SHA:"," ",n("span",{className:"text-[#3e3e3e] hover:text-[#005c75]",children:u.sha.substring(0,8)})]})]}),n("span",{className:"text-xs font-medium text-[#8e8e8e] leading-[22px]",children:u.createdAt&&new Date(u.createdAt).toLocaleString("en-US",{month:"2-digit",day:"2-digit",year:"2-digit",hour:"2-digit",minute:"2-digit",hour12:!1})})]})}),u.analyses.length>0?n("div",{children:u.analyses.map((m,f)=>{var y;const g=(m.scenarios??[]).filter(x=>{var w;return!((w=x.metadata)!=null&&w.sameAsDefault)});return n("div",{children:g.length===0?n(al,{hasIndirectBadge:m.indirect,onAnalyze:()=>{console.log("Analyze version:",u.sha)}}):d(ye,{children:[n("div",{className:"px-5 py-3 bg-white border-b border-[#e1e1e1]",children:d("div",{className:"flex items-center justify-end gap-2",children:[m.indirect&&n("span",{className:"px-[5px] py-0 h-[25px] flex items-center bg-[#fce8c5] text-[#ef4444] rounded text-xs font-medium leading-5",children:"Indirect"}),d("span",{className:"px-[5px] py-0 h-[25px] flex items-center bg-[#efefef] text-[#3e3e3e] rounded text-xs font-medium leading-5",children:[g.length," scenario",g.length!==1?"s":""]})]})}),((y=m.metadata)==null?void 0:y.scenarioChangesOverview)&&n("div",{className:"p-5 bg-[#f6f9fc] border-b border-[#e1e1e1]",children:d("p",{className:"text-sm text-[#005c75] m-0 leading-[22px]",children:[d("span",{className:"font-medium",children:["What Changed:"," "]}),m.metadata.scenarioChangesOverview]})}),g.length>0&&n("div",{className:"p-5 bg-white",children:n("div",{className:"flex gap-4 flex-wrap",children:g.map((x,w)=>{var N,k;const b=(k=(N=x.metadata)==null?void 0:N.screenshotPaths)==null?void 0:k[0],v=`${x.name}-${w}`;return d(ve,{to:`/entity/${u.sha}/scenarios/${x.id}`,className:"w-[187px] border border-[#e1e1e1] rounded bg-white overflow-hidden hover:border-[#005c75] hover:shadow-sm transition-all",children:[n("div",{className:"h-[110px] border-b border-[#e1e1e1] bg-gray-50 flex items-center justify-center p-[5.6px]",children:b?n(rt,{screenshotPath:b,alt:x.name,className:"max-w-full max-h-full object-contain rounded-sm"}):d("div",{className:"flex flex-col items-center gap-1",children:[n("span",{className:"text-gray-400 text-xl",children:"📷"}),n("span",{className:"text-gray-400 text-[10px]",children:"No Screenshot"})]})}),n("div",{className:"p-[5.6px]",children:n("p",{className:"text-[10.2px] font-medium text-[#343434] m-0 leading-[13px] line-clamp-3",children:x.name})})]},v)})})})]})},m.id||f)})}):n(al,{onAnalyze:()=>{console.log("Analyze version:",u.sha)}})]})]},u.sha))]}):n("div",{className:"relative pl-12",children:l.length===0?n("div",{className:"bg-white rounded-lg border border-gray-200 p-12 text-center",children:n("p",{className:"text-gray-500 text-base m-0",children:"No scenarios found"})}):l.map((u,h)=>{const m=a.has(u.name),f=m?u.versions:u.versions.slice(0,1),g=u.versions.length-1,y=u.versions[0];return y==null||y.version.sha,e==null||e.sha,d("div",{className:"relative mb-12 last:mb-0",children:[n("div",{className:"absolute left-[-35px] top-[42px] w-[13.26px] h-[13.26px] rounded-full bg-[#00925d]"}),d("div",{className:"bg-white rounded-lg border border-[#e1e1e1] overflow-hidden",children:[d("div",{className:"px-5 py-5 bg-[#f6f9fc] border-b border-[#e1e1e1]",children:[n("h3",{className:"text-base font-semibold text-[#232323] m-0 mb-1 leading-6",children:u.name}),u.description&&n("p",{className:"text-sm font-normal text-[#626262] m-0 leading-[22px]",children:u.description})]}),d("div",{className:"p-5 bg-white",children:[f.map((x,w)=>{var C,S;const{version:b,analysis:v,scenario:N}=x,k=(S=(C=N.metadata)==null?void 0:C.screenshotPaths)==null?void 0:S[0],E=w===0;return d("div",{className:`flex gap-5 items-start ${E?"":"mt-5 pt-5 border-t border-[#e1e1e1]"}`,children:[n(ve,{to:`/entity/${b.sha}/scenarios/${N.id}`,className:"w-[175px] h-[110px] border border-[#e1e1e1] rounded bg-gray-50 flex items-center justify-center shrink-0 hover:border-[#005c75] hover:shadow-sm transition-all",children:k?n(rt,{screenshotPath:k,alt:N.name,className:"max-w-full max-h-full object-contain rounded-sm"}):d("div",{className:"flex flex-col items-center gap-1",children:[n("span",{className:"text-gray-400 text-xl",children:"📷"}),n("span",{className:"text-gray-400 text-[10px]",children:"No screenshot"})]})}),d("div",{className:"flex-1 flex flex-col gap-2",children:[d("div",{className:"flex items-center gap-2 flex-wrap",children:[b.sha===(e==null?void 0:e.sha)&&n("span",{className:"px-[5px] py-0 h-[25px] flex items-center bg-[#deeafc] text-[#2f80ed] rounded text-xs font-medium leading-5",children:"Current Version"}),E&&u.versions.length>1&&d("span",{className:"px-[5px] py-0 h-[25px] flex items-center bg-[#e0e9ec] text-[#005c75] rounded text-xs font-medium leading-5",children:[u.versions.length," versions"]})]}),d(ve,{to:`/entity/${b.sha}/scenarios`,className:"text-xs font-mono text-[#646464] m-0 leading-5 hover:text-[#005c75] transition-colors w-fit",children:["SHA:"," ",n("span",{className:"text-[#3e3e3e] hover:text-[#005c75]",children:b.sha.substring(0,8)})]}),v.createdAt&&d("p",{className:"text-xs font-medium text-[#8e8e8e] m-0 leading-[22px]",children:["Captured:"," ",new Date(v.createdAt).toLocaleString("en-US",{month:"2-digit",day:"2-digit",year:"2-digit",hour:"2-digit",minute:"2-digit",hour12:!1})]}),v.indirect&&n("span",{className:"px-[5px] py-0 h-[25px] flex items-center bg-[#fce8c5] text-[#ef4444] rounded text-xs font-medium leading-5 self-start",children:"Indirect"})]})]},`${b.sha}-${w}`)}),g>0&&d("button",{onClick:()=>p(u.name),className:"mt-5 flex items-center gap-2 text-sm text-[#005c75] bg-transparent border-none cursor-pointer p-0 hover:underline",children:[n("svg",{width:"16",height:"16",viewBox:"0 0 16 16",fill:"none",className:`transition-transform ${m?"rotate-180":""}`,children:n("path",{d:"M4 6L8 10L12 6",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})}),m?"Hide":`${g} previous version${g!==1?"s":""}`]})]})]})]},u.name)})})]})})}function ol({entity:e,analysisInfo:t,from:r}){const s=Je(),a=s.state!=="idle",o=e.entityType==="visual"||e.entityType==="library",i=l=>{l.preventDefault(),l.stopPropagation(),o&&s.submit({entitySha:e.sha,filePath:e.filePath},{method:"post",action:"/api/analyze"})};return n(ve,{to:`/entity/${e.sha}${r?`?from=${r}`:""}`,className:"block group cursor-pointer",children:d("div",{className:"flex gap-0 border border-gray-200 rounded-lg overflow-hidden transition-all hover:border-[#005c75] hover:shadow-md bg-white h-[100px]",children:[e.screenshotPath?n("div",{className:"w-[125px] h-full bg-gray-50 flex items-center justify-center shrink-0 rounded-bl-[8px] rounded-tl-[8px] border-r border-gray-200",children:n(rt,{screenshotPath:e.screenshotPath,alt:e.name,className:"max-w-full max-h-full object-contain"})}):n("div",{className:"w-[125px] h-full bg-[#efefef] flex items-center justify-center shrink-0 rounded-bl-[8px] rounded-tl-[8px] border-r border-gray-200",children:n("span",{className:"text-[40px]",children:n(ut,{type:e.entityType})})}),d("div",{className:"flex-1 flex items-center justify-between px-4 min-w-0",children:[d("div",{className:"flex-1 min-w-0",children:[d("div",{className:"flex items-center gap-2 mb-1",children:[n(ut,{type:e.entityType}),n("div",{className:"text-base font-medium text-black truncate group-hover:text-[#005c75] transition-colors",children:e.name})]}),n("div",{className:"text-[10px] text-[#8e8e8e] truncate mb-1 font-mono",title:e.filePath,children:e.filePath}),t.hasScenarios&&d("div",{className:"flex items-center gap-2 mt-2",children:[d("span",{className:"px-[5px] py-0 bg-[#efefef] text-[#3e3e3e] rounded text-[10px] font-medium",children:[t.scenarioCount," scenarios"]}),n("span",{className:"text-xs text-[#8e8e8e]",children:t.timestamp})]})]}),n("div",{className:"shrink-0 ml-4",children:t.status==="not_analyzed"?d(ye,{children:[d("div",{className:"flex items-center gap-1 px-3 py-1 bg-[#f9f9f9] border border-[#e1e1e1] rounded mb-2",children:[n("div",{className:"w-2 h-2 rounded-full bg-[#c7c7c7]"}),n("span",{className:"text-[10px] font-semibold text-[#646464]",children:"Not analyzed"})]}),o&&n("button",{className:`w-full px-3 py-1 bg-[#005c75] text-white border-none rounded text-[10px] font-medium transition-colors ${a?"cursor-wait opacity-70":"cursor-pointer hover:bg-[#004a5c]"}`,onClick:i,disabled:a,children:a?"Analyzing...":"Analyze"})]}):t.status==="up_to_date"?d("div",{className:"flex items-center gap-1 px-3 py-1 bg-[#f2fcf9] border border-[#c8f2e3] rounded",children:[n("div",{className:"w-2 h-2 rounded-full bg-[#00925d]"}),n("span",{className:"text-[10px] font-semibold text-[#00925d]",children:"Up to date"})]}):d(ye,{children:[d("div",{className:"flex items-center gap-1 px-3 py-1 bg-[#e0e9ec] border border-[#e0e9ec] rounded mb-2",children:[n("div",{className:"w-2 h-2 rounded-full bg-[#005c75]"}),n("span",{className:"text-[10px] font-semibold text-[#005c75]",children:"Out of date"})]}),o&&n("button",{className:`w-full px-3 py-1 bg-[#005c75] text-white border-none rounded text-[10px] font-medium transition-colors ${a?"cursor-wait opacity-70":"cursor-pointer hover:bg-[#004a5c]"}`,onClick:i,disabled:a,children:a?"Analyzing...":"Analyze"})]})})]})]})},e.sha)}const il=e=>{var a,o,i;const t=((a=e.analysisStatus)==null?void 0:a.status)||"not_analyzed",r=((o=e.analysisStatus)==null?void 0:o.scenarioCount)||0,s=(i=e.analysisStatus)==null?void 0:i.timestamp;return t==="not_analyzed"?{status:"not_analyzed",label:"Not analyzed",color:"gray"}:t==="up_to_date"?{status:"up_to_date",label:"Up to date",color:"green",hasScenarios:r>0,scenarioCount:r,timestamp:s}:{status:"out_of_date",label:"Out of date",color:"teal",hasScenarios:r>0,scenarioCount:r,timestamp:s}};function bN({importedEntities:e,importingEntities:t}){const[r]=Bn(),s=r.get("from"),a=Je(),o=a.state!=="idle",i=e.length>0,l=t.length>0,c=m=>m.filter(f=>f.entityType==="visual"||f.entityType==="library"),p=m=>{const f=c(m);f.length!==0&&a.submit({entityShas:f.map(g=>g.sha).join(",")},{method:"post",action:"/api/analyze"})},u=c(e).length>0,h=c(t).length>0;return n("div",{className:"max-w-[1400px] mx-auto",children:d("div",{className:"grid grid-cols-1 lg:grid-cols-2 gap-8",children:[d("div",{className:"bg-white rounded-lg border border-[#e1e1e1] overflow-hidden",children:[d("div",{className:"px-6 py-4 flex items-start justify-between",children:[d("div",{children:[d("div",{className:"flex items-center gap-2 mb-1",children:[n("h3",{className:"text-base font-semibold text-black m-0 leading-6",children:"Imports"}),n("span",{className:"px-2 h-[20.464px] flex items-center justify-center bg-[#deeafc] text-[#2f80ed] rounded-[9.095px] text-xs font-semibold leading-5",children:e.length})]}),n("p",{className:"text-sm text-[#646464] m-0 leading-[22px]",children:"Entities imported by this component."})]}),u&&n("button",{onClick:()=>p(e),disabled:o,className:`px-[10px] py-[5px] bg-[#005c75] text-white border-none rounded text-xs font-medium transition-colors ${o?"cursor-wait opacity-70":"cursor-pointer hover:bg-[#004a5c]"}`,children:o?"Analyzing...":"Analyze All"})]}),i?n("div",{className:"p-6 space-y-4",children:e.map(m=>n(ol,{entity:m,analysisInfo:il(m),from:s},m.sha))}):n("div",{className:"bg-[#f6f9fc] h-[339.923px] flex items-center justify-center",children:n("p",{className:"text-sm text-[#646464] m-0 leading-[22px]",children:"No imports."})})]}),d("div",{className:"bg-white rounded-lg border border-[#e1e1e1] overflow-hidden",children:[d("div",{className:"px-6 py-4 flex items-start justify-between",children:[d("div",{children:[d("div",{className:"flex items-center gap-2 mb-1",children:[n("h3",{className:"text-base font-semibold text-black m-0 leading-6",children:"Imported By"}),n("span",{className:"px-2 h-[20.464px] flex items-center justify-center bg-[#f3eefe] text-[#9b51e0] rounded-[9.095px] text-xs font-semibold leading-5",children:t.length})]}),n("p",{className:"text-sm text-[#646464] m-0 leading-[22px]",children:"Entities that import this component."})]}),h&&n("button",{onClick:()=>p(t),disabled:o,className:`px-[10px] py-[5px] bg-[#005c75] text-white border-none rounded text-xs font-medium transition-colors ${o?"cursor-wait opacity-70":"cursor-pointer hover:bg-[#004a5c]"}`,children:o?"Analyzing...":"Analyze All"})]}),l?n("div",{className:"p-6 space-y-4",children:t.map(m=>n(ol,{entity:m,analysisInfo:il(m),from:s},m.sha))}):n("div",{className:"bg-[#f6f9fc] h-[339.923px] flex items-center justify-center",children:n("p",{className:"text-sm text-[#646464] m-0 leading-[22px] text-center",children:"Not imported by any entity."})})]})]})})}function wN({relatedEntities:e}){return n("div",{className:"flex-1 bg-[#f9f9f9] overflow-auto p-8",children:n(bN,{importedEntities:e.importedEntities,importingEntities:e.importingEntities})})}function vN({data:e,defaultExpanded:t=!1,maxDepth:r=3}){return n("div",{className:"font-mono text-sm",children:n(Nr,{data:e,depth:0,defaultExpanded:t,maxDepth:r})})}function Nr({data:e,depth:t,defaultExpanded:r,maxDepth:s,objectKey:a,showInlineToggle:o=!1}){const[i,l]=M(r||t<2);if(se(()=>{l(r||t<2)},[r,t]),e===null)return n("span",{className:"text-gray-500",children:"null"});if(e===void 0)return n("span",{className:"text-gray-500",children:"undefined"});const c=typeof e;if(c==="string")return d("span",{className:"text-green-600",children:['"',e,'"']});if(c==="number")return n("span",{className:"text-blue-600",children:e});if(c==="boolean")return n("span",{className:"text-purple-600",children:e.toString()});if(Array.isArray(e))return e.length===0?n("span",{className:"text-gray-600",children:"[]"}):d("span",{children:[d("button",{className:"text-gray-600 hover:text-gray-900 cursor-pointer bg-transparent border-none p-0 font-mono hover:bg-gray-100 rounded",onClick:()=>l(!i),children:[d("span",{children:[i?"▼":"▶"," ","["]}),!i&&d("span",{children:[e.length,"]"]})]}),i?d(ye,{children:[n("div",{className:"ml-4 border-l-2 border-gray-200 pl-3 mt-1",children:e.map((p,u)=>n("div",{className:"py-0.5",children:n(Nr,{data:p,depth:t+1,defaultExpanded:r,maxDepth:s})},u))}),n("div",{className:"text-gray-600",children:"]"})]}):null]});if(c==="object"){const p=Object.keys(e);if(p.length===0)return n("span",{className:"text-gray-600",children:"{}"});const u=m=>m!==null&&typeof m=="object"&&!Array.isArray(m)&&Object.keys(m).length>0,h=m=>Array.isArray(m)&&m.length>0;return d("span",{children:[d("button",{className:"text-gray-600 hover:text-gray-900 cursor-pointer bg-transparent border-none p-0 font-mono hover:bg-gray-100 rounded",onClick:()=>l(!i),children:[d("span",{children:[i?"▼":"▶"," ","{"]}),!i&&d("span",{children:[p.length,"}"]})]}),i?d(ye,{children:[n("div",{className:"ml-4 border-l-2 border-gray-200 pl-3 mt-1",children:p.map(m=>{const f=e[m],g=u(f),y=h(f);return n("div",{className:"py-0.5",children:g?n(Vo,{propertyKey:m,value:f,depth:t,defaultExpanded:r,maxDepth:s}):y?n(Go,{propertyKey:m,value:f,depth:t,defaultExpanded:r,maxDepth:s}):d(ye,{children:[d("span",{className:"text-orange-600",children:[m,": "]}),n(Nr,{data:f,depth:t+1,defaultExpanded:r,maxDepth:s})]})},m)})}),n("div",{className:"text-gray-600",children:"}"})]}):null]})}return n("span",{className:"text-gray-500",children:String(e)})}function Vo({propertyKey:e,value:t,depth:r,defaultExpanded:s,maxDepth:a}){const[o,i]=M(s||r<2),l=Object.keys(t);return se(()=>{i(s||r<2)},[s,r]),d(ye,{children:[d("button",{className:"cursor-pointer bg-transparent border-none p-0 font-mono hover:bg-gray-100 rounded inline-flex items-baseline",style:{marginLeft:"-14px"},onClick:()=>i(!o),children:[n("span",{className:"text-gray-600 hover:text-gray-900 mr-1",children:o?"▼":"▶"}),d("span",{className:"text-orange-600",children:[e,": "]}),n("span",{className:"text-gray-600 ml-0.5",children:"{"}),!o&&d("span",{className:"text-gray-600",children:[l.length,"}"]})]}),o&&d(ye,{children:[n("div",{className:"ml-4 border-l-2 border-gray-200 pl-3 mt-1",children:l.map(c=>{const p=t[c],u=p!==null&&typeof p=="object"&&!Array.isArray(p)&&Object.keys(p).length>0,h=Array.isArray(p)&&p.length>0;return n("div",{className:"py-0.5",children:u?n(Vo,{propertyKey:c,value:p,depth:r+1,defaultExpanded:s,maxDepth:a}):h?n(Go,{propertyKey:c,value:p,depth:r+1,defaultExpanded:s,maxDepth:a}):d(ye,{children:[d("span",{className:"text-orange-600",children:[c,": "]}),n(Nr,{data:p,depth:r+2,defaultExpanded:s,maxDepth:a})]})},c)})}),n("div",{className:"text-gray-600",children:"}"})]})]})}function Go({propertyKey:e,value:t,depth:r,defaultExpanded:s,maxDepth:a}){const[o,i]=M(s||r<2);return se(()=>{i(s||r<2)},[s,r]),d(ye,{children:[d("button",{className:"cursor-pointer bg-transparent border-none p-0 font-mono hover:bg-gray-100 rounded inline-flex items-baseline",style:{marginLeft:"-14px"},onClick:()=>i(!o),children:[n("span",{className:"text-gray-600 hover:text-gray-900 mr-1",children:o?"▼":"▶"}),d("span",{className:"text-orange-600",children:[e,": "]}),n("span",{className:"text-gray-600 ml-0.5",children:"["}),!o&&d("span",{className:"text-gray-600",children:[t.length,"]"]})]}),o&&d(ye,{children:[n("div",{className:"ml-4 border-l-2 border-gray-200 pl-3 mt-1",children:t.map((l,c)=>{const p=l!==null&&typeof l=="object"&&!Array.isArray(l)&&Object.keys(l).length>0,u=Array.isArray(l)&&l.length>0;return n("div",{className:"py-0.5",children:p?n(Vo,{propertyKey:c.toString(),value:l,depth:r+1,defaultExpanded:s,maxDepth:a}):u?n(Go,{propertyKey:c.toString(),value:l,depth:r+1,defaultExpanded:s,maxDepth:a}):n(Nr,{data:l,depth:r+2,defaultExpanded:s,maxDepth:a})},c)})}),n("div",{className:"text-gray-600",children:"]"})]})]})}function ja({label:e,count:t,isActive:r,onClick:s,badgeColorActive:a,badgeTextActive:o}){return d("button",{onClick:s,className:`px-6 py-3 text-sm font-medium relative transition-colors cursor-pointer ${r?"text-[#005c75]":"text-[#3e3e3e] hover:text-gray-900 hover:bg-gray-50"}`,children:[e,t!==void 0&&n("span",{className:`ml-2 px-2 py-0.5 rounded-full text-xs font-semibold ${r?`${a} ${o}`:"bg-gray-200 text-gray-700"}`,children:t}),r&&n("div",{className:"absolute bottom-0 left-0 right-0 h-0.5 bg-[#005c75]"})]})}function ll({label:e,isActive:t,onClick:r,disabled:s=!1}){return n("button",{onClick:r,className:`w-full text-left px-3 py-2.5 rounded-md transition-all text-sm cursor-pointer ${t?"bg-[#f6f9fc] text-[#005c75] font-medium border-l-2 border-[#005c75] pl-[10px]":"text-[#3e3e3e] hover:bg-gray-50"}`,disabled:s,children:e})}function cl({call:e,scenarioName:t}){const[r,s]=M(!1),[a,o]=M("system"),i=m=>new Date(m).toLocaleString("en-US",{month:"2-digit",day:"2-digit",year:"2-digit",hour:"2-digit",minute:"2-digit",hour12:!1}),l=m=>m?`$${m.toFixed(4)}`:null,c=(m,f)=>{if(!m&&!f)return null;const g=[];return m&&g.push(`${m.toLocaleString()} in`),f&&g.push(`${f.toLocaleString()} out`),g.join(" / ")},p=ae(()=>{var m,f,g,y,x;try{const w=JSON.parse(e.response);return(g=(f=(m=w.choices)==null?void 0:m[0])==null?void 0:f.message)!=null&&g.content?w.choices[0].message.content:(x=(y=w.content)==null?void 0:y[0])!=null&&x.text?w.content[0].text:e.response}catch{return e.response}},[e.response]),u=ae(()=>{try{return JSON.stringify(JSON.parse(e.props),null,2)}catch{return e.props}},[e.props]),h=ae(()=>{var m;if(t)return t;try{const f=JSON.parse(e.props);return((m=f==null?void 0:f.scenario)==null?void 0:m.name)||null}catch{return null}},[e.props,t]);return d("div",{className:"bg-white rounded-lg border border-[#e1e1e1] overflow-hidden",children:[n("div",{className:"px-5 py-4 bg-[#f6f9fc] border-b border-[#e1e1e1] cursor-pointer hover:bg-[#edf2f7] transition-colors",onClick:()=>s(!r),children:d("div",{className:"flex items-start justify-between gap-4",children:[d("div",{className:"flex-1 min-w-0",children:[d("div",{className:"flex items-center gap-2 mb-2 flex-wrap",children:[n("span",{className:"px-2 py-0.5 h-[22px] flex items-center bg-[#005c75] text-white rounded text-[11px] font-medium",children:e.prompt_type}),n("span",{className:"px-2 py-0.5 h-[22px] flex items-center bg-[#efefef] text-[#3e3e3e] rounded text-[11px] font-medium",children:e.model}),h&&n("span",{className:"px-2 py-0.5 h-[22px] flex items-center bg-[#deeafc] text-[#2f80ed] rounded text-[11px] font-medium",children:h}),e.error&&n("span",{className:"px-2 py-0.5 h-[22px] flex items-center bg-[#fce8c5] text-[#ef4444] rounded text-[11px] font-medium",children:"Error"})]}),d("div",{className:"flex items-center gap-4 text-xs text-[#626262]",children:[n("span",{children:i(e.created_at)}),c(e.input_tokens,e.output_tokens)&&n("span",{children:c(e.input_tokens,e.output_tokens)}),l(e.cost)&&n("span",{className:"text-[#005c75] font-medium",children:l(e.cost)})]}),d("div",{className:"text-[11px] text-[#8a8a8a] font-mono mt-1",children:[".codeyam/llm-calls/",e.object_id,"_",e.id,".json"]})]}),n("svg",{width:"20",height:"20",viewBox:"0 0 16 16",fill:"none",className:`transition-transform shrink-0 ${r?"rotate-180":""}`,children:n("path",{d:"M4 6L8 10L12 6",stroke:"#626262",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})})]})}),r&&d("div",{className:"border-t border-[#e1e1e1]",children:[d("div",{className:"flex border-b border-[#e1e1e1] bg-[#fafafa]",children:[n("button",{onClick:()=>o("system"),className:`px-4 py-2 text-[13px] font-medium border-b-2 transition-colors bg-transparent cursor-pointer ${a==="system"?"border-[#005c75] text-[#005c75]":"border-transparent text-[#626262] hover:text-[#232323]"}`,children:"System"}),n("button",{onClick:()=>o("prompt"),className:`px-4 py-2 text-[13px] font-medium border-b-2 transition-colors bg-transparent cursor-pointer ${a==="prompt"?"border-[#005c75] text-[#005c75]":"border-transparent text-[#626262] hover:text-[#232323]"}`,children:"Prompt"}),n("button",{onClick:()=>o("response"),className:`px-4 py-2 text-[13px] font-medium border-b-2 transition-colors bg-transparent cursor-pointer ${a==="response"?"border-[#005c75] text-[#005c75]":"border-transparent text-[#626262] hover:text-[#232323]"}`,children:"Response"}),n("button",{onClick:()=>o("props"),className:`px-4 py-2 text-[13px] font-medium border-b-2 transition-colors bg-transparent cursor-pointer ${a==="props"?"border-[#005c75] text-[#005c75]":"border-transparent text-[#626262] hover:text-[#232323]"}`,children:"Context"})]}),a&&d("div",{className:"p-4 bg-white max-h-[400px] overflow-auto",children:[a==="system"&&n("div",{children:e.system_message?n("pre",{className:"text-xs font-mono text-[#3e3e3e] whitespace-pre-wrap bg-[#f6f9fc] p-3 rounded border border-[#e1e1e1] m-0 overflow-auto",children:e.system_message}):n("p",{className:"text-xs text-[#626262] italic m-0",children:"No system message"})}),a==="prompt"&&n("div",{children:n("pre",{className:"text-xs font-mono text-[#3e3e3e] whitespace-pre-wrap bg-[#f6f9fc] p-3 rounded border border-[#e1e1e1] m-0 overflow-auto",children:e.prompt_text})}),a==="response"&&d("div",{children:[e.error&&d("div",{className:"mb-4 p-3 bg-[#fef2f2] border border-[#fecaca] rounded",children:[n("h4",{className:"text-xs font-semibold text-[#dc2626] uppercase mb-1",children:"Error"}),n("p",{className:"text-xs text-[#dc2626] m-0",children:e.error})]}),n("pre",{className:"text-xs font-mono text-[#3e3e3e] whitespace-pre-wrap bg-[#f6f9fc] p-3 rounded border border-[#e1e1e1] m-0 overflow-auto",children:p})]}),a==="props"&&n("pre",{className:"text-xs font-mono text-[#3e3e3e] whitespace-pre-wrap bg-[#f6f9fc] p-3 rounded border border-[#e1e1e1] m-0 overflow-auto",children:u})]}),e.error&&!a&&n("div",{className:"p-4 bg-[#fef2f2] border-t border-[#fecaca]",children:d("p",{className:"text-xs text-[#dc2626] m-0",children:[n("span",{className:"font-semibold",children:"Error: "}),e.error]})})]})]})}const dl=["generateEntityScenarios","analyzeEntity","generateDataStructure","generateEntityDescription"];function NN({entity:e,analysis:t,scenarios:r,onAnalyze:s,llmCalls:a}){var v,N,k,E,C,S,_,j,$;const[o,i]=M("entity"),[l,c]=M("analysis"),[p,u]=M(r.length>0?{scenarioId:r[0].id||r[0].name}:null),[h,m]=M("entity"),{entityLlmCalls:f,scenarioLlmCalls:g,totalLlmCalls:y}=ae(()=>{if(!a)return{entityLlmCalls:[],scenarioLlmCalls:[],totalLlmCalls:0};const P=[...a.entityCalls,...a.analysisCalls],I=P.filter(T=>T.object_type==="entity"||dl.includes(T.prompt_type)),R=P.filter(T=>T.object_type!=="entity"&&!dl.includes(T.prompt_type));return I.sort((T,G)=>G.created_at-T.created_at),R.sort((T,G)=>G.created_at-T.created_at),{entityLlmCalls:I,scenarioLlmCalls:R,totalLlmCalls:P.length}},[a]),x=[{id:"analysis",title:"Analysis",data:t?{id:t.id,status:t.status}:void 0,description:"Analysis metadata including ID and processing status"},{id:"isolatedDataStructure",title:"Isolated Data Structure",data:(v=e==null?void 0:e.metadata)==null?void 0:v.isolatedDataStructure,description:"Entity's own data structure without dependencies"},{id:"mergedDataStructure",title:"Merged Data Structure",data:(N=t==null?void 0:t.metadata)==null?void 0:N.mergedDataStructure,description:"Combined data structure including dependencies"},{id:"conditionalUsages",title:"Conditional Usages",data:(E=(k=e==null?void 0:e.metadata)==null?void 0:k.isolatedDataStructure)==null?void 0:E.conditionalUsages,description:"Attributes used in conditionals (if, ternary, switch, &&) - candidates for key attributes"},{id:"executionFlows",title:"Execution Flows",data:(C=t==null?void 0:t.metadata)==null?void 0:C.executionFlows,description:"Distinct outcomes/behaviors this component can produce"},{id:"importedExports",title:"Imported Dependencies",data:{"Internal Dependencies":(S=e==null?void 0:e.metadata)==null?void 0:S.importedExports,"External Dependencies":(_=e==null?void 0:e.metadata)==null?void 0:_.nodeModuleImports},description:"Internal and external dependencies used by this entity"},{id:"scenariosDataStructure",title:"Scenarios Data Structure",data:(j=t==null?void 0:t.metadata)==null?void 0:j.scenariosDataStructure,description:"Structure template used across all scenarios"}],w=x.filter(P=>P.data!==void 0&&P.data!==null).length;let b=null;if(o==="entity"){const P=x.find(I=>I.id===l);P&&P.data!==void 0&&P.data!==null&&(b={title:P.title,description:P.description,data:P.data})}else if(o==="scenarios"&&p){const P=r.find(I=>(I.id||I.name)===p.scenarioId);P&&(b={title:P.name,description:P.description||"Scenario data and configuration",data:P.metadata})}return d("div",{className:"max-w-[1800px] mx-auto h-full flex flex-col",children:[n("div",{className:"mb-6 shrink-0",children:d("div",{className:"flex border-b border-gray-200 relative",children:[n(ja,{label:"Entity",isActive:o==="entity",onClick:()=>i("entity"),badgeColorActive:"bg-[#e0e9ec]",badgeTextActive:"text-[#005c75]"}),n(ja,{label:"Scenarios",count:r.length,isActive:o==="scenarios",onClick:()=>i("scenarios"),badgeColorActive:"bg-[#ebf0f2]",badgeTextActive:"text-[#626262]"}),n(ja,{label:"LLM Calls",count:y,isActive:o==="llm-calls",onClick:()=>i("llm-calls"),badgeColorActive:"bg-[#ebf0f2]",badgeTextActive:"text-[#626262]"}),(($=t==null?void 0:t.metadata)==null?void 0:$.analyzerVersion)&&d("div",{className:"ml-auto flex items-center text-xs text-gray-500",children:[n("span",{className:"font-medium",children:"Analyzer:"}),n("span",{className:"ml-1 font-mono",children:t.metadata.analyzerVersion})]})]})}),o==="llm-calls"?d("div",{className:"flex-1 min-h-0",children:[d("div",{className:"flex gap-4 mb-4",children:[d("button",{onClick:()=>m("entity"),className:`px-4 py-2 rounded-lg text-sm font-medium transition-colors cursor-pointer ${h==="entity"?"bg-[#005c75] text-white":"bg-white border border-gray-200 text-gray-600 hover:bg-gray-50"}`,children:["Entity Calls (",f.length,")"]}),d("button",{onClick:()=>m("scenario"),className:`px-4 py-2 rounded-lg text-sm font-medium transition-colors cursor-pointer ${h==="scenario"?"bg-[#005c75] text-white":"bg-white border border-gray-200 text-gray-600 hover:bg-gray-50"}`,children:["Scenario Calls (",g.length,")"]})]}),n("div",{className:"space-y-4 overflow-y-auto",style:{maxHeight:"calc(100vh - 350px)"},children:h==="entity"?f.length===0?n("div",{className:"bg-white rounded-lg border border-gray-200 p-8 text-center",children:n("p",{className:"text-gray-500 text-sm m-0",children:"No entity-level LLM calls found"})}):f.map(P=>n(cl,{call:P},P.id)):g.length===0?n("div",{className:"bg-white rounded-lg border border-gray-200 p-8 text-center",children:n("p",{className:"text-gray-500 text-sm m-0",children:"No scenario-level LLM calls found"})}):g.map(P=>n(cl,{call:P},P.id))})]}):d("div",{className:"grid grid-cols-[340px_1fr] gap-6 flex-1 min-h-0",children:[n("div",{className:"bg-white rounded-lg border border-gray-200 p-4 overflow-y-auto",children:o==="entity"?d(ye,{children:[n("h3",{className:"text-xs font-medium text-black mb-3 uppercase tracking-wide",children:"ENTITY SECTIONS"}),w===0?n("p",{className:"text-sm text-[#646464] leading-[22px]",children:"No entity data available."}):n("nav",{className:"space-y-1",children:x.map(P=>{const I=P.data!==void 0&&P.data!==null;return n(ll,{label:P.title,isActive:l===P.id,onClick:()=>c(P.id),disabled:!I},P.id)})})]}):d(ye,{children:[n("h3",{className:"text-xs font-medium text-black mb-3 uppercase tracking-wide",children:"SCENARIOS"}),r.length===0?n("p",{className:"text-sm text-[#646464] leading-[22px]",children:"No scenarios available."}):n("nav",{className:"space-y-1",children:r.map(P=>{const I=P.id||P.name,R=(p==null?void 0:p.scenarioId)===I;return n(ll,{label:P.name,isActive:R,onClick:()=>u({scenarioId:I})},I)})})]})}),n("div",{className:"bg-white rounded-lg border border-gray-200 overflow-hidden flex flex-col",children:b?n(CN,{title:b.title,description:b.description,data:b.data}):o==="scenarios"&&r.length===0?n(ul,{title:"No Simulations Yet",description:"Analyze the code to create simulations and create test scenarios automatically.",onAnalyze:s}):o==="entity"?n(ul,{title:"No Entity Data Yet",description:"Entity data structures will appear here after analysis is complete.",onAnalyze:s}):n("div",{className:"p-6 text-center py-12 text-gray-500",children:"Select a section to view data"})})]})]})}function ul({title:e,description:t,onAnalyze:r}){return d("div",{className:"flex flex-col items-center justify-center h-full bg-[#f6f9fc]",children:[n("h2",{className:"text-[28px] font-semibold text-[#646464] leading-[40px] mb-2 text-center",children:e}),n("p",{className:"text-base text-[#646464] leading-6 mb-6 text-center max-w-[600px]",children:t}),r&&n("button",{onClick:r,className:"h-[54px] w-[183px] bg-[#005c75] text-white text-base font-medium rounded-lg border-none cursor-pointer hover:bg-[#004a5e] transition-colors",children:"Analyze"})]})}function CN({title:e,description:t,data:r}){const[s,a]=M(!0);return d(ye,{children:[d("div",{className:"px-6 py-4 border-b border-gray-200 bg-gray-50",children:[n("h3",{className:"text-base font-semibold text-black m-0",children:e}),n("p",{className:"text-sm text-[#646464] mt-1 m-0",children:t})]}),d("div",{className:"px-6 py-4 bg-white flex justify-between items-center",children:[d("div",{className:"flex gap-2",children:[n("button",{onClick:()=>a(!0),className:`px-4 h-8 text-sm font-medium rounded border-none cursor-pointer transition-colors ${s?"bg-[#005c75] text-white":"bg-[#e0e9ec] hover:bg-[#d0dfe4] text-[#005c75]"}`,children:"Expand All"}),n("button",{onClick:()=>a(!1),className:`px-4 h-8 text-sm font-medium rounded border-none cursor-pointer transition-colors ${s?"bg-[#e0e9ec] hover:bg-[#d0dfe4] text-[#005c75]":"bg-[#005c75] text-white"}`,children:"Collapse All"})]}),n(ht,{content:JSON.stringify(r,null,2),label:"Copy JSON",copiedLabel:"Copied!",className:"px-4 h-8 bg-[#343434] hover:bg-[#232323] text-white text-sm font-medium rounded border-none transition-colors whitespace-nowrap"})]}),n("div",{className:"overflow-y-auto flex-1",children:n("div",{className:"p-6",children:r?n("div",{className:"bg-gray-50 rounded-lg p-3 overflow-x-auto",children:n(vN,{data:r,defaultExpanded:s,maxDepth:99})}):n("div",{className:"text-center py-12 text-gray-500",children:"No data available for this section"})})})]})}function SN({entity:e,analysis:t,scenarios:r,onAnalyze:s}){const a=Je();return se(()=>{if(e!=null&&e.sha&&a.state==="idle"&&!a.data){const o=t!=null&&t.id?`/api/llm-calls/${e.sha}?analysisId=${t.id}`:`/api/llm-calls/${e.sha}`;a.load(o)}},[e==null?void 0:e.sha,t==null?void 0:t.id,a.state,a.data]),n("div",{className:"flex-1 min-h-0 bg-[#f9f9f9] overflow-auto p-8",children:n(NN,{entity:e,analysis:t,scenarios:r,onAnalyze:s,llmCalls:a.data})})}const _N={margin:0,padding:"24px",backgroundColor:"#101827",fontSize:"14px",lineHeight:"1.5"},kN={minWidth:"3em",paddingRight:"1em",color:"#6b7280",userSelect:"none"},EN=2e3,AN=e=>{var r;if(!e)return"typescript";switch((r=e.split(".").pop())==null?void 0:r.toLowerCase()){case"ts":case"tsx":return"typescript";case"js":case"jsx":return"javascript";case"json":return"json";case"css":return"css";default:return"typescript"}};function PN({entity:e,entityCode:t}){const r=Cr(),s=fe(null);return se(()=>{const a=r.hash;if(!a||!s.current)return;const o=a.match(/^#L(\d+)$/);if(!o)return;const i=parseInt(o[1],10);setTimeout(()=>{if(!s.current)return;const l=s.current.querySelector(`[data-line-number="${i}"]`);if(l&&l instanceof HTMLElement){l.scrollIntoView({behavior:"smooth",block:"center"});const c=l.style.backgroundColor;l.style.backgroundColor="rgba(255, 255, 0, 0.2)",setTimeout(()=>{l.style.backgroundColor=c},2e3)}},300)},[r.hash,t]),n("div",{ref:s,className:"flex-1 bg-[#f9f9f9] overflow-auto p-8",children:d("div",{className:"bg-white rounded-tl-lg rounded-tr-lg border border-gray-200 overflow-hidden",children:[d("div",{className:"px-6 py-4 border-b border-gray-200 bg-gray-50 flex justify-between items-center",children:[d("div",{children:[n("h2",{className:"text-lg font-semibold text-gray-900 m-0",children:"Source Code"}),n("p",{className:"text-xs text-[#646464] font-mono mt-1 m-0",children:e==null?void 0:e.filePath})]}),t&&n(ht,{content:t,label:"Copy Code",duration:EN,className:"px-[10px] py-[5px] bg-[#005c75] text-white border-none rounded text-xs font-medium cursor-pointer transition-colors hover:bg-[#004a5c] disabled:opacity-75 disabled:cursor-not-allowed"})]}),n("div",{className:"p-0",children:t?n("div",{className:"relative",children:n(vp,{language:AN(e==null?void 0:e.filePath),style:Np,showLineNumbers:!0,customStyle:_N,lineNumberStyle:kN,wrapLines:!0,lineProps:a=>({"data-line-number":a,style:{display:"block"}}),children:t})}):n("div",{className:"p-12 text-center text-gray-500",children:"No code available"})})]})})}const jN=({data:e})=>[{title:e!=null&&e.entity?`${e.entity.name} - CodeYam`:"Entity - CodeYam"},{name:"description",content:"View entity scenarios and screenshots"}];function TN({currentParams:e,nextParams:t,currentUrl:r,nextUrl:s,formMethod:a,defaultShouldRevalidate:o}){return r.pathname===s.pathname&&r.search===s.search?o:!!(e.sha!==t.sha||a)}async function MN({params:e,request:t,context:r}){const{sha:s}=e;if(!s)throw new Response("Entity SHA is required",{status:400});const o=new URL(t.url).searchParams.get("from"),l=(e["*"]||"").split("/").filter(Boolean),c=l[0]||"scenarios",p=l[1]||null,u=l[2]||null,h=r.analysisQueue,m=h?h.getState():{paused:!1,jobs:[]},[f,g,y,x]=await Promise.all([xn(s),ze(),Hn(),$m(we()||process.cwd())]),w=f?await $s(f):null,b=f?await cc(f.sha):null;let v={importedEntities:[],importingEntities:[]},N=null,k=[];f&&(v=await dc(f),N=await uc(f),k=await hc(f));const E=!!(f&&k.length>0&&k[0].sha!==f.sha),C=k.length>0?k[0].sha:null,S=!!(k.length>0&&k[0].analyses&&k[0].analyses.length>0),_=f?await pc(f):!1;return X({entity:f??void 0,analysis:w??void 0,currentEntityAnalysis:b??void 0,projectSlug:g,from:o,relatedEntities:v,entityCode:N??void 0,hasNewerVersion:E,newestEntitySha:C,newestVersionHasAnalysis:S,fileModifiedSinceEntity:_,history:k,tab:c,scenarioId:p,viewModeFromUrl:u,currentCommit:y,hasAnApiKey:x,queueState:m})}const $N=Qe(function(){var Dr,Or,Fr,Qn,Lr,An,Zn,zr,Xn,Br,er,tr,Yr,Dt,Ur;const t=tt(),a=(Ol()["*"]||"").split("/").filter(Boolean),o=a[0]||"scenarios",i=a[1]||null,l=a[2]||null,c=t.entity,p=t.analysis,u=t.currentEntityAnalysis,h=u||p,m=t.projectSlug;t.from;const f=t.relatedEntities,g=t.entityCode,y=t.hasNewerVersion,x=t.newestEntitySha,w=t.newestVersionHasAnalysis,b=t.fileModifiedSinceEntity,v=t.history,N=t.currentCommit,k=t.hasAnApiKey,E=t.queueState;(Dr=h==null?void 0:h.status)==null||Dr.errors;const C=(h==null?void 0:h.scenarios)||[],S=C.filter(me=>{var $e;return!(($e=me.metadata)!=null&&$e.sameAsDefault)}),_=C.filter(me=>{var $e;return($e=me.metadata)==null?void 0:$e.sameAsDefault}),j=Mt(),$=fe(null);se(()=>{$.current===null&&($.current=window.history.length)},[]);const P=()=>{if(typeof window>"u")return;const me=window.history.state;if(me===null||(me==null?void 0:me.idx)===void 0||(me==null?void 0:me.idx)===0)j("/");else{const $e=window.history.length,Ze=$.current;if(Ze!==null&&$e>Ze){const We=$e-Ze+1;j(-We)}else j(-1)}},I=!!E.currentlyExecuting,R=o,T=(Or=N==null?void 0:N.metadata)==null?void 0:Or.currentRun,G=!!(T!=null&&T.createdAt)&&!(T!=null&&T.analysisCompletedAt),J=!!(c!=null&&c.sha&&((Fr=T==null?void 0:T.currentEntityShas)!=null&&Fr.includes(c.sha))),F=!!(c!=null&&c.sha&&((Lr=(Qn=E.currentlyExecuting)==null?void 0:Qn.entityShas)!=null&&Lr.includes(c.sha))),H=!!(c!=null&&c.sha&&((An=E.jobs)!=null&&An.some(me=>{var $e;return($e=me.entityShas)==null?void 0:$e.includes(c.sha)}))),U=J||F||H,z=U&&((Zn=h==null?void 0:h.status)==null?void 0:Zn.finishedAt)!=null&&S.length>0&&h.entitySha!==(c==null?void 0:c.sha),A=ae(()=>{if(R!=="scenarios")return null;if(i){const me=S.find($e=>$e.id===i);if(me)return me}return S.length>0&&!U?S[0]:null},[R,i,S,U]),Y=((Br=(Xn=(zr=A==null?void 0:A.metadata)==null?void 0:zr.executionResult)==null?void 0:Xn.error)==null?void 0:Br.message)||((Yr=(tr=(er=h==null?void 0:h.status)==null?void 0:er.errors)==null?void 0:tr[0])==null?void 0:Yr.message);$t({source:A?"scenario-page":"entity-page",entitySha:c==null?void 0:c.sha,scenarioId:A==null?void 0:A.id,analysisId:h==null?void 0:h.id,entityName:c==null?void 0:c.name,entityType:c==null?void 0:c.entityType,scenarioName:A==null?void 0:A.name,errorMessage:Y});const[V,W]=M(()=>l&&l!=="edit"?l:(c==null?void 0:c.entityType)==="library"?"data":"screenshot");se(()=>{l&&l!==V&&l!=="edit"&&W(l)},[l]);const Q=l==="edit",[B,D]=M(!1),[O,q]=M(!1),[re,le]=M(null),[he,oe]=M(!1),[ge,_e]=M(!1),[je,pe]=M(null),[Z,Ne]=M(null),[de,ne]=M(0),{interactiveServerUrl:be,isStarting:Ce,isLoading:Fe,showIframe:Se,iframeKey:Re,onIframeLoad:Be}=vn({analysisId:h==null?void 0:h.id,scenarioId:A==null?void 0:A.id,scenarioName:A==null?void 0:A.name,projectSlug:m,enabled:Q&&!!A,refreshTrigger:de}),[Me,kt]=M(!1),[Nn,Cn]=M(""),[Ge,mt]=M(!1),[ft,Sn]=M(Date.now()),[nt,st]=M(!1),gt=Je(),Rt=Je(),at=Je(),He=Yt(),ta=E.jobs.some(me=>{var $e;return(c==null?void 0:c.sha)&&(($e=me.entityShas)==null?void 0:$e.includes(c.sha))||me.type==="analysis"&&me.commitSha===(N==null?void 0:N.sha)&&me.entityShas&&me.entityShas.length===0}),Vt=U,Tr=((Dt=c==null?void 0:c.metadata)==null?void 0:Dt.defaultWidth)||((Ur=h==null?void 0:h.metadata)==null?void 0:Ur.defaultWidth)||1440,na=Math.round(Tr*(900/1440));gt.state==="submitting"||gt.state,ae(()=>{var me;return!!((me=A==null?void 0:A.metadata)!=null&&me.interactiveExamplePath)},[A]);const{isCompleted:_n}=Ut(m,Ge);se(()=>{gt.state==="idle"&>.data&&(gt.data.success?setTimeout(()=>{Sn(Date.now()),He.revalidate(),mt(!1)},1500):gt.data.error&&(mt(!1),alert(`Recapture failed: ${gt.data.error}`)))},[gt.state,gt.data,He]),se(()=>{Ge&&_n&&setTimeout(()=>{Sn(Date.now()),He.revalidate(),mt(!1)},1500)},[Ge,_n,He]),se(()=>{Rt.state==="idle"&&Rt.data&&(Rt.data.success?setTimeout(()=>{Sn(Date.now()),He.revalidate(),mt(!1)},1500):Rt.data.error&&(mt(!1),alert(`Recapture failed: ${Rt.data.error}`)))},[Rt.state,Rt.data,He]);const kn=()=>{c&&(y&&x&&x!==c.sha?(j(`/entity/${x}/scenarios`),setTimeout(()=>{at.submit({entitySha:x,filePath:c.filePath||""},{method:"post",action:"/api/analyze"})},100)):at.submit({entitySha:c.sha,filePath:c.filePath||""},{method:"post",action:"/api/analyze"}))};se(()=>{at.state==="idle"&&at.data&&(at.data.success?He.revalidate():at.data.error&&alert(`Analysis failed: ${at.data.error}`))},[at.state,at.data,c==null?void 0:c.sha,He]),se(()=>{const me=setTimeout(()=>{He.revalidate()},500);return()=>clearTimeout(me)},[]),se(()=>{if(G||Vt){const me=setInterval(()=>{He.revalidate()},3e3);return()=>clearInterval(me)}},[G,Vt,He]);const ra=(me,$e)=>me==="scenarios"?`/entity/${c==null?void 0:c.sha}/scenarios`:`/entity/${c==null?void 0:c.sha}/${me}`,Mr=(me,$e)=>`/entity/${c==null?void 0:c.sha}/scenarios/${me}/${$e}`,$r=me=>{W(me),A!=null&&A.id&&(me==="interactive"?j(`/entity/${c==null?void 0:c.sha}/scenarios/${A.id}/fullscreen`,{replace:!0}):j(Mr(A.id,me),{replace:!0}))},En=async me=>{var $e,Ze;if(console.log("[EntityDetail] ===== APPLY CHANGES CALLED =====",{description:me,hasSelectedScenario:!!A,hasAnalysis:!!h}),!A||!h){const We="Error: No scenario or analysis available";console.error("[EntityDetail]",We),le(We);return}D(!0),le(null),console.log("[EntityDetail] Applying changes (preview mode)",{description:me,scenarioId:A.id,scenarioName:A.name,currentData:A.data});try{const We=await fetch("/api/generate-scenario-data",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({description:me,existingScenarios:h.scenarios,scenariosDataStructure:($e=h.metadata)==null?void 0:$e.scenariosDataStructure,editingMockName:A.name,editingMockData:Z||((Ze=A.metadata)==null?void 0:Ze.data)})}),ot=await We.json();if(!We.ok||!ot.success)throw new Error(ot.error||"Failed to generate scenario data");console.log("[EntityDetail] Generated data:",ot.data),Ne(ot.data);const Ot=(h.scenarios||[]).map(Ke=>Ke.id===A.id?{...Ke,metadata:{...Ke.metadata,data:ot.data}}:Ke),xt=await fetch("/api/save-scenarios",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({analysis:h,scenarios:Ot})}),it=await xt.json();if(!xt.ok||!it.success)throw console.error("[EntityDetail] Temp save failed:",it),new Error(it.error||"Failed to apply preview");if(le("Generating preview. Capturing screenshot..."),be){console.log("[EntityDetail] Using direct capture from running server",{serverUrl:be});const Ke=await fetch("/api/capture-screenshot",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({serverUrl:be,scenarioId:A.id,projectId:h.projectId,viewportWidth:1440})}),rn=await Ke.json();!Ke.ok||!rn.success?(console.error("[EntityDetail] Direct capture failed:",rn),le("Preview applied. Screenshot capture failed.")):(console.log("[EntityDetail] Direct capture successful"),le('Preview applied. Click "Save Scenario Data" to persist.'))}else{console.log("[EntityDetail] No server running, using queued recapture");const Ke=new FormData;Ke.append("analysisId",h.id||""),Ke.append("scenarioId",A.id||"");const rn=await fetch("/api/recapture-scenario",{method:"POST",body:Ke}),Pn=await rn.json();!rn.ok||!Pn.success?(console.warn("[EntityDetail] Recapture failed:",Pn.error),le("Preview applied. Screenshot recapture failed.")):(console.log("[EntityDetail] Recapture queued:",Pn.jobId),le('Preview applied. Screenshot will update shortly. Click "Save Scenario Data" to persist.'))}ne(Ke=>Ke+1),He.revalidate()}catch(We){console.error("Error applying changes:",We),le(`Error: ${We instanceof Error?We.message:String(We)}`)}finally{D(!1)}},sa=async(me,$e)=>{var Ze;if(!A||!h){le("Error: No scenario or analysis available");return}q(!0),le(null),console.log("[EntityDetail] Saving scenario to database",{description:me,saveAsNew:$e});try{const We=Z||((Ze=A.metadata)==null?void 0:Ze.data);let ot;if($e){const it={...A,id:`${A.name}-${Date.now()}`,name:`${A.name} (Copy)`,metadata:{...A.metadata,data:We},description:me||A.description};ot=[...h.scenarios||[],it]}else ot=(h.scenarios||[]).map(it=>it.id===A.id?{...it,metadata:{...it.metadata,data:We},description:me||it.description}:it);const Ot=await fetch("/api/save-scenarios",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({analysis:h,scenarios:ot})}),xt=await Ot.json();if(!Ot.ok||!xt.success)throw new Error(xt.error||"Failed to save scenarios");console.log("[EntityDetail] Scenarios saved successfully"),le($e?"New scenario created successfully":"Scenario saved successfully"),Ne(null),He.revalidate()}catch(We){console.error("Error saving scenario:",We),le(`Error: ${We instanceof Error?We.message:String(We)}`)}finally{q(!1)}},Ir=()=>{A!=null&&A.id&&(c!=null&&c.sha)&&j(`/entity/${c.sha}/scenarios/${A.id}/dev`)},Rr=async()=>{var me;if(!(A!=null&&A.id)){pe("Cannot delete scenario without ID");return}oe(!0),pe(null);try{const $e=await fetch("/api/delete-scenario",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({scenarioId:A.id,screenshotPaths:((me=A.metadata)==null?void 0:me.screenshotPaths)||[]})}),Ze=await $e.json();if(!$e.ok||!Ze.success)throw new Error(Ze.error||"Failed to delete scenario");j(`/entity/${c==null?void 0:c.sha}/scenarios`)}catch($e){console.error("[EntityDetail] Error deleting scenario:",$e),pe($e instanceof Error?$e.message:"Failed to delete scenario"),_e(!1)}finally{oe(!1)}},yt=h&&c&&h.entitySha!==c.sha,qn=c?hN(c):!1;return n(Ws,{children:d("div",{className:"h-screen bg-white flex flex-col overflow-hidden",children:[n("header",{className:"bg-white border-b border-gray-200 shrink-0 relative h-[54px]",children:d("div",{className:"flex items-end h-full px-6 gap-6",children:[d("div",{className:"flex items-center gap-3 min-w-0 flex-1 pb-[14px]",children:[n("button",{onClick:P,className:"no-underline shrink-0 bg-transparent border-none cursor-pointer p-0 flex items-center",title:"Back",children:n("svg",{width:"17",height:"17",viewBox:"0 0 17 17",fill:"none",children:n("path",{d:"M13 8.5H4M4 8.5L8.5 4M4 8.5L8.5 13",stroke:"#005c75",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})})}),n("h1",{className:"text-base font-semibold text-black m-0 leading-[20px] shrink-0",children:c==null?void 0:c.name}),n("span",{className:"text-xs text-[#9e9e9e] font-mono font-normal whitespace-nowrap overflow-hidden text-ellipsis min-w-0",title:c==null?void 0:c.filePath,children:c==null?void 0:c.filePath})]}),n("div",{className:"flex items-end gap-8 shrink-0",children:[{id:"scenarios",label:"Scenarios",count:S.length},{id:"related",label:"Related Entities",count:f.importedEntities.length+f.importingEntities.length},{id:"code",label:"Code"},{id:"data",label:"Data Structure"},{id:"history",label:"History"}].map(me=>n(ve,{to:ra(me.id),className:`relative pb-[17px] px-2 text-sm transition-colors cursor-pointer no-underline ${R===me.id?"font-medium border-b-2":"font-normal hover:text-gray-700"}`,style:R===me.id?{color:"#005C75",borderColor:"#005C75"}:{color:"#9ca3af"},children:d("span",{className:"flex items-center gap-2",children:[me.label,me.count!==void 0&&me.count>0&&n("span",{className:`inline-flex items-center justify-center px-2 py-0.5 text-xs font-semibold rounded-full ${R===me.id?"bg-[#cbf3fa] text-[#005c75]":"bg-[#e1e1e1] text-[#3e3e3e]"}`,children:me.count})]})},me.id))})]})}),(y||yt&&!u||b&&qn)&&!U&&!ta&&n("div",{className:"border-b border-[#FEE585] px-6 py-3 flex items-center justify-center shrink-0",style:{backgroundColor:"#FEE585"},children:d("div",{className:"flex items-center gap-3",children:[n("svg",{className:"w-4 h-4",style:{color:"#714A25"},fill:"none",viewBox:"0 0 24 24",stroke:"currentColor",children:n("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-3L13.732 4c-.77-1.333-2.694-1.333-3.464 0L3.34 16c-.77 1.333.192 3 1.732 3z"})}),n("span",{className:"text-sm font-semibold",style:{color:"#714A25"},children:yt&&!y?"This entity version has not been analyzed yet.":"This entity has been recently changed."}),n("span",{className:"text-sm",style:{color:"#714A25"},children:y?"You are viewing an older version. A newer version is available.":yt?"Showing scenarios from a previous version.":"The file on disk has been modified since this entity was analyzed."}),y&&x&&w?n(ve,{to:`/entity/${x}/scenarios`,className:"px-3 py-1.5 text-white rounded text-[11px] font-medium font-mono cursor-pointer transition-colors no-underline",style:{backgroundColor:"#C69538"},onMouseEnter:me=>{me.currentTarget.style.backgroundColor="#B58530"},onMouseLeave:me=>{me.currentTarget.style.backgroundColor="#C69538"},children:"View Latest Version"}):n("button",{onClick:kn,disabled:at.state!=="idle",className:"px-3 py-1.5 text-white rounded text-[11px] font-medium font-mono border-none cursor-pointer transition-colors disabled:bg-gray-400 disabled:cursor-not-allowed",style:{backgroundColor:"#C69538"},onMouseEnter:me=>{at.state==="idle"&&(me.currentTarget.style.backgroundColor="#B58530")},onMouseLeave:me=>{at.state==="idle"&&(me.currentTarget.style.backgroundColor="#C69538")},children:"Re-analyze"})]})}),d("div",{className:"flex grow items-stretch justify-center gap-0 min-h-0",children:[R==="scenarios"&&d(ye,{children:[Q&&A?n(fN,{scenario:A,entitySha:(c==null?void 0:c.sha)||"",onApply:En,onSave:sa,onEditMockData:Ir,onDelete:Rr,isApplying:B,isSaving:O,saveMessage:re,showDeleteConfirm:ge,onShowDeleteConfirm:_e,isDeleting:he,deleteError:je}):n(mN,{scenarios:S,hiddenScenarios:_,analysis:h,selectedScenario:A,entitySha:(c==null?void 0:c.sha)||"",cacheBuster:ft,activeTab:R,entityType:c==null?void 0:c.entityType,entity:c,queueState:E,processIsRunning:I,isEntityAnalyzing:U,areScenariosStale:z,viewMode:V,setViewMode:$r,isBreakdownView:i==="breakdown"}),i==="breakdown"?n(yN,{analysis:h??null,entitySha:(c==null?void 0:c.sha)||""}):Q&&A?n(Js,{scenarioId:A.id||A.name,scenarioName:A.name,iframeUrl:be,isStarting:Ce,isLoading:Fe,showIframe:Se,iframeKey:Re,onIframeLoad:Be,projectSlug:m,defaultWidth:1440,defaultHeight:900}):d("div",{className:"flex flex-col flex-1 min-h-0",children:[A&&d("div",{className:"bg-[#f5f5f5] border-b border-gray-200 px-4 py-2 flex items-center justify-between shrink-0",children:[d("div",{className:"flex items-center gap-2",children:[n("span",{className:"text-xs font-semibold text-[#343434]",children:A.name}),d("span",{className:"text-xs text-[#9e9e9e] font-normal",children:[Tr," × ",na]})]}),d("div",{className:"flex items-center gap-2",children:[n(ve,{to:`/entity/${c==null?void 0:c.sha}/scenarios/${A.id}/edit`,className:"px-3 py-1.5 bg-white text-[#343434] rounded text-[11px] font-medium font-mono border border-gray-300 cursor-pointer hover:bg-gray-50 transition-colors no-underline flex items-center",title:"Edit Scenario Data",children:"Edit Scenario"}),d("button",{className:"px-3 py-1.5 bg-[#022A35] text-white rounded text-[11px] font-medium font-mono border-none cursor-pointer hover:bg-[#011a21] transition-colors flex items-center gap-1.5",onClick:()=>{alert("Download functionality coming soon")},title:"Download",children:[n("svg",{width:"12",height:"12",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",children:n("path",{d:"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4M7 10l5 5 5-5M12 15V3"})}),"Download"]}),d(ve,{to:`/entity/${c==null?void 0:c.sha}/scenarios/${A.id}/dev`,className:"px-3 py-1.5 bg-[#005c75] text-white rounded text-[11px] font-medium font-mono border-none cursor-pointer hover:bg-[#004a5e] transition-colors no-underline flex items-center gap-1.5",title:"Dev Mode - Live preview with data editor and code sync",children:[d("svg",{width:"12",height:"12",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",children:[n("polyline",{points:"16 18 22 12 16 6"}),n("polyline",{points:"8 6 2 12 8 18"})]}),"Dev Mode"]}),d(ve,{to:`/entity/${c==null?void 0:c.sha}/scenarios/${A.id}/fullscreen`,className:"px-3 py-1.5 bg-[#005c75] text-white rounded text-[11px] font-medium font-mono border-none cursor-pointer hover:bg-[#004a5e] transition-colors no-underline flex items-center gap-1.5",title:"Interactive Mode",children:[n("svg",{width:"12",height:"12",viewBox:"0 0 24 24",fill:"currentColor",children:n("path",{d:"M8 5v14l11-7z"})}),"Interactive Mode"]})]})]}),n(jd,{selectedScenario:A,analysis:h,entity:c,viewMode:V,cacheBuster:ft,hasScenarios:S.length>0,isAnalyzing:Vt,projectSlug:m,hasAnApiKey:k,processIsRunning:I,queueState:E})]})]}),R==="related"&&n(wN,{relatedEntities:f}),R==="data"&&n(SN,{entity:c,analysis:h,scenarios:S,onAnalyze:kn}),R==="code"&&n(PN,{entity:c,entityCode:g}),R==="history"&&n(xN,{entity:c,history:v})]}),nt&&m&&n("div",{className:"fixed inset-0 bg-black/50 flex items-center justify-center z-1000 p-5",onClick:()=>st(!1),children:d("div",{className:"bg-white rounded-xl max-w-[1200px] w-full max-h-[90vh] flex flex-col shadow-[0_20px_60px_rgba(0,0,0,0.3)]",onClick:me=>me.stopPropagation(),children:[d("div",{className:"px-6 py-6 border-b border-gray-200 flex justify-between items-center",children:[n("h2",{className:"m-0 text-xl font-semibold text-gray-900",children:"Analysis Logs"}),n("button",{className:"bg-transparent border-none text-[28px] text-gray-500 cursor-pointer p-0 w-8 h-8 flex items-center justify-center rounded transition-colors hover:bg-gray-100",onClick:()=>st(!1),children:"×"})]}),n("div",{className:"flex-1 overflow-hidden",children:n(Qt,{projectSlug:m,onClose:()=>st(!1)})})]})})]})})}),IN=Object.freeze(Object.defineProperty({__proto__:null,default:$N,loader:MN,meta:jN,shouldRevalidate:TN},Symbol.toStringTag,{value:"Module"}));async function RN(e){const{entityShas:t,filePaths:r,context:s,scenarioCount:a,queue:o}=e;console.log(`[analyzeEntities] Starting analysis for ${t.length} entities`);try{console.log("[analyzeEntities] Initializing environment..."),await Ue();const i=we();if(!i)throw new Error("Project root not found");console.log(`[analyzeEntities] Project root: ${i}`);const l=ee.join(i,".codeyam","config.json"),c=JSON.parse(await Ee.readFile(l,"utf8")),{projectSlug:p,branchId:u}=c;if(!p||!u)throw new Error("Invalid project configuration - missing projectSlug or branchId");console.log(`[analyzeEntities] Project: ${p}, Branch: ${u}`);const h=Ds(p);try{await Ee.writeFile(h,"","utf8"),console.log("[analyzeEntities] Cleared log file")}catch{}const{project:m,branch:f}=await Oe(p);console.log("[analyzeEntities] Loading entities to determine file paths and names...");const g=await Xe({shas:t});if(!g||g.length===0)throw new Error(`No entities found for SHAs: ${t.join(", ")}`);let y=r;if((!y||y.length===0)&&(y=[...new Set(g.map(b=>b.filePath).filter(b=>!!b))],console.log(`[analyzeEntities] Found ${y.length} unique files`)),!y||y.length===0)throw new Error("No file paths available for analysis");console.log(`[analyzeEntities] Creating fake commit for ${y.length} files...`);const x=await Am(m,f,y);console.log(`[analyzeEntities] Created commit ${x.sha.substring(0,8)}`),console.log("[analyzeEntities] Initializing progress tracking..."),await qt({commitSha:x.sha,runStatusUpdate:{queuedAt:new Date().toISOString(),entityCount:t.length,analysesCompleted:0,capturesCompleted:0,createdAt:new Date().toISOString()},updateCallback:b=>{if(!b)return;const v=b.currentRun;if(v&&v.id&&v.archivedAt)return;v&&(v.analysesCompleted&&v.analysesCompleted>0||v.capturesCompleted&&v.capturesCompleted>0)&&Bm(b)}}),console.log("[analyzeEntities] Enqueueing analysis job...");const{jobId:w}=o.enqueue({type:"analysis",commitSha:x.sha,projectSlug:p,filePaths:y,entityShas:t,entityNames:g.map(b=>b.name),...s?{context:s}:{},...a?{scenarioCount:a}:{}});return console.log(`[analyzeEntities] Job queued with ID: ${w} for ${t.length} entities`),{jobId:w}}catch(i){throw console.error("[analyzeEntities] Failed:",i),i}}async function DN({request:e,context:t}){if(e.method!=="POST")return X({error:"Method not allowed"},{status:405});let r=t.analysisQueue;if(r||(r=await Ht()),!r)return X({error:"Queue not initialized"},{status:500});try{const s=await e.formData(),a=s.get("entitySha"),o=s.get("entityShas"),i=s.get("filePath"),l=s.get("context"),c=s.get("scenarioCount");let p;if(o)p=o.split(",").filter(Boolean);else if(a)p=[a];else return X({error:"Missing required field: entitySha or entityShas"},{status:400});if(p.length===0)return X({error:"No entities to analyze"},{status:400});console.log(`[API] Starting analysis for ${p.length} entity(ies)`);const u=await Xe({shas:p}),m=[...new Set(u.map(g=>g.filePath).filter(g=>!!g))].length,{jobId:f}=await RN({entityShas:p,filePaths:i?[i]:void 0,context:l||void 0,scenarioCount:c?parseInt(c,10):void 0,queue:r});return console.log(`[API] Analysis queued with job ID: ${f}`),X({success:!0,message:`Analysis queued for ${p.length} entity(ies)`,entityCount:p.length,fileCount:m,jobId:f})}catch(s){return console.error("[API] Error starting analysis:",s),X({error:"Failed to start analysis",details:s.message},{status:500})}}const ON=Object.freeze(Object.defineProperty({__proto__:null,action:DN},Symbol.toStringTag,{value:"Module"}));function FN(e){switch(e){case"queued":return{text:"Queued",bgColor:"#cbf3fa",textColor:"#3098b4",icon:d("svg",{width:"14",height:"14",viewBox:"0 0 24 24",fill:"none",stroke:"#3098b4",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",children:[n("circle",{cx:"12",cy:"12",r:"10"}),n("polyline",{points:"12,6 12,12 16,14"})]})};case"analyzing":return{text:"Analyzing...",bgColor:"#ffdbf6",textColor:"#ff2ab5",icon:d("svg",{width:"8",height:"8",viewBox:"0 0 9 9",fill:"none",className:"animate-spin",children:[n("circle",{cx:"4.5",cy:"4.5",r:"3.5",stroke:"#FFF4FC",strokeWidth:"1",fill:"none"}),n("path",{d:"M4.5 1C2.57 1 1 2.57 1 4.5C1 5.6 1.5 6.58 2.28 7.23",stroke:"#FF2AB5",strokeWidth:"1",strokeLinecap:"round",fill:"none"})]})};case"up-to-date":return{text:"Up to date",bgColor:"#e8ffe6",textColor:"#00925d",icon:null};case"incomplete":return{text:"Incomplete",bgColor:"#fdf9c9",textColor:"#c69538",icon:null};case"out-of-date":return{text:"Out of date",bgColor:"#fdf9c9",textColor:"#c69538",icon:null};case"not-analyzed":return{text:"Not analyzed",bgColor:"#f9f9f9",textColor:"#646464",icon:null}}}function Td(e){if(!e)return"Never";const t=new Date(e),r=new Date;if(t.getDate()===r.getDate()&&t.getMonth()===r.getMonth()&&t.getFullYear()===r.getFullYear()){const a=t.getHours(),o=t.getMinutes(),i=a>=12?"pm":"am",l=a%12||12,c=o.toString().padStart(2,"0");return`Today, ${l}:${c} ${i}`}return t.toLocaleString("en-US",{month:"numeric",day:"numeric",year:"2-digit",hour:"2-digit",minute:"2-digit",hour12:!0})}function bt(e,t=[],r=!1){var u,h;if(t.some(m=>{var f,g;return!!((f=m.entityShas)!=null&&f.includes(e.sha)||(g=m.entities)!=null&&g.some(y=>y.sha===e.sha))}))return r?"analyzing":"queued";if(!e.analyses||e.analyses.length===0)return"not-analyzed";const a=e.analyses[0];if(!(((u=a.status)==null?void 0:u.scenarios)&&a.status.scenarios.length>0&&a.status.scenarios.some(m=>m.screenshotFinishedAt||m.finishedAt))||a.entitySha!==e.sha)return"not-analyzed";const i=a.createdAt?new Date(a.createdAt).getTime():0,l=(h=e.metadata)!=null&&h.editedAt?new Date(e.metadata.editedAt).getTime():0,c=a.scenarios||[],p=c.some(m=>{var f,g,y;return((g=(f=m.metadata)==null?void 0:f.screenshotPaths)==null?void 0:g[0])||((y=m.metadata)==null?void 0:y.executionResult)});return i>=l?c.length>0&&p?c.every(f=>{var g,y,x;return((y=(g=f.metadata)==null?void 0:g.screenshotPaths)==null?void 0:y[0])||((x=f.metadata)==null?void 0:x.executionResult)})?"up-to-date":"incomplete":c.length>0?"incomplete":"not-analyzed":"out-of-date"}const LN=()=>[{title:"Simulations - CodeYam"},{name:"description",content:"A visual gallery of your recently captured component screenshots"}];async function zN({request:e,context:t}){try{const r=t.analysisQueue,s=r?r.getState():{paused:!1,jobs:[]},a=await wn();return X({entities:a||[],queueState:s})}catch(r){return console.error("Failed to load simulations:",r),X({entities:[],queueState:{paused:!1,jobs:[]},error:"Failed to load simulations"})}}const BN=Qe(function(){const t=tt(),r=t.entities,s=t.queueState;$t({source:"simulations-page"});const[a,o]=M(""),[i,l]=M("visual"),c=ae(()=>{const y=[];return r.forEach(x=>{var b;const w=(b=x.analyses)==null?void 0:b[0];if(w!=null&&w.scenarios){const v=w.scenarios.filter(N=>{var k;return!((k=N.metadata)!=null&&k.sameAsDefault)}).map(N=>{var $,P,I,R,T;const k=(P=($=N.metadata)==null?void 0:$.screenshotPaths)==null?void 0:P[0],E=(I=N.metadata)==null?void 0:I.noScreenshotSaved,C=k&&!E,S=(T=(R=w.status)==null?void 0:R.scenarios)==null?void 0:T.find(G=>G.name===N.name),_=S&&S.screenshotStartedAt&&!S.screenshotFinishedAt;let j;return C?j="completed":_?j="capturing":j="error",{scenarioName:N.name,scenarioDescription:N.description||"",screenshotPath:k||"",scenarioId:N.id,state:j}}).filter(N=>N.state==="completed"||N.state==="capturing");v.length>0&&y.push({entity:x,screenshots:v,createdAt:w.createdAt||""})}}),y.sort((x,w)=>new Date(w.createdAt).getTime()-new Date(x.createdAt).getTime()),y},[r]),p=ae(()=>r.filter(y=>{var b,v;const x=(b=y.analyses)==null?void 0:b[0];return!((v=x==null?void 0:x.scenarios)==null?void 0:v.some(N=>{var k,E;return(E=(k=N.metadata)==null?void 0:k.screenshotPaths)==null?void 0:E[0]}))}),[r]),u=ae(()=>c.filter(({entity:y})=>{const x=!a||y.name.toLowerCase().includes(a.toLowerCase()),w=i==="all"||y.entityType===i;return x&&w}),[c,a,i]),h=ae(()=>p.filter(y=>{const x=!a||y.name.toLowerCase().includes(a.toLowerCase()),w=i==="all"||y.entityType===i;return x&&w}),[p,a,i]),m=ie(y=>{o(y.target.value)},[]),f=ie(y=>{l(y.target.value)},[]),g=c.length>0;return n("div",{className:"bg-[#F8F7F6] min-h-screen overflow-y-auto",children:d("div",{className:"px-20 py-12",children:[d("div",{className:"mb-8",children:[n("h1",{className:"text-[28px] font-semibold text-gray-900 mb-2",children:"Simulations"}),n("p",{className:"text-[15px] text-gray-500",children:"A visual gallery of your recently captured simulations."})]}),!g&&n("div",{className:"bg-[#D1F3F9] border border-[#A5E8F0] rounded-lg p-4 mb-6",children:d("p",{className:"text-sm text-gray-700 m-0",children:["This page will display a visual gallery of your recently captured component simulations."," ",n("strong",{children:"Start by analyzing your first component below."})]})}),d("div",{className:"bg-white border-b border-gray-200 rounded-t-lg px-5 py-4 mb-3",children:[n("div",{className:"text-[11px] text-gray-500 mb-2 uppercase",children:"Filters"}),d("div",{className:"flex gap-3",children:[d("div",{className:"relative",children:[d("select",{className:"appearance-none bg-gray-50 border border-gray-200 rounded px-3 pr-8 text-[13px] h-[39px] cursor-pointer focus:outline-none focus:ring-0 focus:border-2 focus:border-[#005c75] hover:border-gray-300 transition-colors",value:i,onChange:f,children:[n("option",{value:"all",children:"All Types"}),n("option",{value:"visual",children:"Visual"}),n("option",{value:"library",children:"Library"})]}),n(Nt,{className:"absolute right-2 top-1/2 -translate-y-1/2 w-3 h-3 text-gray-500 pointer-events-none"})]}),d("div",{className:"flex-1 relative",children:[n(Sr,{className:"absolute left-3 top-1/2 -translate-y-1/2 w-4 h-4 text-gray-400"}),n("input",{type:"text",placeholder:"Search component",className:"w-full bg-gray-50 border border-gray-200 rounded pl-9 pr-3 text-[13px] h-[39px] placeholder:text-gray-400 focus:outline-none focus:ring-0 focus:border-2 focus:border-[#005c75] transition-colors",value:a,onChange:m})]})]})]}),g&&u.length>0&&n("div",{className:"mb-2",children:d("div",{className:"flex items-center py-3",children:[d("span",{className:"font-mono uppercase",style:{fontSize:"11px",color:"#8b8b8b",fontWeight:500,letterSpacing:"0.05em"},children:[n("span",{style:{color:"#000000"},children:u.length})," ",u.length===1?"entity":"entities"]}),d("div",{className:"relative group inline-flex items-center ml-1.5",children:[n("svg",{className:"w-3 h-3 text-gray-400 cursor-help",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:n("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M13 16h-1v-4h-1m1-4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z"})}),n("div",{className:"absolute left-0 top-full mt-2 hidden group-hover:block z-50 w-80",children:d("div",{className:"bg-gray-900 text-white text-xs rounded-lg px-3 py-2 shadow-lg",children:["In CodeYam, an entity is a discrete, analyzable unit of code that can be independently simulated and tested.",n("div",{className:"absolute -top-1 left-4 w-2 h-2 bg-gray-900 transform rotate-45"})]})})]}),n("span",{className:"font-mono uppercase",style:{fontSize:"11px",color:"#d1d5db",fontWeight:500,letterSpacing:"0.05em",marginLeft:"8px"},children:"|"}),d("span",{className:"font-mono uppercase",style:{fontSize:"11px",color:"#8b8b8b",fontWeight:500,letterSpacing:"0.05em",marginLeft:"8px"},children:[n("span",{style:{color:"#000000"},children:u.reduce((y,{screenshots:x})=>y+x.length,0)})," ","scenarios"]})]})}),d("div",{className:"flex flex-col gap-3",children:[g&&(u.length===0?n("div",{className:"bg-white border border-gray-200 rounded-lg p-8 text-center text-gray-500",children:"No simulations match your filters."}):n(ye,{children:u.map(({entity:y,screenshots:x})=>n(YN,{entity:y,screenshots:x,queueJobs:(s==null?void 0:s.jobs)||[]},y.sha))})),!g&&(h.length===0?n("div",{className:"bg-white border border-gray-200 rounded-b-lg p-8 text-center text-gray-500",children:"No components found matching your filters."}):h.map(y=>n(UN,{entity:y},y.sha)))]})]})})});function YN({entity:e,screenshots:t,queueJobs:r}){var f,g,y;const s=Mt(),a=Je(),[o,i]=M(!1),l=t.length||(((y=(g=(f=e.analyses)==null?void 0:f[0])==null?void 0:g.scenarios)==null?void 0:y.length)??0),c=x=>{s(`/entity/${e.sha}/scenarios/${x}?from=simulations`)},p=()=>{i(!0),a.submit({entitySha:e.sha,filePath:e.filePath||""},{method:"post",action:"/api/analyze"})};se(()=>{a.state==="idle"&&o&&i(!1)},[a.state,o]);const u=bt(e,r),h=FN(u),m=u==="out-of-date";return n("div",{className:"rounded-[8px]",style:{backgroundColor:"#ffffff",border:"1px solid #e1e1e1"},children:d("div",{className:"flex flex-col",children:[d("div",{className:"flex items-center px-[15px] py-[15px]",children:[n("div",{className:"flex-shrink-0",children:n(ut,{type:e.entityType||"other",size:"large"})}),d("div",{className:"flex flex-col flex-shrink-0",style:{marginLeft:"15px",gap:"4px"},children:[d("div",{className:"flex items-center gap-[5px]",children:[d(ve,{to:`/entity/${e.sha}`,className:"hover:underline cursor-pointer",title:e.name,style:{fontSize:"14px",lineHeight:"18px",color:"#343434",fontWeight:500},children:[e.name," (",l,")"]}),n("div",{className:"flex items-center justify-center px-2 rounded",style:{height:"20px",backgroundColor:h.bgColor,color:h.textColor,fontSize:"12px",lineHeight:"16px",fontWeight:400},children:h.text})]}),n("div",{style:{fontSize:"12px",lineHeight:"15px",color:"#b0b0b0",fontWeight:400},className:"font-mono",title:e.filePath,children:e.filePath})]}),n("div",{className:"flex-1"}),d("div",{className:"flex-shrink-0 flex items-center gap-2",children:[m&&n(ye,{children:o||a.state!=="idle"?d("div",{className:"px-2 py-1 bg-pink-100 rounded flex items-center gap-1.5",children:[n(At,{size:14,className:"animate-spin",style:{color:"#be185d"}}),n("span",{style:{color:"#be185d",fontSize:"10px",lineHeight:"20px",fontWeight:600},children:"Analyzing..."})]}):n("button",{onClick:p,className:"px-[10px] rounded transition-colors whitespace-nowrap",style:{backgroundColor:"#005c75",color:"#ffffff",fontSize:"10px",lineHeight:"22px",fontWeight:600},onMouseEnter:x=>{x.currentTarget.style.backgroundColor="#004d5e"},onMouseLeave:x=>{x.currentTarget.style.backgroundColor="#005c75"},children:"Re-analyze"})}),n("button",{onClick:()=>void s(`/entity/${e.sha}/logs`),className:"px-[10px] rounded transition-colors whitespace-nowrap",style:{backgroundColor:"#e0e9ec",color:"#005c75",fontSize:"10px",lineHeight:"22px",fontWeight:600},onMouseEnter:x=>{x.currentTarget.style.backgroundColor="#d0dfe3"},onMouseLeave:x=>{x.currentTarget.style.backgroundColor="#e0e9ec"},children:"View Logs"})]})]}),n("div",{className:"border-t border-gray-200"}),n("div",{className:"flex gap-2.5 overflow-x-auto pb-3 px-[15px] pt-3",style:{paddingLeft:"47px"},children:t.length>0?t.map(x=>d("div",{className:"shrink-0 flex flex-col gap-2",children:[n("button",{onClick:()=>c(x.scenarioId||""),className:"block cursor-pointer bg-transparent border-none p-0",children:n("div",{className:"w-36 h-24 rounded-md border overflow-hidden flex items-center justify-center transition-all",style:{"--hover-border":"#005C75",backgroundColor:x.state==="capturing"?"#f9f9f9":"#f3f4f6",borderColor:x.state==="capturing"?"#efefef":"#d1d5db"},onMouseEnter:w=>{x.state==="completed"&&(w.currentTarget.style.borderColor="#005C75",w.currentTarget.style.boxShadow="0 4px 12px rgba(0, 92, 117, 0.15)")},onMouseLeave:w=>{w.currentTarget.style.borderColor=x.state==="capturing"?"#efefef":"#d1d5db",w.currentTarget.style.boxShadow="none"},children:x.state==="completed"?n(rt,{screenshotPath:x.screenshotPath,alt:x.scenarioName,className:"max-w-full max-h-full object-contain"}):x.state==="capturing"?n(Ho,{size:"medium"}):null})}),d("div",{className:"relative group",children:[n("div",{className:"text-left text-xs text-gray-600 cursor-default",style:{fontSize:"11px",lineHeight:"14px",maxWidth:"144px",overflow:"hidden",textOverflow:"ellipsis",whiteSpace:"nowrap"},children:x.scenarioName}),n("div",{className:"fixed hidden group-hover:block pointer-events-none",style:{zIndex:1e4,transform:"translateY(8px)"},children:d("div",{className:"bg-gray-100 text-gray-800 text-xs rounded-lg px-3 py-2 shadow-lg max-w-xs border border-gray-200",children:[x.scenarioName,x.scenarioDescription&&d(ye,{children:[": ",x.scenarioDescription]}),n("div",{className:"absolute -top-1 left-4 w-2 h-2 bg-gray-100 border-l border-t border-gray-200 transform rotate-45"})]})})]})]},x.scenarioId)):n("div",{className:"text-xs text-gray-400 py-4",children:"No screenshots available"})})]})})}function UN({entity:e}){const t=Je(),[r,s]=M(!1),a=()=>{s(!0),t.submit({entitySha:e.sha,filePath:e.filePath||""},{method:"post",action:"/api/analyze"})};return se(()=>{t.state==="idle"&&r&&s(!1)},[t.state,r]),n("div",{className:"bg-white rounded hover:bg-gray-100 transition-colors cursor-pointer border-b border-[#e1e1e1]",onClick:a,children:d("div",{className:"px-5 py-4 flex items-center",children:[d("div",{className:"flex items-center gap-3 flex-1 min-w-0",children:[n(ut,{type:e.entityType}),d("div",{className:"min-w-0",children:[d("div",{className:"flex items-center gap-3 mb-0.5",children:[n(ve,{to:`/entity/${e.sha}`,className:"text-sm font-medium text-gray-900 no-underline",children:e.name}),n("span",{className:"text-[10px] font-semibold px-1 py-0.5 rounded",style:{color:e.entityType==="visual"?"#7c3aed":e.entityType==="library"?"#0DBFE9":e.entityType==="type"?"#dc2626":e.entityType==="data"?"#2563eb":e.entityType==="index"?"#ea580c":e.entityType==="functionCall"?"#7c3aed":e.entityType==="class"?"#059669":e.entityType==="method"?"#0891b2":"#6b7280",backgroundColor:e.entityType==="visual"?"#f3e8ff":e.entityType==="library"?"#cffafe":e.entityType==="type"?"#fee2e2":e.entityType==="data"?"#dbeafe":e.entityType==="index"?"#ffedd5":e.entityType==="functionCall"?"#f3e8ff":e.entityType==="class"?"#d1fae5":e.entityType==="method"?"#cffafe":"#f3f4f6"},children:e.entityType?e.entityType.toUpperCase():"UNKNOWN"})]}),n("div",{className:"text-xs text-gray-400 truncate",children:e.filePath})]})]}),n("div",{className:"w-32 flex justify-center",children:n("span",{className:"text-[10px] text-gray-500 bg-gray-100 px-2 py-1 rounded",children:"Not analyzed"})}),n("div",{className:"w-32 text-center text-[10px] text-gray-500",children:Td(e.createdAt||null)}),n("div",{className:"w-24 flex justify-end",children:r||t.state!=="idle"?d("div",{className:"px-2 py-1 bg-pink-100 rounded text-xs text-pink-700 font-semibold flex items-center gap-1.5",children:[n(At,{size:14,className:"animate-spin"}),"Analyzing..."]}):n("button",{onClick:a,className:"bg-[#e0e9ec] text-[#005c75] px-4 py-1.5 rounded text-xs font-medium hover:bg-[#d0dde1] transition-colors cursor-pointer",children:"Analyze"})})]})})}const WN=Object.freeze(Object.defineProperty({__proto__:null,default:BN,loader:zN,meta:LN},Symbol.toStringTag,{value:"Module"}));function JN({request:e,context:t}){const r=t.dbNotifier||vt;if(!r)return console.error("[SSE] ERROR: dbNotifier not found in context or global!"),new Response("Server configuration error",{status:500});r.start().catch(()=>{});const s=new ReadableStream({start(a){const o=new TextEncoder;a.enqueue(o.encode(`data: ${JSON.stringify({type:"connected"})}
|
|
431
|
+
|
|
432
|
+
`)),Math.random().toString(36).substring(7);let i=!1;const l=()=>{if(!i){i=!0,r.off("change",c),clearInterval(p);try{a.close()}catch{}}},c=u=>{try{a.enqueue(o.encode(`data: ${JSON.stringify({type:"db-change",changeType:u.type,timestamp:u.timestamp})}
|
|
433
|
+
|
|
434
|
+
`))}catch{l()}};r.on("change",c);const p=setInterval(()=>{try{a.enqueue(o.encode(`data: ${JSON.stringify({type:"keepalive"})}
|
|
435
|
+
|
|
436
|
+
`))}catch{l()}},3e4);e.signal.addEventListener("abort",l)}});return new Response(s,{headers:{"Content-Type":"text/event-stream","Cache-Control":"no-cache",Connection:"keep-alive"}})}const HN=Object.freeze(Object.defineProperty({__proto__:null,loader:JN},Symbol.toStringTag,{value:"Module"}));function VN(){return new Response(JSON.stringify({status:"ok",version:So,message:"CodeYam Remix server is running"}),{status:200,headers:{"Content-Type":"application/json"}})}const GN=Object.freeze(Object.defineProperty({__proto__:null,loader:VN},Symbol.toStringTag,{value:"Module"}));function Ko(e){const t=/^---\n([\s\S]*?)\n---\n?([\s\S]*)$/,r=e.match(t);if(!r)return{frontmatter:{},body:e};const s=r[1],a=r[2],o={},i=s.match(/paths:\s*\n((?:\s+-\s+[^\n]+\n?)*)/),l=s.match(/paths:\s*\[([^\]]*)\]/);i&&i[1].trim()?o.paths=i[1].split(`
|
|
437
|
+
`).filter(p=>p.trim().startsWith("-")).map(p=>p.replace(/^\s*-\s*/,"").replace(/['"]/g,"").trim()).filter(Boolean):l&&(o.paths=l[1].split(",").map(p=>p.replace(/['"]/g,"").trim()).filter(Boolean));const c=s.match(/^category:\s*(.+)$/m);return c&&(o.category=c[1].replace(/['"]/g,"").trim()),{frontmatter:o,body:a}}async function Zs(e,t=""){const r=[];try{const s=await Ee.readdir(e,{withFileTypes:!0});for(const a of s){const o=t?`${t}/${a.name}`:a.name;if(a.isDirectory()){const i=await Zs(ee.join(e,a.name),o);r.push(...i)}else a.isFile()&&a.name.endsWith(".md")&&r.push(o)}}catch{}return r}async function jr(e){const t=await Zs(e),r=[];for(const s of t){const a=ee.join(e,s);try{const o=await Ee.readFile(a,"utf-8"),{frontmatter:i,body:l}=Ko(o);r.push({filePath:s,absolutePath:a,frontmatter:i,body:l})}catch{}}return r}function Md(e){const t=ee.posix.dirname(e.filePath);return!t||t==="."?null:`${t}/**`}function $d(e,t){if(t.frontmatter.paths&&t.frontmatter.paths.length>0)return t.frontmatter.paths.some(s=>Oa(e,s,{matchBase:!0}));const r=Md(t);return r?Oa(e,r,{matchBase:!0}):!1}function KN(e,t){return(!e.frontmatter.paths||e.frontmatter.paths.length===0)&&!Md(e)?[]:t.filter(r=>$d(r,e))}const qN=new Set(["node_modules",".git","dist",".codeyam",".claude","build","coverage"]);async function qo(e){const t=[];async function r(s,a){try{const o=await Pe.readdir(s,{withFileTypes:!0});for(const i of o){const l=L.join(s,i.name),c=a?`${a}/${i.name}`:i.name;i.isDirectory()&&qN.has(i.name)||(i.isDirectory()?await r(l,c):i.isFile()&&t.push(c))}}catch{}}return await r(e,""),t}const QN="codeyam-rule-state.json",Ta=1;function Id(e){const t=e.replace(/^category:\s*.+$\n?/m,"");return Un.createHash("sha256").update(t).digest("hex")}function Rd(e){return ee.join(e,".claude",QN)}async function Dd(e){const t=Rd(e);try{const r=await Ee.readFile(t,"utf-8"),s=JSON.parse(r);return s.version!==Ta?(console.warn(`[ruleState] Unknown version ${s.version}, using empty state`),{version:Ta,rules:{}}):s}catch{return{version:Ta,rules:{}}}}async function Od(e,t){const r=Rd(e),s=ee.dirname(r);await Ee.mkdir(s,{recursive:!0}),await Ee.writeFile(r,JSON.stringify(t,null,2)+`
|
|
438
|
+
`,"utf-8")}async function Qo(e,t){const r=await Dd(e),s=new Set(t.map(a=>a.filePath));for(const a of Object.keys(r.rules))s.has(a)||delete r.rules[a];for(const a of t){const o=await Ee.readFile(a.absolutePath,"utf-8"),i=Id(o),l=r.rules[a.filePath];l?l.contentHash!==i&&(r.rules[a.filePath]={...l,contentHash:i,reviewed:!1}):r.rules[a.filePath]={contentHash:i,reviewed:!1}}return await Od(e,r),r}async function pl(e,t,r,s){const a=await Dd(e);if(r){const o=ee.join(e,".claude","rules"),i=ee.join(o,t),l=await Ee.readFile(i,"utf-8"),c=Id(l);a.rules[t]?(a.rules[t].reviewed=!0,a.rules[t].contentHash=c):a.rules[t]={contentHash:c,reviewed:!0}}else a.rules[t]&&(a.rules[t].reviewed=!1);await Od(e,a)}function Zo(e,t){var r;return((r=e.rules[t])==null?void 0:r.reviewed)??!1}async function Fd(e,t=""){const r=[],s=await Ee.readdir(e,{withFileTypes:!0});for(const a of s){const o=t?`${t}/${a.name}`:a.name;a.isDirectory()?r.push(...await Fd(ee.join(e,a.name),o)):a.name.endsWith(".md")&&r.push(o)}return r}function vs(e){if(!e||e==="(diff not available)")return!1;const t=e.split(`
|
|
439
|
+
`).filter(s=>!(!s.startsWith("+")&&!s.startsWith("-")||s.startsWith("+++")||s.startsWith("---"))).map(s=>s.substring(1).trim());if(t.length===0)return!1;const r=/^(category:\s*\w+)$/;return t.every(s=>r.test(s))}async function ZN({request:e}){const t=we();if(!t)return Response.json({error:"Project root not found"},{status:500});const r=new URL(e.url),s=r.searchParams.get("action"),a=ee.join(t,".claude","rules");if(s==="recent-changes")return eC(t,a);if(s==="reviewed-status")return nC(t,a);if(s==="audit")return rC(t,a);if(s==="source-files")return sC(t);if(s==="rule-coverage")return aC(t,a);if(s==="rule-diff"){const o=r.searchParams.get("filePath");return o?tC(t,o):Response.json({error:"Missing required parameter: filePath"},{status:400})}if(s==="rules-for-path"){const o=r.searchParams.get("path");return o?oC(a,o):Response.json({error:"Missing required parameter: path"},{status:400})}try{const o=await Zs(a),i=[];for(const u of o){const h=ee.join(a,u);try{const m=await Ee.readFile(h,"utf-8"),f=await Ee.stat(h),{frontmatter:g,body:y}=Ko(m);i.push({filePath:u,content:m,frontmatter:g,body:y,lastModified:f.mtime.toISOString()})}catch{}}i.sort((u,h)=>new Date(h.lastModified).getTime()-new Date(u.lastModified).getTime());let l=i.length>0;if(!l)try{await Ee.access(ee.join(t,".claude","codeyam-rule-state.json")),l=!0}catch{}const c=await jr(a),p={};if(c.length>0){const u=await Qo(t,c);for(const h of c)p[h.filePath]=Zo(u,h.filePath)}return Response.json({memories:i,memoryInitialized:l,reviewedStatus:p})}catch(o){return console.error("[API] Error loading memories:",o),Response.json({error:"Failed to load memories",details:o instanceof Error?o.message:String(o),memoryInitialized:!1},{status:500})}}async function XN(e,t){const r=[];try{const s=t("git status --porcelain -- .claude/rules/ 2>/dev/null || true",{cwd:e,encoding:"utf-8"});for(const a of s.split(`
|
|
440
|
+
`).filter(Boolean)){const o=a.substring(0,2);let i=a.substring(3);if(i.includes(" -> ")&&(i=i.split(" -> ")[1]),!i.startsWith(".claude/rules/"))continue;const l=o[0],c=o[1];let p=[i];if(i.endsWith("/")&&l==="?"){const u=ee.join(e,i);try{p=(await Fd(u)).map(m=>i+m)}catch{continue}}for(const u of p){if(u.endsWith("/"))continue;const h=u.replace(".claude/rules/","");let m="modified";l==="A"||l==="?"?m="added":l==="D"||c==="D"?m="deleted":(l==="M"||c==="M")&&(m="modified");let f="";try{if(m==="deleted")f=t(`git diff HEAD -- "${u}" 2>/dev/null || true`,{cwd:e,encoding:"utf-8",maxBuffer:1024*1024});else if(m==="added"&&l==="?"){const g=`${e}/${u}`;try{const y=await Ee.readFile(g,"utf-8");f=`diff --git a/${u} b/${u}
|
|
441
|
+
new file mode 100644
|
|
442
|
+
--- /dev/null
|
|
443
|
+
+++ b/${u}
|
|
444
|
+
@@ -0,0 +1,${y.split(`
|
|
445
|
+
`).length} @@
|
|
446
|
+
${y.split(`
|
|
447
|
+
`).map(x=>"+"+x).join(`
|
|
448
|
+
`)}`}catch{f="(content not available)"}}else f=t(`git diff HEAD -- "${u}" 2>/dev/null || true`,{cwd:e,encoding:"utf-8",maxBuffer:1024*1024});f.length>5e3&&(f=f.substring(0,5e3)+`
|
|
449
|
+
... (truncated)`)}catch{f="(diff not available)"}m==="modified"&&vs(f)||r.push({filePath:h,changeType:m,diff:f})}}}catch{}return r}async function eC(e,t){try{const{execSync:r}=await import("child_process"),s=[],a=await jr(t),o={};if(a.length>0){const u=await Qo(e,a);for(const h of a)o[h.filePath]=Zo(u,h.filePath)}const l=(await XN(e,r)).filter(u=>!o[u.filePath]);l.length>0&&s.push({commitHash:"uncommitted",date:new Date().toISOString(),message:"Uncommitted changes",files:l});const p=r('git log --format="%H|%aI|%s" --since="60 days ago" -- .claude/rules/ 2>/dev/null || true',{cwd:e,encoding:"utf-8",maxBuffer:10*1024*1024}).split(`
|
|
450
|
+
`).filter(Boolean).slice(0,20);for(const u of p){const[h,m,...f]=u.split("|"),g=f.join("|");if(!h||!m)continue;const y=r(`git diff-tree --no-commit-id --name-status -r ${h} -- .claude/rules/ 2>/dev/null || true`,{cwd:e,encoding:"utf-8"}),x=[];for(const w of y.split(`
|
|
451
|
+
`).filter(Boolean)){const[b,v]=w.split(" ");if(!v||!v.startsWith(".claude/rules/"))continue;const N=v.replace(".claude/rules/","");let k="modified";if(b==="A"?k="added":b==="D"&&(k="deleted"),o[N])continue;let E="";try{E=r(`git show ${h} --format="" -- "${v}" 2>/dev/null || true`,{cwd:e,encoding:"utf-8",maxBuffer:1024*1024}),E.length>5e3&&(E=E.substring(0,5e3)+`
|
|
452
|
+
... (truncated)`)}catch{E="(diff not available)"}k==="modified"&&vs(E)||x.push({filePath:N,changeType:k,diff:E})}x.length>0&&s.push({commitHash:h.substring(0,8),date:m,message:g,files:x})}return Response.json({changes:s,reviewedStatus:o})}catch(r){return console.error("[API] Error getting recent changes:",r),Response.json({changes:[],reviewedStatus:{}})}}async function tC(e,t){try{const{execSync:r}=await import("child_process"),s=`.claude/rules/${t}`,a=r(`git rev-list --count HEAD -- "${s}" 2>/dev/null || echo 0`,{cwd:e,encoding:"utf-8"}),o=parseInt(a.trim(),10)||0,i=r(`git diff HEAD -- "${s}" 2>/dev/null || true`,{cwd:e,encoding:"utf-8",maxBuffer:1024*1024});if(i.trim()){if(vs(i))return Response.json({diff:null});const y=i.length>5e3?i.substring(0,5e3)+`
|
|
453
|
+
... (truncated)`:i;return Response.json({diff:{diff:y,commitMessage:"Uncommitted changes",date:new Date().toISOString(),isUncommitted:!0,commitCount:o}})}if(r(`git status --porcelain -- "${s}" 2>/dev/null || true`,{cwd:e,encoding:"utf-8"}).trim().startsWith("?")){const y=ee.join(e,s);try{const x=await Ee.readFile(y,"utf-8"),w=`diff --git a/${s} b/${s}
|
|
454
|
+
new file mode 100644
|
|
455
|
+
--- /dev/null
|
|
456
|
+
+++ b/${s}
|
|
457
|
+
@@ -0,0 +1,${x.split(`
|
|
458
|
+
`).length} @@
|
|
459
|
+
${x.split(`
|
|
460
|
+
`).map(b=>"+"+b).join(`
|
|
461
|
+
`)}`;return Response.json({diff:{diff:w.length>5e3?w.substring(0,5e3)+`
|
|
462
|
+
... (truncated)`:w,commitMessage:"New file (untracked)",date:new Date().toISOString(),isUncommitted:!0,commitCount:0}})}catch{}}const p=r(`git log -1 --format="%H|%aI|%s" -- "${s}" 2>/dev/null || true`,{cwd:e,encoding:"utf-8"}).trim();if(!p)return Response.json({diff:null});const[u,h,...m]=p.split("|"),f=m.join("|");if(!u||!h)return Response.json({diff:null});let g=r(`git show ${u} --format="" -- "${s}" 2>/dev/null || true`,{cwd:e,encoding:"utf-8",maxBuffer:1024*1024});return g.trim()?vs(g)?Response.json({diff:null}):(g.length>5e3&&(g=g.substring(0,5e3)+`
|
|
463
|
+
... (truncated)`),Response.json({diff:{diff:g,commitMessage:f,date:h,isUncommitted:!1,commitCount:o}})):Response.json({diff:null})}catch(r){return console.error("[API] Error getting rule diff:",r),Response.json({diff:null})}}async function nC(e,t){try{const r=await jr(t),s={};if(r.length>0){const a=await Qo(e,r);for(const o of r)s[o.filePath]=Zo(a,o.filePath)}return Response.json({reviewedStatus:s})}catch(r){return console.error("[API] Error getting reviewed status:",r),Response.json({reviewedStatus:{}})}}async function rC(e,t){try{const r=await jr(t),s=await qo(e),a=[];for(const o of s){const i=r.filter(l=>$d(o,l));if(i.length>0){const l=i.reduce((c,p)=>c+p.body.length,0);a.push({filePath:o,matchingRules:i.map(c=>({filePath:c.filePath,patterns:c.frontmatter.paths||[],bodyLength:c.body.length})),totalTextLength:l})}}return a.sort((o,i)=>i.totalTextLength-o.totalTextLength),Response.json({topPaths:a,totalFilesWithCoverage:a.length,allSourceFiles:s})}catch(r){return console.error("[API] Error getting audit data:",r),Response.json({error:"Failed to get audit data",details:r instanceof Error?r.message:String(r)},{status:500})}}async function sC(e){try{const t=await qo(e);return Response.json({files:t})}catch(t){return console.error("[API] Error getting source files:",t),Response.json({error:"Failed to get source files",details:t instanceof Error?t.message:String(t)},{status:500})}}async function aC(e,t){try{const[r,s]=await Promise.all([jr(t),qo(e)]),a={};for(const o of r)a[o.filePath]=KN(o,s).length;return Response.json({coverage:a})}catch(r){return console.error("[API] Error getting rule coverage:",r),Response.json({error:"Failed to get rule coverage",details:r instanceof Error?r.message:String(r)},{status:500})}}async function oC(e,t){try{const r=await Zs(e),s=[];for(const o of r){const i=ee.join(e,o);try{const l=await Ee.readFile(i,"utf-8"),c=await Ee.stat(i),{frontmatter:p,body:u}=Ko(l);p.paths&&p.paths.some(h=>Oa(t,h,{matchBase:!0}))&&s.push({filePath:o,content:l,frontmatter:p,body:u,lastModified:c.mtime.toISOString()})}catch{}}const a=s.reduce((o,i)=>o+i.body.length,0);return Response.json({rules:s,totalTextLength:a})}catch(r){return console.error("[API] Error getting rules for path:",r),Response.json({error:"Failed to get rules for path",details:r instanceof Error?r.message:String(r)},{status:500})}}async function iC({request:e}){const t=we();if(!t)return Response.json({error:"Project root not found"},{status:500});const r=ee.join(t,".claude","rules");try{const s=await e.json(),{action:a,filePath:o,content:i,lastModified:l}=s;if(!o)return Response.json({error:"Missing required field: filePath"},{status:400});if(a==="mark-reviewed")return await pl(t,o,!0),console.log(`[API] Rule marked as reviewed: ${o}`),Response.json({success:!0,message:"Rule marked as reviewed",filePath:o});if(a==="mark-unreviewed")return await pl(t,o,!1),console.log(`[API] Rule marked as unreviewed: ${o}`),Response.json({success:!0,message:"Rule marked as unreviewed",filePath:o});const c=ee.normalize(o);if(c.includes("..")||ee.isAbsolute(c))return Response.json({error:"Invalid file path"},{status:400});const p=ee.join(r,c);switch(a){case"create":case"update":return i?(await Ee.mkdir(ee.dirname(p),{recursive:!0}),await Ee.writeFile(p,i,"utf-8"),console.log(`[API] Memory ${a}d: ${o}`),Response.json({success:!0,message:`Memory ${a}d successfully`,filePath:o})):Response.json({error:"Missing required field: content"},{status:400});case"delete":try{await Ee.unlink(p),console.log(`[API] Memory deleted: ${o}`);const u=ee.dirname(p);try{(await Ee.readdir(u)).length===0&&u!==r&&await Ee.rmdir(u)}catch{}return Response.json({success:!0,message:"Memory deleted successfully"})}catch(u){if(u.code==="ENOENT")return Response.json({error:"Memory not found"},{status:404});throw u}default:return Response.json({error:"Invalid action. Must be create, update, or delete"},{status:400})}}catch(s){return console.error("[API] Error managing memory:",s),Response.json({error:"Failed to manage memory",details:s instanceof Error?s.message:String(s)},{status:500})}}const lC=Object.freeze(Object.defineProperty({__proto__:null,action:iC,loader:ZN},Symbol.toStringTag,{value:"Module"}));async function cC({request:e,context:t}){var o;let r=t.analysisQueue;if(r||(r=await Ht()),!r)return X({error:"Queue not initialized"},{status:500});const s=new URL(e.url),a=s.searchParams.get("queryType");if(!a)return X({error:"Missing queryType parameter for GET request"},{status:400});if(a==="job"){const i=s.searchParams.get("jobId");if(!i)return X({error:"Missing jobId parameter for job query"},{status:400});const l=r.getState();if(((o=l.currentlyExecuting)==null?void 0:o.id)===i)return X({jobId:i,status:"running",job:l.currentlyExecuting});const c=l.jobs.find(u=>u.id===i);if(c){const u=l.jobs.indexOf(c);return X({jobId:i,status:"queued",position:u,job:c})}const p=r.getJobResult(i);return p?X({jobId:i,status:p.status==="error"?"failed":"completed",error:p.error}):X({jobId:i,status:"completed"})}if(a==="full"){const i=r.getState(),l=await Promise.all(i.jobs.map(async p=>{const u=[];if(p.entityShas&&p.entityShas.length>0){const h=p.entityShas.map(f=>xn(f)),m=await Promise.all(h);u.push(...m.filter(f=>f!==null))}return{id:p.id,type:p.type,commitSha:p.commitSha,projectSlug:p.projectSlug,queuedAt:p.queuedAt,entities:u,filePaths:p.filePaths}}));let c;if(i.currentlyExecuting){const p=i.currentlyExecuting,u=[];if(p.entityShas&&p.entityShas.length>0){const h=p.entityShas.map(f=>xn(f)),m=await Promise.all(h);u.push(...m.filter(f=>f!==null))}c={id:p.id,type:p.type,commitSha:p.commitSha,projectSlug:p.projectSlug,queuedAt:p.queuedAt,entities:u,filePaths:p.filePaths}}return X({state:{...i,jobsWithEntities:l,currentlyExecutingWithEntities:c}})}return X({error:"Unknown queryType"},{status:400})}async function dC({request:e,context:t}){console.log("[Queue API] Received request"),console.log("[Queue API] Context keys:",Object.keys(t||{})),console.log("[Queue API] analysisQueue exists:",!!(t!=null&&t.analysisQueue));let r=t.analysisQueue;if(r||(r=await Ht(),console.log("[Queue API] Using global queue")),!r)return console.error("[Queue API] ERROR: Queue not initialized in context"),X({error:"Queue not initialized"},{status:500});const s=await e.json(),{action:a,...o}=s;if(console.log("[Queue API] Action:",a,"Params:",Object.keys(o)),a==="enqueue"){const{jobId:i,completion:l}=r.enqueue(o);return l.catch(c=>{console.error(`[Queue API] Job ${i} failed:`,c)}),X({jobId:i,status:"queued"})}if(a==="resume")return r.resume(),X({status:"resumed"});if(a==="pause")return r.pause(),X({status:"paused"});if(a==="remove"){const{jobId:i}=o;return i?r.removeJob(i)?X({status:"removed",jobId:i}):X({error:"Job not found in queue"},{status:404}):X({error:"Missing jobId parameter"},{status:400})}if(a==="clear"){const i=r.clearQueue();return X({status:"cleared",count:i})}if(a==="reorder"){const{jobId:i,direction:l}=o;return!i||!l?X({error:"Missing jobId or direction parameter"},{status:400}):l!=="up"&&l!=="down"?X({error:'Invalid direction: must be "up" or "down"'},{status:400}):r.reorderJob(i,l)?X({status:"reordered",jobId:i,direction:l}):X({error:"Could not reorder job (not found or at boundary)"},{status:400})}return X({error:"Unknown action"},{status:400})}const uC=Object.freeze(Object.defineProperty({__proto__:null,action:dC,loader:cC},Symbol.toStringTag,{value:"Module"})),pC=()=>[{title:"Empty State - CodeYam"},{name:"description",content:"Simulations empty state development view"}],hC=Qe(function(){return Je(),n(Ws,{children:d("div",{className:"h-screen bg-[#F8F7F6] flex flex-col overflow-hidden",children:[n("header",{className:"bg-white border-b border-gray-200 shrink-0 relative h-[54px]",children:d("div",{className:"flex items-center h-full px-6 gap-6",children:[d("div",{className:"flex items-center gap-3 min-w-0",children:[n("svg",{width:"17",height:"17",viewBox:"0 0 17 17",fill:"none",className:"shrink-0",children:n("path",{d:"M13 8.5H4M4 8.5L8.5 4M4 8.5L8.5 13",stroke:"#005c75",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})}),n("h1",{className:"text-lg font-semibold text-black m-0 leading-[26px] shrink-0",children:"Dashboard"}),n("span",{className:"text-xs text-[#626262] font-mono whitespace-nowrap overflow-hidden text-ellipsis min-w-0",children:"codeyam-cli/src/webserver/app/routes/_index.tsx"})]}),d("div",{className:"flex items-center gap-3 shrink-0",children:[d("div",{className:"flex items-center gap-2 px-[15px] py-0 h-[26px] bg-[#efefef] border border-[#e1e1e1] rounded",children:[n("div",{className:"w-2 h-2 rounded-full bg-[#626262]"}),n("span",{className:"text-xs font-semibold text-[#626262]",children:"Not analyzed"})]}),n("button",{className:"px-[15px] py-0 h-[26px] bg-[#005c75] text-white rounded text-xs font-semibold border-none cursor-pointer hover:bg-[#004a5e] transition-colors",children:"Analyze"})]}),d("div",{className:"flex items-center gap-1 text-[10px] text-[#626262] ml-auto",children:[n("span",{className:"leading-[22px]",children:"Next Entity"}),n("svg",{width:"17",height:"17",viewBox:"0 0 17 17",fill:"none",className:"shrink-0",children:n("path",{d:"M4 8.5H13M13 8.5L8.5 4M13 8.5L8.5 13",stroke:"#005c75",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})})]})]})}),n("div",{className:"bg-[#efefef] border-b border-[#efefef] shrink-0",children:d("div",{className:"flex items-center gap-3 h-11 px-[15px]",children:[d("div",{className:"px-4 flex items-center justify-center gap-3 shrink-0 text-sm rounded bg-[#343434] text-[#efefef] font-semibold h-8",children:["Scenarios",n("span",{className:"px-2 py-0.5 rounded-[9px] text-xs font-semibold bg-[#cbf3fa] text-[#005c75] min-w-[25px] text-center",children:"0"})]}),d("div",{className:"px-4 flex items-center justify-center gap-3 shrink-0 text-sm rounded-[9px] text-[#3e3e3e] font-normal",children:["Related Entities",n("span",{className:"px-2 py-0.5 rounded-[9px] text-xs font-semibold bg-[#e1e1e1] text-[#3e3e3e] min-w-[25px] text-center",children:"5"})]}),n("div",{className:"px-4 shrink-0 text-sm text-[#3e3e3e] font-normal",children:"Code"}),n("div",{className:"px-4 shrink-0 text-sm text-[#3e3e3e] font-normal",children:"Data Structure"}),n("div",{className:"px-4 shrink-0 text-sm text-[#3e3e3e] font-normal",children:"History"})]})}),d("div",{className:"flex flex-1 gap-0 min-h-0",children:[n("div",{className:"w-[165px] bg-[#e1e1e1] border-r border-[#c7c7c7] flex items-center justify-center shrink-0",children:n("span",{className:"text-xs font-medium text-[#8e8e8e] leading-5",children:"No Scenarios"})}),n(jd,{selectedScenario:null,analysis:void 0,entity:{sha:"mock-sha",name:"Dashboard",filePath:"codeyam-cli/src/webserver/app/routes/_index.tsx",entityType:"visual"},viewMode:"screenshot",cacheBuster:Date.now(),hasScenarios:!1,isAnalyzing:!1,projectSlug:null,hasAnApiKey:!0})]})]})})}),mC=Object.freeze(Object.defineProperty({__proto__:null,default:hC,meta:pC},Symbol.toStringTag,{value:"Module"})),fC=()=>[{title:"Settings - CodeYam"},{name:"description",content:"Configure project settings"}];async function gC({request:e}){var t,r;try{const s=await Is();if(!s)return X({config:null,secrets:null,versionInfo:null,simulationsEnabled:!1,error:"Project configuration not found"});let a=!1;try{const c=await ze();if(c){const{project:p}=await Oe(c);a=((r=(t=p.metadata)==null?void 0:t.labs)==null?void 0:r.simulations)===!0}}catch{}const o=we()||process.cwd(),i=await Rs(o),l=Nc(s.projectSlug);return X({config:s,secrets:{GROQ_API_KEY:i.GROQ_API_KEY||"",ANTHROPIC_API_KEY:i.ANTHROPIC_API_KEY||"",OPENAI_API_KEY:i.OPENAI_API_KEY||""},versionInfo:l,simulationsEnabled:a,error:null})}catch(s){return console.error("Failed to load config:",s),X({config:null,secrets:null,versionInfo:null,simulationsEnabled:!1,error:"Failed to load configuration"})}}function yC(e){if(!e||!e.trim())return;const t=e.trim().split(/\s+/);if(t.length===0)return;const r=t[0],s=t.length>1?t.slice(1):void 0;return{command:r,args:s}}async function xC({request:e}){try{const t=await e.formData(),r=t.get("universalMocks"),s=t.get("startCommands"),a=t.get("groqApiKey"),o=t.get("anthropicApiKey"),i=t.get("openAiApiKey"),l=t.get("pathsToIgnore"),c=t.get("memorySettings");let p;if(r)try{p=JSON.parse(r)}catch{return X({success:!1,error:"Invalid universalMocks JSON format",requiresRestart:!1},{status:400})}let u;if(s)try{u=JSON.parse(s)}catch{return X({success:!1,error:"Invalid startCommands JSON format",requiresRestart:!1},{status:400})}let h;l&&(h=l.split(",").map(x=>x.trim()).map(x=>x.startsWith('"')&&x.endsWith('"')||x.startsWith("'")&&x.endsWith("'")?x.slice(1,-1):x).filter(x=>x.length>0));let m;if(c)try{m=JSON.parse(c)}catch{return X({success:!1,error:"Invalid memorySettings JSON format",requiresRestart:!1},{status:400})}let f;if(u){const x=await Is();x!=null&&x.webapps&&(f=x.webapps.map((w,b)=>{if(u[b]!==void 0){const v=yC(u[b]);return{...w,startCommand:v}}return w}))}if(!await mc({universalMocks:p,pathsToIgnore:h,webapps:f,memory:m}))return X({success:!1,error:"Failed to update configuration",requiresRestart:!1},{status:500});let y=!1;if(a!==void 0||o!==void 0||i!==void 0){const x=we()||process.cwd(),w=await Rs(x);y=a!==void 0&&a!==(w.GROQ_API_KEY||"")||o!==void 0&&o!==(w.ANTHROPIC_API_KEY||"")||i!==void 0&&i!==(w.OPENAI_API_KEY||""),await Mm(x,{...w,GROQ_API_KEY:a||void 0,ANTHROPIC_API_KEY:o||void 0,OPENAI_API_KEY:i||void 0},!0)}return X({success:!0,error:null,requiresRestart:y})}catch(t){return console.log("[Settings Action] Failed to save config:",t),X({success:!1,error:"Failed to save configuration",requiresRestart:!1},{status:500})}}function hl(e){if(!e)return"";const t=[e.command];return e.args&&e.args.length>0&&t.push(...e.args),t.join(" ")}function ml({mock:e,onSave:t,onCancel:r}){const[s,a]=M(e.entityName),[o,i]=M(e.filePath),[l,c]=M(e.content);return d("div",{className:"space-y-3",children:[d("div",{children:[n("label",{className:"block text-sm font-medium text-gray-700 mb-1",children:"Entity Name"}),n("input",{type:"text",value:s,onChange:u=>a(u.target.value),className:"w-full px-3 py-2 border border-gray-300 rounded text-sm focus:outline-none focus:border-[#005C75] focus:ring-1 focus:ring-[#005C75]",placeholder:"e.g., determineDatabaseType"})]}),d("div",{children:[n("label",{className:"block text-sm font-medium text-gray-700 mb-1",children:"File Path"}),n("input",{type:"text",value:o,onChange:u=>i(u.target.value),className:"w-full px-3 py-2 border border-gray-300 rounded text-sm focus:outline-none focus:border-[#005C75] focus:ring-1 focus:ring-[#005C75]",placeholder:"e.g., packages/database/src/lib/kysely/db.ts"})]}),d("div",{children:[n("label",{className:"block text-sm font-medium text-gray-700 mb-1",children:"Content"}),n("textarea",{value:l,onChange:u=>c(u.target.value),rows:6,className:"w-full px-3 py-2 border border-gray-300 rounded text-sm font-mono focus:outline-none focus:border-[#005C75] focus:ring-1 focus:ring-[#005C75]",placeholder:"e.g., function determineDatabaseType() { return 'postgresql' }"})]}),d("div",{className:"flex gap-2 justify-end",children:[n("button",{type:"button",onClick:r,className:"px-4 py-2 bg-gray-200 text-gray-800 border-none rounded text-sm cursor-pointer hover:bg-gray-300",children:"Cancel"}),n("button",{type:"button",onClick:()=>{if(!s.trim()||!o.trim()||!l.trim()){alert("All fields are required");return}t({entityName:s,filePath:o,content:l})},className:"px-4 py-2 bg-[#005C75] text-white border-none rounded text-sm cursor-pointer hover:bg-[#004a5d]",children:"Save"})]})]})}function bC(e){try{return new Date(e).toLocaleDateString("en-US",{year:"numeric",month:"long",day:"numeric",hour:"numeric",minute:"2-digit"})}catch{return e}}const wC=Qe(function(){var je,pe,Z,Ne,de;const{config:t,secrets:r,versionInfo:s,simulationsEnabled:a,error:o}=tt(),i=xu(),l=Je(),c=Yt(),[p,u]=M(a?"project-metadata":"memory");$t({source:"settings-page"});const[h,m]=M((t==null?void 0:t.universalMocks)||[]),[f,g]=M(((t==null?void 0:t.pathsToIgnore)||[]).join(", ")),[y,x]=M(((t==null?void 0:t.pathsToIgnore)||[]).join(", ")),[w,b]=M((r==null?void 0:r.GROQ_API_KEY)||""),[v,N]=M((r==null?void 0:r.ANTHROPIC_API_KEY)||""),[k,E]=M((r==null?void 0:r.OPENAI_API_KEY)||""),[C,S]=M(!1),[_,j]=M(!1),[$,P]=M(!1),[I,R]=M(!1),[T,G]=M(!1),[J,F]=M(!1),[H,U]=M(null),[z,A]=M(!1),[Y,V]=M({}),[W,Q]=M(((je=t==null?void 0:t.memory)==null?void 0:je.conversationReflection)??!0),[B,D]=M(((pe=t==null?void 0:t.memory)==null?void 0:pe.ruleMaintenance)??!0),[O,q]=M(((Z=t==null?void 0:t.memory)==null?void 0:Z.promptModel)??"haiku");se(()=>{var ne,be,Ce,Fe;if(t){m(t.universalMocks||[]);const Se=(t.pathsToIgnore||[]).join(", ");g(Se),x(Se);const Re={};(ne=t.webapps)==null||ne.forEach((Be,Me)=>{Be.startCommand&&(Re[Me]=hl(Be.startCommand))}),V(Re),Q(((be=t.memory)==null?void 0:be.conversationReflection)??!0),D(((Ce=t.memory)==null?void 0:Ce.ruleMaintenance)??!0),q(((Fe=t.memory)==null?void 0:Fe.promptModel)??"haiku")}r&&(b(r.GROQ_API_KEY||""),N(r.ANTHROPIC_API_KEY||""),E(r.OPENAI_API_KEY||""))},[t,r]),se(()=>{if(i!=null&&i.success){R(!0);const ne=setTimeout(()=>R(!1),3e3);return()=>clearTimeout(ne)}},[i]),se(()=>{if(l.state==="idle"&&l.data&&!J){console.log("[Settings] Fetcher data:",l.data);const ne=l.data;if(ne.success){console.log("[Settings] Save successful, revalidating..."),R(!0),F(!0),(f!==y||ne.requiresRestart)&&G(!0),c.revalidate();const be=setTimeout(()=>{R(!1),F(!1)},3e3);return()=>clearTimeout(be)}}},[l.state,l.data,J,c,f,y]);const re=ne=>{ne.preventDefault();const be=new FormData(ne.currentTarget);be.set("universalMocks",JSON.stringify(h)),be.set("startCommands",JSON.stringify(Y)),be.set("memorySettings",JSON.stringify({conversationReflection:W,ruleMaintenance:B,promptModel:O})),console.log("[Settings] Submitting form data:",{universalMocks:be.get("universalMocks"),startCommands:be.get("startCommands"),openAiApiKey:be.get("openAiApiKey")?"***":"(empty)"}),l.submit(be,{method:"post"})},le=ne=>{m([...h,ne]),A(!1)},he=(ne,be)=>{const Ce=[...h];Ce[ne]=be,m(Ce),U(null)},oe=ne=>{m(h.filter((be,Ce)=>Ce!==ne))};if(o)return d("div",{className:"max-w-6xl mx-auto p-8 font-sans",children:[n("header",{className:"mb-6 pb-4 border-b border-gray-200",children:n("div",{className:"flex justify-between items-center",children:n("h1",{className:"text-4xl font-bold text-gray-900",children:"Settings"})})}),n("div",{className:"bg-red-50 border border-red-200 rounded-lg p-4",children:n("p",{className:"text-red-700",children:o})})]});const ge=[{id:"project-metadata",label:"Project Metadata"},{id:"ai-provider",label:"AI Provider Configuration"},{id:"commands",label:"Commands"},{id:"paths-to-ignore",label:"Paths To Ignore"},{id:"universal-mocks",label:"Universal Mocks"},{id:"memory",label:"Memory"},{id:"current-configuration",label:"Current Configuration"}],_e=a?ge:ge.filter(ne=>ne.id==="memory");return n("div",{className:"bg-[#F8F7F6] min-h-screen",children:d("div",{className:"px-6 sm:px-12 lg:px-20 pt-8 pb-12 font-sans",children:[d("div",{className:"mb-8 flex justify-between items-start",children:[d("div",{children:[n("h1",{className:"text-[28px] font-semibold text-gray-900 mb-2",children:"Settings"}),n("p",{className:"text-[15px] text-gray-500",children:"Project Configuration"})]}),n("button",{type:"submit",form:"settings-form",disabled:l.state==="submitting",className:"px-6 py-2 bg-[#005C75] text-white border-none rounded text-sm font-medium cursor-pointer disabled:cursor-not-allowed disabled:opacity-60 hover:bg-[#004a5d] whitespace-nowrap",children:l.state==="submitting"?"Saving...":"Save Settings"})]}),(I||T||(i==null?void 0:i.error)||l.data&&typeof l.data=="object"&&"error"in l.data)&&d("div",{className:"mb-4 space-y-3",children:[I&&n("div",{className:"text-emerald-600 text-sm font-medium bg-emerald-50 border border-emerald-200 rounded px-4 py-2",children:"Settings saved successfully!"}),T&&d("div",{className:"text-amber-700 text-sm font-medium bg-amber-50 border border-amber-200 rounded px-4 py-2",children:[n("div",{children:"Settings changed. Please restart CodeYam for changes to take effect:"}),d("div",{className:"flex items-center gap-2 mt-1",children:[n("code",{className:"bg-amber-100 px-2 py-1 rounded text-xs",children:"codeyam stop && codeyam"}),n(ht,{content:"codeyam stop && codeyam",className:"px-2 py-1 text-xs bg-amber-200 hover:bg-amber-300 text-amber-800 rounded border-none transition-colors"})]})]}),(i==null?void 0:i.error)&&n("div",{className:"text-red-600 text-sm font-medium bg-red-50 border border-red-200 rounded px-4 py-2",children:i.error}),(()=>{if(l.data&&typeof l.data=="object"&&"error"in l.data){const ne=l.data;return typeof ne.error=="string"?n("div",{className:"text-red-600 text-sm font-medium bg-red-50 border border-red-200 rounded px-4 py-2",children:ne.error}):null}return null})()]}),d("div",{className:"flex flex-col lg:flex-row gap-6 lg:gap-8 items-start",children:[n("nav",{className:"w-full lg:w-64 flex-shrink-0",children:n("ul",{className:"flex lg:flex-col overflow-x-auto gap-1",children:_e.map(ne=>n("li",{children:n("button",{type:"button",onClick:()=>u(ne.id),className:`w-full text-left px-3 lg:px-0 py-2.5 text-sm transition-colors cursor-pointer whitespace-nowrap ${p===ne.id?"text-[#005C75] font-medium":"text-gray-600 hover:text-gray-900"}`,children:ne.label})},ne.id))})}),n("div",{className:"flex-1 min-w-0 -mt-2",children:d("form",{id:"settings-form",onSubmit:re,className:"space-y-6",children:[p==="project-metadata"&&d("div",{children:[n("h2",{className:"text-lg font-semibold text-gray-800 mb-4",children:"Project Metadata"}),d("div",{className:"mb-6",children:[n("label",{className:"block mb-2 font-medium text-gray-700",children:"Web Applications"}),t!=null&&t.webapps&&t.webapps.length>0?n("div",{className:"space-y-3",children:t.webapps.map((ne,be)=>{var Ce;return n("div",{className:"p-4 bg-white border border-gray-200 rounded",children:d("div",{className:"space-y-2 text-sm",children:[d("div",{children:[n("span",{className:"font-medium text-gray-700",children:"Path:"})," ",n("span",{className:"text-gray-900",children:ne.path==="."?"Root":ne.path})]}),ne.appDirectory&&d("div",{children:[n("span",{className:"font-medium text-gray-700",children:"App Directory:"})," ",n("span",{className:"text-gray-900",children:ne.appDirectory})]}),d("div",{children:[n("span",{className:"font-medium text-gray-700",children:"Framework:"})," ",n("span",{className:"text-gray-900",children:ne.framework})]}),ne.startCommand&&d("div",{children:[n("span",{className:"font-medium text-gray-700",children:"Start Command:"})," ",d("span",{className:"text-gray-900 font-mono text-xs",children:[ne.startCommand.command," ",(Ce=ne.startCommand.args)==null?void 0:Ce.join(" ")]})]})]})},be)})}):n("p",{className:"text-sm text-gray-600 italic",children:"No web applications configured"}),n("p",{className:"mt-2 text-sm text-gray-600",children:"Web applications are detected during initialization. To modify, edit `.codeyam/config.json` or re-run `codeyam init`."})]})]}),p==="ai-provider"&&d("div",{children:[n("h3",{className:"text-lg font-semibold text-gray-800 mb-4",children:"AI Provider API Keys"}),n("p",{className:"text-sm text-gray-600 mb-6",children:"Configure API keys for AI-powered analysis. Choose the provider that best fits your needs."}),d("div",{className:"space-y-6",children:[d("div",{className:"border border-gray-200 rounded-lg p-5 bg-white",children:[n("div",{className:"flex items-start justify-between mb-3",children:d("div",{children:[n("h4",{className:"text-base font-semibold text-gray-900 mb-1",children:"Groq"}),n("p",{className:"text-sm text-gray-600 mb-3",children:"Lightning-fast inference with industry-leading speed. Groq's LPU architecture delivers exceptional performance for real-time AI applications with competitive pricing."}),d("div",{className:"flex flex-wrap gap-2 text-xs",children:[d("div",{className:"px-2 py-1 bg-green-100 text-green-800 rounded",children:[n("span",{className:"font-medium",children:"Cost:"})," ","$0.10/1M tokens"]}),d("div",{className:"px-2 py-1 bg-cyan-100 text-cyan-800 rounded",children:[n("span",{className:"font-medium",children:"Speed:"})," 850 tokens/s"]}),d("div",{className:"px-2 py-1 bg-purple-100 text-purple-800 rounded",children:[n("span",{className:"font-medium",children:"Reliability:"})," ","Less reliable, but capable of producing reasonable results"]})]})]})}),d("div",{className:"mt-4",children:[n("label",{htmlFor:"groqApiKey",className:"block text-sm font-medium text-gray-700 mb-2",children:"API Key"}),d("div",{className:"relative",children:[n("input",{type:C?"text":"password",id:"groqApiKey",name:"groqApiKey",value:w,onChange:ne=>b(ne.target.value),placeholder:"gsk_...",className:"w-full px-3 py-2 pr-24 border border-gray-300 rounded text-sm focus:outline-none focus:border-[#005C75] focus:ring-1 focus:ring-[#005C75]"}),n("button",{type:"button",onClick:()=>S(!C),className:"absolute right-2 top-1/2 -translate-y-1/2 px-3 py-1 text-xs text-gray-600 hover:text-gray-800 focus:outline-none cursor-pointer",children:C?"Hide":"Show"})]})]})]}),d("div",{className:"border border-gray-200 rounded-lg p-5 bg-white",children:[n("div",{className:"flex items-start justify-between mb-3",children:d("div",{children:[n("h4",{className:"text-base font-semibold text-gray-900 mb-1",children:"Anthropic Claude"}),n("p",{className:"text-sm text-gray-600 mb-3",children:"Advanced reasoning and coding capabilities with superior context understanding. Claude excels at complex analysis tasks and provides highly accurate results with detailed explanations."}),d("div",{className:"flex flex-wrap gap-2 text-xs",children:[d("div",{className:"px-2 py-1 bg-green-100 text-green-800 rounded",children:[n("span",{className:"font-medium",children:"Cost:"})," ","$3.00/1M tokens"]}),d("div",{className:"px-2 py-1 bg-cyan-100 text-cyan-800 rounded",children:[n("span",{className:"font-medium",children:"Speed:"})," 120 tokens/s"]}),d("div",{className:"px-2 py-1 bg-purple-100 text-purple-800 rounded",children:[n("span",{className:"font-medium",children:"Reliability:"})," ","Consistent, high quality results"]})]})]})}),d("div",{className:"mt-4",children:[n("label",{htmlFor:"anthropicApiKey",className:"block text-sm font-medium text-gray-700 mb-2",children:"API Key"}),d("div",{className:"relative",children:[n("input",{type:_?"text":"password",id:"anthropicApiKey",name:"anthropicApiKey",value:v,onChange:ne=>N(ne.target.value),placeholder:"sk-ant-...",className:"w-full px-3 py-2 pr-24 border border-gray-300 rounded text-sm focus:outline-none focus:border-[#005C75] focus:ring-1 focus:ring-[#005C75]"}),n("button",{type:"button",onClick:()=>j(!_),className:"absolute right-2 top-1/2 -translate-y-1/2 px-3 py-1 text-xs text-gray-600 hover:text-gray-800 focus:outline-none cursor-pointer",children:_?"Hide":"Show"})]})]})]}),d("div",{className:"border border-gray-200 rounded-lg p-5 bg-white",children:[n("div",{className:"flex items-start justify-between mb-3",children:d("div",{children:[n("h4",{className:"text-base font-semibold text-gray-900 mb-1",children:"OpenAI GPT"}),n("p",{className:"text-sm text-gray-600 mb-3",children:"Industry-standard AI with broad capabilities and extensive ecosystem. GPT models offer reliable performance across diverse tasks with good balance of speed and quality."}),d("div",{className:"flex flex-wrap gap-2 text-xs",children:[d("div",{className:"px-2 py-1 bg-green-100 text-green-800 rounded",children:[n("span",{className:"font-medium",children:"Cost:"})," ","$2.50/1M tokens"]}),d("div",{className:"px-2 py-1 bg-cyan-100 text-cyan-800 rounded",children:[n("span",{className:"font-medium",children:"Speed:"})," 150 tokens/s"]}),d("div",{className:"px-2 py-1 bg-purple-100 text-purple-800 rounded",children:[n("span",{className:"font-medium",children:"Reliability:"})," ","Consistent, high quality results"]})]})]})}),d("div",{className:"mt-4",children:[n("label",{htmlFor:"openAiApiKey",className:"block text-sm font-medium text-gray-700 mb-2",children:"API Key"}),d("div",{className:"relative",children:[n("input",{type:$?"text":"password",id:"openAiApiKey",name:"openAiApiKey",value:k,onChange:ne=>E(ne.target.value),placeholder:"sk-...",className:"w-full px-3 py-2 pr-24 border border-gray-300 rounded text-sm focus:outline-none focus:border-[#005C75] focus:ring-1 focus:ring-[#005C75]"}),n("button",{type:"button",onClick:()=>P(!$),className:"absolute right-2 top-1/2 -translate-y-1/2 px-3 py-1 text-xs text-gray-600 hover:text-gray-800 focus:outline-none cursor-pointer",children:$?"Hide":"Show"})]})]})]})]})]}),p==="commands"&&d("div",{children:[n("h2",{className:"text-lg font-semibold text-gray-800 mb-4",children:"Commands"}),n("p",{className:"text-sm text-gray-600 mb-6",children:"Configure start commands for your web applications"}),t!=null&&t.webapps&&t.webapps.length>0?n("div",{className:"space-y-4",children:t.webapps.map((ne,be)=>d("div",{className:"border border-gray-200 rounded-lg p-5 bg-white",children:[d("div",{className:"mb-4",children:[n("div",{className:"text-base font-semibold text-gray-900 mb-1",children:ne.path==="."?"Root":ne.path}),n("div",{className:"text-sm text-gray-600",children:ne.framework})]}),d("div",{children:[n("label",{htmlFor:`startCommand-${be}`,className:"block text-sm font-medium text-gray-700 mb-2",children:"Start Command"}),n("input",{type:"text",id:`startCommand-${be}`,name:`startCommand-${be}`,value:Y[be]||"",onChange:Ce=>V({...Y,[be]:Ce.target.value}),placeholder:"e.g., pnpm dev --port $PORT",className:"w-full px-3 py-2 border border-gray-300 rounded text-sm font-mono focus:outline-none focus:border-[#005C75] focus:ring-1 focus:ring-[#005C75]"}),n("p",{className:"mt-2 text-xs text-gray-500",children:"Use $PORT as a placeholder for the dynamic port number"})]})]},be))}):n("p",{className:"text-sm text-gray-600 italic",children:"No web applications configured"})]}),p==="paths-to-ignore"&&d("div",{children:[n("h2",{className:"text-lg font-semibold text-gray-800 mb-4",children:"Paths To Ignore"}),n("input",{type:"text",id:"pathsToIgnore",name:"pathsToIgnore",value:f,onChange:ne=>g(ne.target.value),placeholder:"e.g., __tests__, \\.test\\.ts$, ^background (no quotes needed)",className:"w-full px-3 py-3 border border-gray-300 rounded text-sm font-mono focus:outline-none focus:border-[#005C75] focus:ring-2 focus:ring-[#005C75]/10"}),d("p",{className:"mt-2 text-sm text-gray-600",children:["Comma-separated list of regex patterns for paths to ignore during file watching. Examples:"," ",n("code",{className:"bg-gray-100 px-1 rounded",children:"__tests__"}),","," ",n("code",{className:"bg-gray-100 px-1 rounded",children:"\\.test\\.tsx?$"}),","," ",n("code",{className:"bg-gray-100 px-1 rounded",children:"^background"}),n("br",{}),n("span",{className:"text-xs text-gray-500 mt-1 inline-block",children:"Note: Files matching patterns in .gitignore are also automatically ignored"})]})]}),p==="universal-mocks"&&d("div",{children:[n("h2",{className:"text-lg font-semibold text-gray-800 mb-4",children:"Universal Mocks"}),n("p",{className:"mb-3 text-sm text-gray-600",children:"Mock functions that will be applied across all entity simulations"}),h.length===0?d("div",{className:"mb-4",children:[n("div",{className:"text-sm text-gray-500 mb-3",children:"No universal mocks configured"}),n("button",{type:"button",onClick:()=>A(!0),className:"px-4 py-2 bg-[#005C75] text-white border-none rounded text-sm cursor-pointer hover:bg-[#004a5d]",children:"Add Mock"})]}):n("div",{className:"space-y-3",children:h.map((ne,be)=>n("div",{className:"p-4 bg-gray-50 rounded border border-gray-200",children:H===be?n(ml,{mock:ne,onSave:Ce=>he(be,Ce),onCancel:()=>U(null)}):n(ye,{children:d("div",{className:"flex justify-between items-start mb-2",children:[d("div",{className:"flex-1",children:[n("div",{className:"font-medium text-gray-800 mb-1",children:ne.entityName}),n("div",{className:"text-sm text-gray-600 mb-2",children:ne.filePath}),n("pre",{className:"text-xs bg-white p-2 rounded border border-gray-200 overflow-x-auto",children:ne.content})]}),d("div",{className:"flex gap-2 ml-3",children:[n("button",{type:"button",onClick:()=>U(be),className:"px-3 py-1 bg-teal-600 text-white border-none rounded text-sm cursor-pointer hover:bg-teal-700",children:"Edit"}),n("button",{type:"button",onClick:()=>oe(be),className:"px-3 py-1 bg-red-600 text-white border-none rounded text-sm cursor-pointer hover:bg-red-700",children:"Delete"})]})]})})},be))}),h.length>0&&n("button",{type:"button",onClick:()=>A(!0),className:"mt-4 px-4 py-2 bg-[#005C75] text-white border-none rounded text-sm cursor-pointer hover:bg-[#004a5d]",children:"Add Mock"})]}),p==="memory"&&d("div",{children:[n("h2",{className:"text-lg font-semibold text-gray-800 mb-4",children:"Memory"}),n("p",{className:"text-sm text-gray-600 mb-6",children:"Configure how CodeYam reflects on conversations and maintains rules between sessions."}),d("div",{className:"space-y-6",children:[n("div",{className:"border border-gray-200 rounded-lg p-5 bg-white",children:d("div",{className:"flex items-start justify-between",children:[d("div",{className:"flex-1 mr-4",children:[n("h4",{className:"text-base font-semibold text-gray-900 mb-1",children:"Conversation Reflection"}),n("p",{className:"text-sm text-gray-600",children:"After each conversation, an agent reviews the session for architectural decisions, tribal knowledge, confusion, or corrections that future sessions would benefit from knowing. It creates or updates Claude Rules based on what it learns."})]}),n("button",{type:"button",role:"switch","aria-checked":W,onClick:()=>Q(!W),className:`relative inline-flex h-6 w-11 flex-shrink-0 cursor-pointer rounded-full border-2 border-transparent transition-colors duration-200 ease-in-out focus:outline-none ${W?"bg-[#005C75]":"bg-gray-200"}`,children:n("span",{className:`pointer-events-none inline-block h-5 w-5 transform rounded-full bg-white shadow ring-0 transition duration-200 ease-in-out ${W?"translate-x-5":"translate-x-0"}`})})]})}),n("div",{className:"border border-gray-200 rounded-lg p-5 bg-white",children:d("div",{className:"flex items-start justify-between",children:[d("div",{className:"flex-1 mr-4",children:[n("h4",{className:"text-base font-semibold text-gray-900 mb-1",children:"Rule Maintenance"}),n("p",{className:"text-sm text-gray-600",children:"After each conversation, an agent checks if any existing Claude Rules have become stale based on recent code changes. It reviews the rule content against file diffs and updates rules that are out of date."})]}),n("button",{type:"button",role:"switch","aria-checked":B,onClick:()=>D(!B),className:`relative inline-flex h-6 w-11 flex-shrink-0 cursor-pointer rounded-full border-2 border-transparent transition-colors duration-200 ease-in-out focus:outline-none ${B?"bg-[#005C75]":"bg-gray-200"}`,children:n("span",{className:`pointer-events-none inline-block h-5 w-5 transform rounded-full bg-white shadow ring-0 transition duration-200 ease-in-out ${B?"translate-x-5":"translate-x-0"}`})})]})}),d("div",{className:"border border-gray-200 rounded-lg p-5 bg-white",children:[n("h4",{className:"text-base font-semibold text-gray-900 mb-1",children:"Memory Prompt Model"}),n("p",{className:"text-sm text-gray-600 mb-4",children:"Choose the Claude model used for conversation reflection and rule maintenance tasks."}),n("div",{className:"space-y-3",children:[{value:"haiku",label:"Haiku",badge:"Default, Recommended",description:"Fastest and cheapest. Good for routine reflection tasks."},{value:"sonnet",label:"Sonnet",badge:null,description:"Balanced speed and quality. Better at nuanced rule writing."},{value:"opus",label:"Opus",badge:null,description:"Highest quality. Best for complex architectural decisions. Costs significantly more."}].map(ne=>d("label",{className:`flex items-start gap-3 p-3 rounded-lg border cursor-pointer transition-colors ${O===ne.value?"border-[#005C75] bg-[#005C75]/5":"border-gray-200 hover:border-gray-300"}`,children:[n("input",{type:"radio",name:"promptModel",value:ne.value,checked:O===ne.value,onChange:()=>q(ne.value),className:"mt-1 accent-[#005C75]"}),d("div",{children:[d("div",{className:"flex items-center gap-2",children:[n("span",{className:"text-sm font-medium text-gray-900",children:ne.label}),ne.badge&&n("span",{className:"px-2 py-0.5 bg-green-100 text-green-800 rounded text-xs",children:ne.badge})]}),n("p",{className:"text-sm text-gray-600 mt-0.5",children:ne.description})]})]},ne.value))})]})]})]}),p==="current-configuration"&&d("div",{className:"space-y-6",children:[t&&d("div",{children:[n("h2",{className:"text-lg font-semibold text-gray-800 mb-4",children:"Current Configuration"}),n("div",{className:"p-4 bg-white border border-gray-200 rounded mb-6",children:d("div",{className:"space-y-2 text-sm",children:[t.projectSlug&&d("div",{children:[n("span",{className:"font-medium text-gray-700",children:"Project Slug:"})," ",n("span",{className:"text-gray-900",children:t.projectSlug})]}),t.packageManager&&d("div",{children:[n("span",{className:"font-medium text-gray-700",children:"Package Manager:"})," ",n("span",{className:"text-gray-900",children:t.packageManager})]})]})}),t.webapps&&t.webapps.length>0&&d("div",{children:[n("h3",{className:"text-base font-semibold text-gray-800 mb-3",children:"Web Applications"}),n("div",{className:"space-y-3",children:t.webapps.map((ne,be)=>n("div",{className:"p-4 bg-white border border-gray-200 rounded",children:d("div",{className:"space-y-2 text-sm",children:[d("div",{children:[n("span",{className:"font-medium text-gray-700",children:"Path:"})," ",n("span",{className:"text-gray-900",children:ne.path==="."?"Root":ne.path})]}),ne.appDirectory&&d("div",{children:[n("span",{className:"font-medium text-gray-700",children:"App Directory:"})," ",n("span",{className:"text-gray-900",children:ne.appDirectory})]}),d("div",{children:[n("span",{className:"font-medium text-gray-700",children:"Framework:"})," ",n("span",{className:"text-gray-900",children:ne.framework})]}),ne.startCommand&&d("div",{children:[n("span",{className:"font-medium text-gray-700",children:"Start Command:"})," ",n("span",{className:"text-gray-900 font-mono text-xs",children:hl(ne.startCommand)})]})]})},be))})]})]}),s&&d("div",{className:"mt-6",children:[n("h3",{className:"text-base font-semibold text-gray-800 mb-3",children:"Version Information"}),n("div",{className:"p-4 bg-white border border-gray-200 rounded",children:d("div",{className:"space-y-2 text-sm",children:[s.webserverVersion&&d("div",{children:[n("span",{className:"font-medium text-gray-700",children:"Webserver:"})," ",n("span",{className:"text-gray-900 font-mono",children:s.webserverVersion.version||"unknown"})]}),s.templateVersion&&d("div",{children:[n("span",{className:"font-medium text-gray-700",children:"Analyzer Template:"})," ",n("span",{className:"font-mono text-gray-900",children:s.templateVersion.version||((Ne=s.templateVersion.gitCommit)==null?void 0:Ne.slice(0,7))||"unknown"}),s.templateVersion.buildTimestamp&&d("span",{className:"text-gray-500 ml-2",children:["(built"," ",bC(s.templateVersion.buildTimestamp),")"]})]}),s.cachedAnalyzerVersion&&d("div",{children:[n("span",{className:"font-medium text-gray-700",children:"Cached Analyzer:"})," ",n("span",{className:"font-mono text-gray-900",children:s.cachedAnalyzerVersion.version||((de=s.cachedAnalyzerVersion.gitCommit)==null?void 0:de.slice(0,7))||"unknown"}),s.isCacheStale?n("span",{className:"ml-2 px-2 py-0.5 bg-amber-100 text-amber-800 rounded text-xs",children:"Stale - will update on next analysis"}):n("span",{className:"ml-2 px-2 py-0.5 bg-green-100 text-green-800 rounded text-xs",children:"Up to date"})]}),!s.cachedAnalyzerVersion&&(t==null?void 0:t.projectSlug)&&d("div",{children:[n("span",{className:"font-medium text-gray-700",children:"Cached Analyzer:"})," ",n("span",{className:"text-gray-500 italic",children:"Not initialized - will be created on first analysis"})]})]})})]})]})]})})]}),z&&n("div",{className:"fixed inset-0 bg-black/50 flex items-center justify-center p-4 z-50",children:d("div",{className:"bg-white rounded-lg max-w-2xl w-full p-6",children:[n("h2",{className:"text-2xl font-bold mb-4 text-gray-900",children:"Add Universal Mock"}),n(ml,{mock:{entityName:"",filePath:"",content:""},onSave:le,onCancel:()=>A(!1)})]})})]})})}),vC=Object.freeze(Object.defineProperty({__proto__:null,action:xC,default:wC,loader:gC,meta:fC},Symbol.toStringTag,{value:"Module"}));async function NC({params:e}){const t=e["*"];if(!t)return new Response("Static path is required",{status:400});const r=we();if(!r)return new Response("Project root not found",{status:500});const a=ee.extname(t)!==""?t:`${t}.html`,o=ee.join(r,".codeyam","captures","static",a);try{await Ee.access(o);let i=await Ee.readFile(o);const l=ee.extname(o).toLowerCase();let c="application/octet-stream";if(l===".html"){c="text/html";let p=i.toString("utf-8");const u=p.match(/<script>(window\.__remixContext\s*=\s*\{[\s\S]*?\});?<\/script>/i);if(u)try{const m=u[1].match(/=\s*(\{[\s\S]*\})/);if(m){const f=JSON.parse(m[1]);f.isSpaMode=!0,f.future&&(f.future.v3_lazyRouteDiscovery=!1);const g=`<script>window.__remixContext = ${JSON.stringify(f)};<\/script>`;p=p.replace(u[0],g)}}catch(h){console.error("[Static] Failed to parse Remix context:",h)}i=Buffer.from(p,"utf-8")}else l===".js"||l===".mjs"?c="application/javascript":l===".css"?c="text/css":l===".json"?c="application/json":l===".png"?c="image/png":l===".jpg"||l===".jpeg"?c="image/jpeg":l===".svg"?c="image/svg+xml":l===".woff"?c="font/woff":l===".woff2"?c="font/woff2":l===".ttf"&&(c="font/ttf");return new Response(i,{status:200,headers:{"Content-Type":c,"Cache-Control":"public, max-age=3600","X-Frame-Options":"SAMEORIGIN"}})}catch{return new Response("Static file not found",{status:404})}}const CC=Object.freeze(Object.defineProperty({__proto__:null,loader:NC},Symbol.toStringTag,{value:"Module"}));function SC(e,t,r=10){var c;const s=new Map,a=p=>p.entityType==="visual"||p.entityType==="library";for(const p of e)a(p)&&s.set(p.sha,{entity:p,depth:0});const o=new Map;for(const p of t){const u=(c=p.metadata)==null?void 0:c.importedBy;if(u)for(const h of Object.keys(u))for(const m of Object.keys(u[h])){const{shas:f}=u[h][m];for(const g of f)o.has(p.sha)||o.set(p.sha,new Set),o.get(p.sha).add(g)}}const i=[],l=new Set;for(const p of e)i.push({sha:p.sha,depth:0}),l.add(p.sha);for(;i.length>0;){const{sha:p,depth:u}=i.shift();if(u>=r)continue;const h=o.get(p);if(h)for(const m of h){if(l.has(m))continue;l.add(m);const f=t.find(g=>g.sha===m);if(f){if(a(f)){const g=u+1,y=s.get(m);(!y||g<y.depth)&&s.set(m,{entity:f,depth:g})}i.push({sha:m,depth:u+1})}}}return Array.from(s.values()).sort((p,u)=>p.depth!==u.depth?p.depth-u.depth:p.entity.name.localeCompare(u.entity.name))}function Ns(e){const t=new Map;for(const s of e)t.has(s.name)||t.set(s.name,[]),t.get(s.name).push(s);const r=[];for(const s of t.values())if(s.length===1)r.push(s[0]);else{const a=s.sort((o,i)=>{var p,u;const l=((p=o.metadata)==null?void 0:p.editedAt)||o.createdAt||"";return(((u=i.metadata)==null?void 0:u.editedAt)||i.createdAt||"").localeCompare(l)});r.push(a[0])}return r}function Ld(e,t){const r=new Map,s=new Set(e.map(a=>a.path));for(const a of e)a.status==="renamed"&&a.oldPath&&s.add(a.oldPath);for(const a of e){const o=t.filter(c=>c.filePath===a.path||a.status==="renamed"&&a.oldPath&&c.filePath===a.oldPath),i=o.filter(c=>{var p,u;return s.has(c.filePath)&&((p=c.metadata)==null?void 0:p.isUncommitted)&&!((u=c.metadata)!=null&&u.isSuperseded)}),l=Ns(i);r.set(a.path,{status:a,entities:o,editedEntities:l})}return r}function _C(e,t,r){const s=new Map;if(!r){for(const o of e)if(o.status==="deleted")s.set(o.path,{status:o,entities:[]});else{const i=t.filter(c=>c.filePath===o.path||o.status==="renamed"&&o.oldPath&&c.filePath===o.oldPath),l=Ns(i);s.set(o.path,{status:o,entities:l})}return s}const a=new Map;for(const o of r.fileComparisons){const i=new Set;for(const l of o.newEntities)i.add(l.name);for(const l of o.modifiedEntities)i.add(l.name);for(const l of o.deletedEntities)i.add(l.name);i.size>0&&a.set(o.filePath,i)}for(const o of e){const i=a.get(o.path);if(o.status==="deleted")s.set(o.path,{status:o,entities:[]});else{const l=i?t.filter(p=>(p.filePath===o.path||o.status==="renamed"&&o.oldPath&&p.filePath===o.oldPath)&&i.has(p.name)):[],c=Ns(l);s.set(o.path,{status:o,entities:c})}}return s}function kC(e,t){const r=new Map,s=zd(e,t);for(const a of s){const i=SC([a],t).filter(({depth:l})=>l>0);r.set(a.sha,i)}return r}function zd(e,t){const r=new Set(e.map(a=>a.path));for(const a of e)a.status==="renamed"&&a.oldPath&&r.add(a.oldPath);const s=t.filter(a=>{var o,i;return r.has(a.filePath)&&((o=a.metadata)==null?void 0:o.isUncommitted)&&!((i=a.metadata)!=null&&i.isSuperseded)});return Ns(s)}function EC({recentSimulations:e}){const t=ae(()=>{const r=new Map;return e.forEach(s=>{const a=s.entitySha,o=r.get(a);o?o.push(s):r.set(a,[s])}),Array.from(r.entries()).map(([s,a])=>({entitySha:s,entityName:a[0].entityName,scenarios:a}))},[e]);return d("section",{className:"bg-white border border-gray-200 rounded-xl p-6",children:[n("div",{className:"flex justify-between items-start mb-5",children:d("div",{children:[n("h2",{className:"text-[22px] font-semibold text-gray-900 m-0 mb-1",children:"Recent Simulations"}),n("p",{className:"text-sm text-gray-500 m-0",children:e.length>0?`Latest ${e.length} captured screenshot${e.length!==1?"s":""}`:"No simulations captured yet"})]})}),e.length>0?d(ye,{children:[n("div",{className:"space-y-6 mb-5",children:t.map(r=>d("div",{children:[d("div",{className:"mb-3 flex items-center gap-2",children:[n("div",{className:"shrink-0 rounded-lg p-1.5 flex items-center justify-center bg-purple-100",children:n(yr,{size:16,style:{color:"#8B5CF6"}})}),n(ve,{to:`/entity/${r.entitySha}`,className:"text-sm font-semibold text-gray-900 no-underline hover:text-gray-700 transition-colors",children:r.entityName})]}),n("div",{className:"grid grid-cols-4 gap-3",children:r.scenarios.map((s,a)=>n(ve,{to:s.scenarioId?`/entity/${s.entitySha}/scenarios/${s.scenarioId}`:`/entity/${s.entitySha}`,className:"aspect-4/3 border border-gray-200 rounded-lg overflow-hidden bg-gray-50 transition-all flex items-center justify-center hover:scale-105",onMouseEnter:o=>{o.currentTarget.style.borderColor="#005C75",o.currentTarget.style.boxShadow="0 4px 12px rgba(0, 92, 117, 0.2)"},onMouseLeave:o=>{o.currentTarget.style.borderColor="#E5E7EB",o.currentTarget.style.boxShadow="none"},title:s.scenarioName,children:n(rt,{screenshotPath:s.screenshotPath,alt:s.scenarioName,className:"max-w-full max-h-full object-contain object-center"})},s.scenarioId||`${s.entitySha}-${a}`))})]},r.entitySha))}),n(ve,{to:"/simulations",className:"block text-center p-3 rounded-lg no-underline font-semibold text-sm transition-all",style:{color:"#005C75",backgroundColor:"#F6F9FC"},onMouseEnter:r=>r.currentTarget.style.backgroundColor="#EEF4F8",onMouseLeave:r=>r.currentTarget.style.backgroundColor="#F6F9FC",children:"View All Recent Simulations →"})]}):d("div",{className:"py-12 px-6 text-center rounded-lg w-full flex flex-col items-center justify-center min-h-50 border border-dashed",style:{backgroundColor:"#F2F7F8",borderColor:"#BBCCD3"},children:[n("div",{className:"mb-4 rounded-full flex items-center justify-center",style:{width:"48px",height:"48px",backgroundColor:"#E5EFF1"},children:n(yr,{size:24,style:{color:"#7A9BA5"},strokeWidth:1.5})}),n("p",{className:"text-sm font-medium m-0",style:{color:"#5A7380"},children:"No simulations captured yet."}),d("p",{className:"text-xs m-0 mt-2",style:{color:"#7A9BA5"},children:["Trigger an analysis from the"," ",n(ve,{to:"/git",className:"underline hover:no-underline",style:{color:"#7A9BA5"},children:"Git"})," ","or"," ",n(ve,{to:"/files",className:"underline hover:no-underline",style:{color:"#7A9BA5"},children:"Files"})," ","page."]})]})]})}const AC="/assets/codeyam-name-logo-CvKwUgHo.svg",PC=()=>[{title:"Dashboard - CodeYam"},{name:"description",content:"CodeYam project dashboard"}];async function jC({request:e,context:t}){var r,s,a,o,i;try{const l=await ze();if(l){const{project:I}=await Oe(l);if(((r=I.metadata)==null?void 0:r.editorMode)??!1)return mi("/editor");if(!(((a=(s=I.metadata)==null?void 0:s.labs)==null?void 0:a.simulations)??!1))return mi("/memory")}const c=t.analysisQueue,p=c?c.getState():{paused:!1,jobs:[]},[u,h]=await Promise.all([wn(),Hn()]),m=Kn(),f=u?Ld(m,u):new Map,g=Array.from(f.entries()).sort((I,R)=>I[0].localeCompare(R[0])),y=(u==null?void 0:u.length)||0,x=(u==null?void 0:u.filter(I=>I.entityType==="visual").length)||0,w=(u==null?void 0:u.filter(I=>I.entityType==="library").length)||0,b=u?zd(m,u):[],v=b.length,N=(u==null?void 0:u.filter(I=>(I.analyses??[]).filter(R=>R.scenarios&&R.scenarios.length>0).length>0).length)||0,k=(u==null?void 0:u.reduce((I,R)=>{var G,J,F;const T=((F=(J=(G=R.analyses)==null?void 0:G[0])==null?void 0:J.scenarios)==null?void 0:F.length)||0;return I+T},0))||0,E=(u==null?void 0:u.reduce((I,R)=>{var J,F;const G=(((F=(J=R.analyses)==null?void 0:J[0])==null?void 0:F.scenarios)||[]).filter(H=>{var U,z;return(z=(U=H.metadata)==null?void 0:U.screenshotPaths)==null?void 0:z[0]}).length;return I+G},0))||0,C=[];u==null||u.forEach(I=>{var T;const R=(T=I.analyses)==null?void 0:T[0];R!=null&&R.scenarios&&R.scenarios.filter(J=>{var F;return!((F=J.metadata)!=null&&F.sameAsDefault)}).forEach(J=>{var H,U;const F=(U=(H=J.metadata)==null?void 0:H.screenshotPaths)==null?void 0:U[0];F&&C.push({entitySha:I.sha,entityName:I.name,scenarioId:J.id,scenarioName:J.name,screenshotPath:F,createdAt:R.createdAt||""})})}),C.sort((I,R)=>new Date(R.createdAt).getTime()-new Date(I.createdAt).getTime());const S=C.slice(0,16),_=(u==null?void 0:u.filter(I=>I.entityType==="visual").filter(I=>{var G,J;const R=(G=I.analyses)==null?void 0:G[0];return!((J=R==null?void 0:R.scenarios)==null?void 0:J.some(F=>{var H,U;return(U=(H=F.metadata)==null?void 0:H.screenshotPaths)==null?void 0:U[0]}))}).slice(0,8))||[],j=(o=h==null?void 0:h.metadata)==null?void 0:o.currentRun,$=((i=j==null?void 0:j.currentEntityShas)==null?void 0:i.length)||0,P=p.jobs.length||0;return X({stats:{totalEntities:y,visualEntities:x,libraryEntities:w,uncommittedEntities:v,entitiesWithAnalyses:N,totalScenarios:k,capturedScreenshots:E,currentlyAnalyzing:$,filesOnQueue:P},uncommittedFiles:g,uncommittedEntitiesList:b,recentSimulations:S,visualEntitiesForSimulation:_,projectSlug:l,queueState:p,currentCommit:h})}catch(l){return console.error("Failed to load dashboard data:",l),X({stats:{totalEntities:0,visualEntities:0,libraryEntities:0,uncommittedEntities:0,entitiesWithAnalyses:0,totalScenarios:0,capturedScreenshots:0,currentlyAnalyzing:0,filesOnQueue:0},uncommittedFiles:[],uncommittedEntitiesList:[],recentSimulations:[],visualEntitiesForSimulation:[],projectSlug:null,queueState:{paused:!1,jobs:[]},currentCommit:null,error:"Failed to load dashboard data"})}}const TC=Qe(function(){var H,U;const{stats:t,uncommittedFiles:r,uncommittedEntitiesList:s,recentSimulations:a,visualEntitiesForSimulation:o,projectSlug:i,queueState:l,currentCommit:c}=tt(),p=Je(),u=Yt(),{showToast:h}=xo();$t({source:"dashboard"});const[m,f]=M(new Set),[g,y]=M(null),[x,w]=M(!1),[b,v]=M(!1),{lastLine:N,isCompleted:k}=Ut(i,!!g),{simulatingEntity:E,scenarios:C,scenarioStatuses:S,allScenariosCaptured:_}=ae(()=>{var D,O;const z={simulatingEntity:null,scenarios:[],scenarioStatuses:[],allScenariosCaptured:!1};if(!g)return z;const A=o==null?void 0:o.find(q=>q.sha===g);if(!A)return z;const Y=(D=A.analyses)==null?void 0:D[0],V=(Y==null?void 0:Y.scenarios)||[],W=((O=Y==null?void 0:Y.status)==null?void 0:O.scenarios)||[],Q=W.filter(q=>q.screenshotFinishedAt).length,B=V.length>0&&Q===V.length;return{simulatingEntity:A,scenarios:V,scenarioStatuses:W,allScenariosCaptured:B}},[g,o]);se(()=>{(k||_)&&y(null)},[k,_]);const j=(H=c==null?void 0:c.metadata)==null?void 0:H.currentRun,$=new Set((j==null?void 0:j.currentEntityShas)||[]),P=new Set(l.jobs.flatMap(z=>z.entityShas||[])),I=new Set(((U=l.currentlyExecuting)==null?void 0:U.entityShas)||[]),R=s.filter(z=>z.entityType==="visual"||z.entityType==="library"),T=R.filter(z=>!$.has(z.sha)&&!P.has(z.sha)&&!I.has(z.sha)),G=()=>{if(T.length===0){h("All entities are already queued or analyzing","info",3e3);return}const z=T.map(A=>A.sha);v(!0),h(`Starting analysis for ${T.length} entities...`,"info",3e3),p.submit({entityShas:z.join(",")},{method:"post",action:"/api/analyze"})};se(()=>{if(p.state==="idle"&&p.data){const z=p.data;z.success?(console.log("[Analyze All] Success:",z.message),h(`Analysis started for ${z.entityCount} entities in ${z.fileCount} files. Watch the logs for progress.`,"success",6e3),v(!1)):z.error&&(console.error("[Analyze All] Error:",z.error),h(`Error: ${z.error}`,"error",8e3),v(!1))}},[p.state,p.data,h]);const J=z=>{f(A=>{const Y=new Set(A);return Y.has(z)?Y.delete(z):Y.add(z),Y})},F=[{label:"Total Entities",value:t.totalEntities,iconType:"folder",link:"/files",color:"#005C75",tooltip:"In CodeYam, an entity is a discrete, analyzable unit of code that can be independently simulated and tested."},{label:"Analyzed Entities",value:t.entitiesWithAnalyses,iconType:"check",link:"/simulations",color:"#10B981",tooltip:"Entities that have been analyzed by CodeYam and have generated scenarios."},{label:"Visual Components",value:t.visualEntities,iconType:"image",link:"/files?entityType=visual",color:"#8B5CF6",tooltip:"React components and visual elements that can be rendered and captured as screenshots."},{label:"Library Functions",value:t.libraryEntities,iconType:"code-xml",link:"/files?entityType=library",color:"#0DBFE9",tooltip:"Reusable functions and utilities that can be independently tested."}];return n("div",{className:"bg-cygray-10 min-h-screen",children:d("div",{className:"px-20 pt-8 pb-12",children:[d("header",{className:"mb-8 flex justify-between items-center",children:[d("div",{className:"flex items-center gap-4",children:[n("img",{src:AC,alt:"CodeYam",className:"h-3.5"}),n("span",{className:"text-gray-400 text-sm",children:"|"}),n("h1",{className:"text-sm font-mono font-normal text-gray-400 m-0",children:i?i.replace(/-/g," ").replace(/\b\w/g,z=>z.toUpperCase()):"Project"})]}),u.state==="loading"&&n("div",{className:"text-blue-600 text-sm font-medium animate-pulse",children:"🔄 Updating..."})]}),n("div",{className:"flex items-center justify-between gap-3",children:F.map((z,A)=>n(ve,{to:z.link,className:"flex-1 bg-white rounded-xl border border-gray-200 overflow-hidden flex transition-all hover:shadow-lg no-underline cursor-pointer",style:{borderLeft:`4px solid ${z.color}`},children:d("div",{className:"px-6 py-6 flex flex-col gap-3 flex-1",children:[d("div",{className:"flex md:justify-between md:items-start md:flex-row flex-col",children:[d("div",{className:"flex items-center gap-1.5 group relative",children:[n("span",{className:"text-xs text-gray-700 font-medium font-mono uppercase",children:z.label}),d("svg",{className:"w-3 h-3 text-gray-400",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",children:[n("circle",{cx:"12",cy:"12",r:"10",strokeWidth:"2"}),n("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"2",d:"M12 16v-4m0-4h.01"})]}),n("div",{className:"absolute left-0 top-full mt-2 hidden group-hover:block z-50 w-80",children:d("div",{className:"bg-gray-900 text-white text-xs rounded-lg px-3 py-2 shadow-lg",children:[z.tooltip,n("div",{className:"absolute -top-1 left-4 w-2 h-2 bg-gray-900 transform rotate-45"})]})})]}),n("div",{className:"text-xs font-medium transition-colors flex items-center gap-1 sm:hidden md:flex",style:{color:z.color},children:"View All →"})]}),d("div",{className:"flex flex-col gap-2",children:[d("div",{className:"flex items-center gap-3",children:[d("div",{className:"rounded-lg p-2 leading-none shrink-0",style:{backgroundColor:`${z.color}15`},children:[z.iconType==="folder"&&n(Hu,{size:20,style:{color:z.color}}),z.iconType==="check"&&n(io,{size:20,style:{color:z.color}}),z.iconType==="image"&&n(yr,{size:20,style:{color:z.color}}),z.iconType==="code-xml"&&n(Vu,{size:20,style:{color:z.color}})]}),n("div",{className:"text-3xl font-semibold font-mono text-gray-900 leading-none",children:z.value.toLocaleString("en-US")})]}),n("div",{className:"text-xs font-medium transition-colors flex items-center gap-1 md:hidden",style:{color:z.color},children:"View All →"})]})]})},A))}),d("div",{className:"mt-12 grid gap-8 items-start",style:{gridTemplateColumns:"repeat(auto-fit, minmax(500px, 1fr))"},children:[d("section",{id:"uncommitted",className:"bg-white border border-gray-200 rounded-xl p-6",children:[d("div",{className:"flex justify-between items-start mb-5",children:[d("div",{children:[n("h2",{className:"text-[22px] font-semibold text-gray-900 m-0 mb-1",children:"Uncommitted Changes"}),n("p",{className:"text-sm text-gray-500 m-0",children:r.length>0?`${r.length} file${r.length!==1?"s":""} with ${s.length} uncommitted entit${s.length!==1?"ies":"y"}`:"No uncommitted changes detected"})]}),R.length>0&&n("button",{onClick:G,disabled:p.state!=="idle"||b||T.length===0,className:"px-5 py-2.5 text-white border-none rounded-lg text-sm font-semibold cursor-pointer transition-all hover:-translate-y-px disabled:bg-gray-400 disabled:cursor-not-allowed disabled:translate-y-0",style:{backgroundColor:"#005C75"},onMouseEnter:z=>z.currentTarget.style.backgroundColor="#004560",onMouseLeave:z=>z.currentTarget.style.backgroundColor="#005C75",children:p.state!=="idle"||b?"Starting analysis...":T.length===0?"All Queued":"Analyze All"})]}),r.length>0?n("div",{className:"flex flex-col gap-3",children:r.map(([z,A])=>{const Y=m.has(z),V=A.editedEntities||[];return d("div",{className:"bg-white border border-gray-200 border-l-4 rounded-lg overflow-hidden",style:{borderLeftColor:"#005C75"},children:[n("div",{className:"p-4 cursor-pointer select-none transition-colors hover:bg-gray-50",onClick:()=>J(z),role:"button",tabIndex:0,children:d("div",{className:"flex items-center gap-3",children:[n("span",{className:"text-gray-500 text-xs w-4 shrink-0",children:Y?"▼":"▶"}),d("svg",{width:"16",height:"20",viewBox:"0 0 12 16",fill:"none",xmlns:"http://www.w3.org/2000/svg",className:"shrink-0",children:[d("g",{clipPath:"url(#clip0_784_10666)",children:[n("path",{d:"M0 2.55857C0 1.14551 1.14551 0 2.55857 0H8.73194L12 3.3616V13.4414C12 14.8545 10.8545 16 9.44143 16H2.55857C1.14551 16 0 14.8545 0 13.4414V2.55857Z",fill:"#DDDDFE"}),n("path",{d:"M8.72656 3.3307H11.9906L8.72656 0V3.3307Z",fill:"#306AFF"}),n("line",{x1:"1.8125",y1:"5.94825",x2:"10.0235",y2:"5.94825",stroke:"#306AFF",strokeWidth:"1.27929"}),n("line",{x1:"1.8125",y1:"8.82715",x2:"6.01207",y2:"8.82715",stroke:"#306AFF",strokeWidth:"1.27929"}),n("line",{x1:"1.8125",y1:"11.7061",x2:"10.0235",y2:"11.7061",stroke:"#306AFF",strokeWidth:"1.27929"})]}),n("defs",{children:n("clipPath",{id:"clip0_784_10666",children:n("rect",{width:"12",height:"16",fill:"white"})})})]}),d("div",{className:"flex-1 min-w-0",children:[n("span",{className:"font-normal text-gray-900 text-sm block truncate",children:z}),d("span",{className:"text-xs text-gray-500",children:[V.length," entit",V.length!==1?"ies":"y"]})]})]})}),Y&&n("div",{className:"border-t border-gray-200 bg-gray-50 p-3 flex flex-col gap-2",children:V.length>0?V.map(W=>{const Q=$.has(W.sha),B=P.has(W.sha)||I.has(W.sha);return d(ve,{to:`/entity/${W.sha}`,className:"flex items-center gap-4 p-4 bg-white border border-gray-200 rounded-lg no-underline transition-all hover:shadow-md hover:-translate-y-0.5",style:{borderColor:"inherit"},onMouseEnter:D=>D.currentTarget.style.borderColor="#005C75",onMouseLeave:D=>D.currentTarget.style.borderColor="inherit",children:[d("div",{className:"shrink-0 rounded-lg p-1.5 flex items-center justify-center",style:{backgroundColor:W.entityType==="visual"?"#8B5CF615":W.entityType==="library"?"#6366F1":"#EC4899"},children:[W.entityType==="visual"&&n(yr,{size:16,style:{color:"#8B5CF6"}}),W.entityType==="library"&&n(Ll,{size:16,className:"text-white"}),W.entityType==="other"&&n(Gu,{size:16,className:"text-white"})]}),d("div",{className:"flex-1 min-w-0",children:[d("div",{className:"flex items-center gap-2 mb-0.5",children:[n("div",{className:"font-semibold text-gray-900 text-sm",children:W.name}),W.entityType==="visual"&&n("div",{className:"px-2 py-0.5 rounded-sm text-[10px] uppercase font-bold",style:{backgroundColor:"#8B5CF60D",color:"#8B5CF6"},children:"Visual"}),W.entityType==="library"&&n("div",{className:"px-2 py-0.5 rounded-sm text-[10px] uppercase font-bold",style:{backgroundColor:"#0DBFE90D",color:"#0DBFE9"},children:"Library"}),W.entityType==="other"&&n("div",{className:"px-2 py-0.5 rounded-sm text-[10px] uppercase font-bold",style:{backgroundColor:"#EC48990D",color:"#EC4899"},children:"Other"})]}),W.description&&n("div",{className:"text-sm text-gray-500 mt-1 overflow-hidden text-ellipsis whitespace-nowrap",children:W.description})]}),d("div",{className:"flex items-center gap-2 shrink-0",children:[Q&&d("div",{className:"px-2 py-1 bg-pink-100 rounded text-xs text-pink-700 font-semibold flex items-center gap-1.5",children:[n(At,{size:14,className:"animate-spin"}),"Analyzing..."]}),!Q&&B&&n("div",{className:"px-2 py-1 bg-purple-50 border border-purple-300 rounded text-xs text-purple-700 font-semibold",children:"⏳ Queued"}),!Q&&!B&&n("button",{onClick:D=>{D.preventDefault(),D.stopPropagation(),h(`Starting analysis for ${W.name}...`,"info",3e3),p.submit({entityShas:W.sha},{method:"post",action:"/api/analyze"})},disabled:p.state!=="idle",className:"px-3 py-1.5 text-white border-none rounded text-xs font-medium cursor-pointer transition-all disabled:bg-gray-400 disabled:cursor-not-allowed",style:{backgroundColor:"#005C75"},onMouseEnter:D=>D.currentTarget.style.backgroundColor="#004560",onMouseLeave:D=>D.currentTarget.style.backgroundColor="#005C75",children:"Analyze"})]})]},W.sha)}):n("div",{className:"text-sm text-gray-500 italic p-2",children:"No entity changes detected in this file"})})]},z)})}):d("div",{className:"py-12 px-6 text-center flex flex-col items-center rounded-lg min-h-50 justify-center border border-dashed",style:{backgroundColor:"#F2F7F8",borderColor:"#BBCCD3"},children:[n("div",{className:"mb-4 rounded-full flex items-center justify-center",style:{width:"48px",height:"48px",backgroundColor:"#E5EFF1"},children:d("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"#7A9BA5",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round",children:[n("path",{d:"M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"}),n("polyline",{points:"14 2 14 8 20 8"}),n("line",{x1:"12",y1:"18",x2:"12",y2:"12"}),n("line",{x1:"9",y1:"15",x2:"15",y2:"15"})]})}),n("p",{className:"text-sm font-medium m-0",style:{color:"#5A7380"},children:"No Uncommitted Changes."})]})]}),!g&&n(EC,{recentSimulations:a}),g&&d("section",{className:"bg-white border border-gray-200 rounded-xl p-6",children:[n("div",{className:"flex justify-between items-start mb-5",children:d("div",{children:[n("h2",{className:"text-[22px] font-semibold text-gray-900 m-0 mb-1",children:"Recent Simulations"}),n("p",{className:"text-sm text-gray-500 m-0",children:a.length>0?`Latest ${a.length} captured screenshot${a.length!==1?"s":""}`:"No simulations captured yet"})]})}),g&&d("div",{className:"p-0 bg-white rounded-lg flex flex-col gap-0",children:[E&&n("div",{className:"p-4 rounded-t-lg",style:{backgroundColor:"#F0F5F8",borderBottom:"2px solid #005C75"},children:d("div",{className:"flex items-center gap-3",children:[n("span",{className:"text-[32px] leading-none",children:n(ut,{type:"visual"})}),d("div",{className:"flex-1 min-w-0",children:[d("div",{className:"text-base font-bold mb-1",style:{color:"#005C75"},children:["Generating Simulations for ",E.name]}),n("div",{className:"text-[13px] text-gray-500 font-mono overflow-hidden text-ellipsis whitespace-nowrap",children:E.filePath})]})]})}),_?d("div",{className:"flex items-center gap-2 text-sm text-emerald-600 font-medium p-4 bg-emerald-50",children:[n("span",{className:"text-lg",children:"✅"}),d("span",{children:["Complete (",C.length," scenario",C.length!==1?"s":"",")"]})]}):N?d("div",{className:"flex items-center justify-between gap-1.5 text-sm font-medium p-4 bg-gray-50",style:{color:"#005C75"},children:[n(At,{size:18,className:"animate-spin shrink-0"}),n("span",{className:"flex-1 overflow-hidden text-ellipsis whitespace-nowrap font-mono text-xs",title:N,children:N}),i&&n("button",{onClick:()=>w(!0),className:"px-2 py-1.5 bg-gray-500 text-white border-none rounded-md text-[13px] font-medium cursor-pointer transition-all whitespace-nowrap self-start hover:bg-gray-600 hover:-translate-y-px",title:"View analysis logs",children:"📋 Logs"})]}):p.state!=="idle"?d("div",{className:"flex items-center justify-between gap-1.5 text-sm font-medium p-4 bg-gray-50",style:{color:"#005C75"},children:[n(At,{size:18,className:"animate-spin shrink-0"}),n("span",{className:"flex-1 overflow-hidden text-ellipsis whitespace-nowrap",children:"Initializing analysis..."})]}):d("div",{className:"flex items-center justify-between gap-1.5 text-sm font-medium p-4 bg-gray-50",style:{color:"#005C75"},children:[n(At,{size:18,className:"animate-spin shrink-0"}),n("span",{className:"flex-1 overflow-hidden text-ellipsis whitespace-nowrap",children:"Starting analysis..."})]}),C.length>0&&n("div",{className:"flex gap-2 flex-wrap p-4 bg-white border-t border-gray-200",children:C.slice(0,8).map((z,A)=>{var O,q,re;const Y=(O=E==null?void 0:E.analyses)==null?void 0:O[0],V=Qs(z,Y==null?void 0:Y.status,void 0,g||void 0,void 0),W=(re=(q=z.metadata)==null?void 0:q.screenshotPaths)==null?void 0:re[0],Q=V.isCaptured,B=V.status==="capturing"||V.status==="starting",D=V.hasError;return Q?n(ve,{to:`/entity/${g}`,className:"w-20 h-15 border-2 border-gray-200 rounded overflow-hidden bg-gray-50 cursor-pointer transition-all flex items-center justify-center no-underline hover:border-blue-600 hover:scale-105 hover:shadow-md",children:n(rt,{screenshotPath:W,alt:z.name,title:z.name,className:"max-w-full max-h-full object-contain object-center"})},A):D?n("div",{className:"w-20 h-15 border-2 border-solid border-red-300 rounded bg-red-50 flex flex-col items-center justify-center text-lg",title:V.errorMessage||"Capture error",children:n("span",{className:"text-red-500",children:"⚠️"})},A):n("div",{className:"w-20 h-15 border-2 border-dashed border-gray-300 rounded bg-gray-50 flex items-center justify-center text-2xl",title:`${B?"Capturing":"Pending"} ${z.name}...`,children:n("span",{className:B?"animate-pulse":"text-gray-400",children:B?"⋯":"⏹️"})},A)})})]})]})]}),x&&i&&n(Qt,{projectSlug:i,onClose:()=>w(!1)})]})})}),MC=Object.freeze(Object.defineProperty({__proto__:null,default:TC,loader:jC,meta:PC},Symbol.toStringTag,{value:"Module"}));function Bd({content:e,className:t}){const r=e.trim().replace(/^#+ .+$/m,"").trim();return n(Sp,{remarkPlugins:[_p],components:{h1:({children:s})=>n("h1",{className:"text-lg font-bold text-gray-900 mb-3 mt-6 first:mt-0 pb-1 border-b border-gray-200",children:s}),h2:({children:s})=>n("h2",{className:"text-base font-semibold text-gray-900 mb-2 mt-5 first:mt-0",children:s}),h3:({children:s})=>n("h3",{className:"text-sm font-semibold text-gray-800 mb-2 mt-4 first:mt-0",children:s}),p:({children:s})=>n("p",{className:"text-sm text-gray-700 mb-3 leading-relaxed",children:s}),ul:({children:s})=>n("ul",{className:"list-disc ml-5 text-sm text-gray-700 mb-3 space-y-1.5",children:s}),ol:({children:s})=>n("ol",{className:"list-decimal ml-5 text-sm text-gray-700 mb-3 space-y-1.5",children:s}),li:({children:s})=>n("li",{className:"leading-relaxed",children:s}),code:({children:s,className:a})=>(a==null?void 0:a.includes("language-"))?n("pre",{className:"bg-gray-100 rounded p-3 text-xs font-mono overflow-x-auto mb-3",children:n("code",{children:s})}):n("code",{className:"bg-gray-100 px-1.5 py-0.5 rounded text-xs font-mono text-gray-800",children:s}),pre:({children:s})=>n(ye,{children:s}),strong:({children:s})=>n("strong",{className:"font-semibold text-gray-900",children:s}),blockquote:({children:s})=>n("blockquote",{className:"border-l-4 border-gray-300 pl-4 italic text-gray-600 mb-3",children:s}),table:({children:s})=>n("div",{className:"overflow-x-auto mb-3",children:n("table",{className:"min-w-full text-sm border-collapse border border-gray-200",children:s})}),thead:({children:s})=>n("thead",{className:"bg-gray-50",children:s}),th:({children:s})=>n("th",{className:"border border-gray-200 px-3 py-2 text-left font-semibold text-gray-900",children:s}),td:({children:s})=>n("td",{className:"border border-gray-200 px-3 py-2 text-gray-700",children:s}),a:({children:s,href:a})=>n("a",{href:a,className:"text-[#005C75] hover:underline",target:"_blank",rel:"noopener noreferrer",children:s})},children:r})}function Yd(e){const t={name:"root",path:"",memories:[],children:new Map};for(const r of e){const s=r.filePath.split("/");s.pop();let a=t,o="";for(const i of s)o=o?`${o}/${i}`:i,a.children.has(i)||a.children.set(i,{name:i,path:o,memories:[],children:new Map}),a=a.children.get(i);s.length===0?t.memories.push(r):a.memories.push(r)}return t}function Ud(e){let t=e.memories.length;for(const r of e.children.values())t+=Ud(r);return t}function Xs(e,t){var s;const r=e.match(/^#+ (.+)$/m);return r?r[1]:((s=t.split("/").pop())==null?void 0:s.replace(".md",""))||t}function gr(e){return Math.round(e/3.5)}function Dn(e){const t=new Date(e),r=new Date;if(t.toDateString()===r.toDateString()){const c=r.getTime()-t.getTime(),p=Math.floor(c/(1e3*60)),u=Math.floor(c/(1e3*60*60));return p<3?"Just now":p<60?`${p}min ago`:u===1?"1h ago":`${u}h ago`}const a=t.toLocaleDateString("en-US",{month:"short"}),o=t.getDate(),i=t.getFullYear(),l=r.getFullYear();return i===l?`${a} ${o}`:`${a} ${o}, ${i}`}function $C({rule:e,onEdit:t,onDelete:r,onView:s,isReviewed:a,onToggleReviewed:o,changeType:i,isUncommitted:l,changeDate:c,diff:p,isFadingOut:u,showLeftBorder:h}){const[m,f]=M(!1),[g,y]=M(!1),x=ae(()=>Xs(e.body,e.filePath),[e.body,e.filePath]),w=gr(e.body.length),b=m?"#3e3e3e":l?"#d97706":"#c7c7c7",v=`rounded-lg border overflow-hidden transition-all ease-in-out ${l?"bg-amber-50 border-amber-300":"bg-white border-gray-200"}`,N={...u&&{opacity:0,maxHeight:0,paddingTop:0,paddingBottom:0,marginBottom:0,borderWidth:0,transitionDuration:"600ms"}};return d("div",{className:v,style:N,children:[n("div",{className:`p-4 cursor-pointer ${l?"hover:bg-amber-100":"hover:bg-gray-50"}`,onClick:()=>s?s(e):f(!m),children:d("div",{className:"flex items-start justify-between",children:[d("div",{className:"flex items-center gap-3",children:[n("span",{className:"w-4 inline-flex items-center justify-center shrink-0",style:{transform:m?"rotate(90deg)":"none",transition:"transform 0.2s"},children:n("svg",{width:"10",height:"12",viewBox:"0 0 10 12",fill:"none",xmlns:"http://www.w3.org/2000/svg",children:n("path",{d:"M1.5 1.268L8.5 6L1.5 10.732V1.268Z",fill:b})})}),d("div",{className:"flex-1",children:[d("div",{className:"flex items-center gap-2 mb-1",children:[n("h3",{style:{fontSize:"14px",lineHeight:"18px",fontWeight:500,color:l?"#78350f":"#000"},children:x}),i&&n("span",{className:`px-2 py-0.5 rounded uppercase font-medium tracking-wider ${i==="deleted"?"bg-red-100 text-red-700":""}`,style:{fontSize:"10px",...i==="added"&&{backgroundColor:"#CBF3FA",color:"#005C75"},...i==="modified"&&{backgroundColor:"#FFE8C1",color:"#C67E06"}},children:i}),l&&n("span",{className:"px-2 py-0.5 bg-amber-200 text-amber-800 rounded font-medium uppercase tracking-wider",style:{fontSize:"10px"},children:"Uncommitted"}),d("span",{className:"text-xs text-gray-400",children:["~",w.toLocaleString()," tokens"]})]}),n("div",{className:"flex items-center gap-2 text-xs text-gray-500 flex-wrap",children:e.frontmatter.paths&&e.frontmatter.paths.length>0&&d(ye,{children:[e.frontmatter.paths.slice(0,2).map((k,E)=>n("span",{className:"px-2 py-0.5 bg-gray-100 text-gray-500 rounded font-mono",children:k},E)),e.frontmatter.paths.length>2&&d("span",{className:"text-gray-400 whitespace-nowrap",children:["+",e.frontmatter.paths.length-2," more"]})]})})]})]}),d("div",{className:"flex items-center gap-3 flex-shrink-0",children:[c&&n("span",{className:"text-xs text-gray-400",children:Dn(c)}),o&&n("button",{onClick:k=>{k.stopPropagation(),o(e.filePath,e.lastModified,a??!1)},className:`w-5 h-5 rounded-full border-2 flex items-center justify-center cursor-pointer transition-colors ${a?"bg-[#005C75] border-[#005C75]":"bg-white border-gray-300"}`,title:a?"Mark as unreviewed":"Mark as reviewed",children:a&&n("svg",{width:"10",height:"8",viewBox:"0 0 10 8",fill:"none",children:n("path",{d:"M1 4L3.5 6.5L9 1",stroke:"white",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})})})]})]})}),m&&d("div",{className:`border-t ${l?"border-amber-200":"border-gray-100"}`,children:[d("div",{className:`px-4 py-3 flex items-center justify-between ${l?"bg-amber-50":"bg-white"}`,children:[n("div",{className:"flex items-center gap-2",children:i==="modified"&&p&&d("button",{onClick:k=>{k.stopPropagation(),y(!g)},className:`flex items-center gap-1 px-2 py-1 text-sm rounded cursor-pointer ${g?l?"bg-amber-200 text-amber-900":"bg-gray-200 text-gray-900":l?"text-amber-700 hover:text-amber-900 hover:bg-amber-100":"text-gray-600 hover:text-gray-900 hover:bg-gray-100"}`,children:[n(ds,{className:"w-3 h-3"}),g?"Hide Diff":"Show Diff"]})}),i!=="deleted"&&d("div",{className:"flex items-center gap-2",children:[d("button",{onClick:k=>{k.stopPropagation(),t(e)},className:`flex items-center gap-1 px-2 py-1 text-sm rounded cursor-pointer ${l?"text-amber-700 hover:text-amber-900 hover:bg-amber-100":"text-gray-600 hover:text-gray-900 hover:bg-gray-100"}`,children:[n(Ku,{className:"w-3 h-3"}),"Edit"]}),d("button",{onClick:k=>{k.stopPropagation(),r(e)},className:"flex items-center gap-1 px-2 py-1 text-sm rounded cursor-pointer text-red-600 hover:text-red-800 hover:bg-red-100",children:[n(qu,{className:"w-3 h-3"}),"Delete"]})]})]}),g&&p&&n("pre",{className:"mx-4 mb-4 p-4 text-xs font-mono overflow-x-auto bg-gray-900 text-gray-100 max-h-64 overflow-y-auto rounded-md",children:p.split(`
|
|
464
|
+
`).map((k,E)=>{let C="";return k.startsWith("+")&&!k.startsWith("+++")?C="text-green-400":k.startsWith("-")&&!k.startsWith("---")?C="text-red-400":k.startsWith("@@")&&(C="text-cyan-400"),n("div",{className:C,children:k},E)})}),d("div",{className:"mx-4 mb-3",children:[n("div",{className:"text-xs text-gray-500 mb-1.5 font-medium",children:"Edit with Claude:"}),d("div",{className:"flex items-center gap-2",children:[d("span",{className:"px-2 py-1 bg-gray-100 text-gray-600 rounded font-mono text-xs",children:["Claude, can you help me edit this rule: `",e.filePath,"`"]}),n(ht,{content:`Claude, can you help me edit this rule: \`${e.filePath}\``,icon:!0,iconSize:14,className:"p-1 text-gray-400 hover:text-gray-600 rounded transition-colors"})]})]}),e.frontmatter.paths&&e.frontmatter.paths.length>0&&d("div",{className:"mx-4 mb-3",children:[n("div",{className:"text-xs text-gray-500 mb-1.5 font-medium",children:"Applies to paths:"}),n("div",{className:"flex flex-wrap gap-1.5",children:e.frontmatter.paths.map((k,E)=>n("span",{className:"px-2 py-0.5 bg-gray-100 text-gray-600 rounded font-mono text-xs",children:k},E))})]}),!g&&n("div",{className:"mx-4 mb-4 p-4 rounded border max-h-[500px] overflow-auto bg-white border-gray-200",children:n(Bd,{content:e.body})})]})]})}function IC(){return new Date().toISOString().split(".")[0]+"",`---
|
|
465
|
+
paths:
|
|
466
|
+
- '**/*.ts'
|
|
467
|
+
---
|
|
468
|
+
|
|
469
|
+
## Title
|
|
470
|
+
|
|
471
|
+
Description here.
|
|
472
|
+
`}function RC({rule:e,onSave:t,onCancel:r}){const[s,a]=M(e?`.claude/rules/${e.filePath}`:""),[o,i]=M((e==null?void 0:e.content)||IC()),[l,c]=M(!!e),[p,u]=M(!1),h=!e;return d("div",{className:"p-6",children:[d("div",{className:"flex items-center justify-between mb-4",children:[n("h3",{className:"text-lg font-semibold",style:{fontFamily:"Sora"},children:e?"Edit Rule":"Create New Rule"}),n("button",{onClick:r,className:"text-gray-400 hover:text-gray-600 cursor-pointer",children:n(Yn,{className:"w-5 h-5"})})]}),h&&d("div",{className:"mb-6",children:[n("div",{className:"bg-[#f0f9ff] border border-[#bae6fd] rounded-lg p-4 mb-4",children:d("div",{className:"flex items-start gap-3",children:[n(ds,{className:"w-5 h-5 text-[#0284c7] mt-0.5 flex-shrink-0"}),d("div",{children:[n("h4",{className:"font-medium text-[#0c4a6e] mb-1",children:"Recommended: Use Claude Code"}),n("p",{className:"text-sm text-[#0369a1] mb-2",children:"Run this command in Claude Code to create a properly formatted rule with the right file location and paths:"}),d("div",{className:"relative",children:[n("code",{className:"block bg-white px-3 py-2 pr-9 rounded border border-[#bae6fd] font-mono text-sm text-[#0c4a6e]",children:"/codeyam-new-rule"}),n("button",{onClick:()=>{navigator.clipboard.writeText("/codeyam-new-rule"),u(!0),setTimeout(()=>u(!1),2e3)},className:"absolute right-2 top-1/2 -translate-y-1/2 p-1 text-[#0284c7] hover:text-[#0c4a6e] cursor-pointer transition-colors",title:"Copy command",children:p?n(Ct,{className:"w-4 h-4 text-green-500"}):n(Pt,{className:"w-4 h-4"})})]})]})]})}),d("button",{onClick:()=>c(!l),className:"flex items-center gap-2 text-sm text-gray-600 hover:text-gray-900 cursor-pointer",children:[n("span",{className:"w-4 inline-flex items-center justify-center shrink-0",style:{transform:l?"rotate(90deg)":"none",transition:"transform 0.2s"},children:n("svg",{width:"10",height:"12",viewBox:"0 0 10 12",fill:"none",xmlns:"http://www.w3.org/2000/svg",children:n("path",{d:"M1.5 1.268L8.5 6L1.5 10.732V1.268Z",fill:l?"#3e3e3e":"#c7c7c7"})})}),"Or create manually"]})]}),(l||!h)&&d("div",{className:"space-y-4",children:[d("div",{children:[n("label",{className:"block text-sm font-medium text-gray-700 mb-1",children:"File Path (relative to .claude/rules/)"}),d("div",{className:"relative",children:[n("input",{type:"text",value:s,onChange:m=>a(m.target.value),placeholder:"e.g., src/webserver/architecture.md",className:"w-full px-3 py-2 pr-10 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-[#005C75] focus:border-transparent font-mono text-sm",disabled:!!e}),n("button",{onClick:()=>{navigator.clipboard.writeText(s)},className:"absolute right-2 top-1/2 -translate-y-1/2 p-1 text-gray-400 hover:text-gray-600 cursor-pointer",title:"Copy path",children:n(Pt,{className:"w-4 h-4"})})]})]}),e&&d("div",{children:[n("label",{className:"block text-sm font-medium text-gray-700 mb-1",children:"Ask Claude for help editing:"}),d("div",{className:"relative",children:[n("input",{type:"text",value:`Claude, can you help me edit the rule: \`${s}\``,readOnly:!0,className:"w-full px-3 py-2 pr-10 border border-gray-300 rounded-md bg-gray-50 font-mono text-sm text-gray-600"}),n("button",{onClick:()=>{navigator.clipboard.writeText(`Claude, can you help me edit the rule: \`${s}\``)},className:"absolute right-2 top-1/2 -translate-y-1/2 p-1 text-gray-400 hover:text-gray-600 cursor-pointer",title:"Copy prompt",children:n(Pt,{className:"w-4 h-4"})})]})]}),d("div",{children:[n("label",{className:"block text-sm font-medium text-gray-700 mb-1",children:"Content"}),n("textarea",{value:o,onChange:m=>i(m.target.value),rows:20,className:"w-full px-3 py-2 border border-gray-700 rounded-md focus:outline-none focus:ring-2 focus:ring-[#005C75] focus:border-transparent font-mono text-sm bg-gray-900 text-gray-100 [&::-webkit-scrollbar]:w-2 [&::-webkit-scrollbar-track]:bg-gray-800 [&::-webkit-scrollbar-thumb]:bg-gray-600 [&::-webkit-scrollbar-thumb]:rounded-full [&::-webkit-scrollbar-thumb]:hover:bg-gray-500 [&::-webkit-resizer]:bg-gray-700"})]}),d("div",{className:"flex justify-end gap-2",children:[n("button",{onClick:r,className:"px-4 py-2 text-[#001f3f] hover:text-[#001530] rounded-md cursor-pointer font-mono uppercase text-xs font-semibold",children:"Cancel"}),n("button",{onClick:()=>t(s.replace(/^\.claude\/rules\//,""),o),disabled:!s.trim()||!o.trim(),className:"px-4 py-2 bg-[#005C75] text-white rounded-md hover:bg-[#004a5e] disabled:opacity-50 disabled:cursor-not-allowed cursor-pointer font-mono uppercase text-xs font-semibold",children:"Save"})]})]})]})}function DC({memories:e,selectedPath:t,onSelectPath:r,expandedFolders:s,onToggleFolder:a}){const o=ae(()=>Yd(e),[e]),i=(p,u,h)=>{if(p.target.closest(".chevron-toggle")){h&&a(u||"root");return}const f=u||null;r(t===f?null:f),h&&!s.has(u||"root")&&a(u||"root")},l=p=>{r(t===p?null:p)},c=(p,u=0)=>{const h=s.has(p.path||"root"),m=Ud(p),f=p.children.size>0,g=p.name==="root"?"(root)":p.name,y=p.memories.length>0||f,x=p.path||"",w=t===x||t===null&&x==="";return d("div",{children:[d("div",{className:`flex items-center gap-2 py-2.5 cursor-pointer rounded px-2 relative ${w?"bg-[#E0E9EC]":"hover:bg-gray-100"}`,style:{paddingLeft:`${u*12+8}px`},onClick:b=>i(b,p.path,y),children:[y&&n("span",{className:"chevron-toggle p-0.5 -m-0.5 hover:bg-gray-200 rounded",onClick:b=>{b.stopPropagation(),a(p.path||"root")},children:n(en,{className:`w-3 h-3 text-gray-500 transition-transform ${h?"rotate-90":""}`})}),!y&&n("div",{className:"w-3"}),n(Bl,{className:"w-3.5 h-3.5 text-[#005C75]"}),n("span",{className:`text-xs font-mono font-semibold ${w?"text-[#005C75]":""}`,style:{color:"#005C75"},children:g}),d("span",{className:"text-xs ml-auto",style:{color:"#005C75"},children:[m," rules"]})]}),h&&d("div",{className:"relative",children:[(p.memories.length>0||f)&&n("div",{className:"absolute top-0 bottom-0 w-px bg-gray-300",style:{left:`${u*12+8+6}px`}}),p.memories.length>0&&n("div",{style:{paddingLeft:`${(u+1)*12+8}px`},children:p.memories.map(b=>{var N;const v=t===b.filePath;return n("div",{className:`flex items-center gap-2 py-1 px-2 text-sm rounded cursor-pointer relative ${v?"bg-[#E0E9EC] text-[#005C75]":"text-gray-600 hover:bg-gray-50"}`,onClick:()=>l(b.filePath),children:n("span",{className:"text-xs",children:(N=b.filePath.split("/").pop())==null?void 0:N.replace(".md","")})},b.filePath)})}),f&&n("div",{children:Array.from(p.children.values()).sort((b,v)=>b.name.localeCompare(v.name)).map(b=>c(b,u+1))})]})]},p.path||"root")};return n("div",{className:"bg-white rounded-lg border border-gray-200 p-4 mb-8",children:c(o)})}function OC({memories:e,onEdit:t,onDelete:r,expandedFolders:s,onToggleFolder:a,reviewedStatus:o,onMarkReviewed:i,onMarkUnreviewed:l,onViewRule:c}){const[p,u]=M({});se(()=>{u({})},[o]);const h=ae(()=>({...o,...p}),[o,p]),m=ae(()=>Yd(e),[e]),f=(y,x,w)=>{u(b=>({...b,[y]:!w})),w?l(y):i(y,x)},g=(y,x=0)=>{const w=s.has(y.path||"root"),b=y.children.size>0,v=y.name==="root"?"root":y.name,N=y.memories.length>0||b;return d("div",{children:[d("div",{className:"flex items-center gap-2 py-2 cursor-pointer hover:bg-gray-50 rounded px-2 mb-2",style:{backgroundColor:"rgba(224, 233, 236, 0.5)"},onClick:()=>N&&a(y.path||"root"),children:[N&&n(en,{className:`w-4 h-4 text-gray-500 transition-transform ${w?"rotate-90":""}`}),!N&&n("div",{className:"w-4"}),n(Bl,{className:"w-4 h-4 text-[#005C75]"}),n("span",{className:"text-sm font-mono font-semibold",style:{color:"#001f3f"},children:v})]}),w&&d("div",{className:"ml-10 space-y-4 relative",children:[(y.memories.length>0||b)&&n("div",{className:"absolute top-0 bottom-0 w-px bg-gray-300",style:{left:"-24px"}}),y.memories.length>0&&n("div",{className:"space-y-2",children:y.memories.map(k=>n($C,{rule:k,onEdit:t,onDelete:r,onView:c,isReviewed:h[k.filePath]??!1,onToggleReviewed:f},k.filePath))}),b&&n("div",{className:"space-y-4",children:Array.from(y.children.values()).sort((k,E)=>k.name.localeCompare(E.name)).map(k=>g(k,x+1))})]})]},y.path||"root")};return n("div",{children:g(m)})}function FC({memories:e,reviewedStatus:t,onViewRule:r,refreshKey:s}){const[a,o]=M("unreviewed"),[i,l]=M("by-date"),[c,p]=M(null),[u,h]=M(!0),[m,f]=M(new Map),g=fe(t),y=fe([]);se(()=>()=>{y.current.forEach(clearTimeout)},[]),se(()=>{(async()=>{h(!0);try{const E=await(await fetch("/api/memory?action=rule-coverage")).json();p(E.coverage??null)}catch{p(null)}finally{h(!1)}})()},[s]),se(()=>{const N=g.current,k=[];for(const[E,C]of Object.entries(t))C&&!N[E]&&k.push(E);g.current=t,k.length!==0&&(f(E=>{const C=new Map(E);return k.forEach(S=>C.set(S,"approved")),C}),y.current.push(setTimeout(()=>{f(E=>{const C=new Map(E);return k.forEach(S=>C.set(S,"fading")),C})},1500)),y.current.push(setTimeout(()=>{f(E=>{const C=new Map(E);return k.forEach(S=>C.delete(S)),C})},2500)))},[t]);const x=ae(()=>{const N=[...e];return i==="by-impact"&&c!==null?N.sort((k,E)=>{const C=c[k.filePath]??0,S=c[E.filePath]??0;return S!==C?S-C:new Date(E.lastModified).getTime()-new Date(k.lastModified).getTime()}):N.sort((k,E)=>new Date(E.lastModified).getTime()-new Date(k.lastModified).getTime()),N},[e,i,c]),w=ae(()=>x.filter(N=>!t[N.filePath]).length,[x,t]),b=ae(()=>a==="unreviewed"?x.filter(N=>!t[N.filePath]||m.has(N.filePath)):x,[x,a,t,m]),v=!u&&c!==null;return d("div",{className:"bg-white rounded-lg border border-gray-200 overflow-hidden flex flex-col",children:[d("div",{className:"flex items-center gap-4 border-b border-[#e1e1e1] px-5",children:[n("button",{className:"py-3 border-b-2 border-[#232323] text-[#232323] bg-transparent cursor-pointer",children:n("span",{className:"text-[14px] leading-6",style:{fontFamily:"Sora",fontWeight:600},children:"Recently Changed Rules"})}),n("div",{className:"flex-1"}),d("button",{onClick:()=>o("unreviewed"),className:"flex items-center gap-1.5 bg-transparent cursor-pointer py-3",children:[n("span",{className:"w-2 h-2 rounded-full flex-shrink-0",style:{backgroundColor:a==="unreviewed"?"#005C75":"#d1d5db"}}),d("span",{className:"text-[12px] leading-5",style:{fontFamily:"Sora",fontWeight:a==="unreviewed"?600:400,color:a==="unreviewed"?"#005C75":"#626262"},children:["Unreviewed Rules (",w,")"]})]}),d("button",{onClick:()=>o("all"),className:"flex items-center gap-1.5 bg-transparent cursor-pointer py-3",children:[n("span",{className:"w-2 h-2 rounded-full flex-shrink-0",style:{backgroundColor:a==="all"?"#005C75":"#d1d5db"}}),d("span",{className:"text-[12px] leading-5",style:{fontFamily:"Sora",fontWeight:a==="all"?600:400,color:a==="all"?"#005C75":"#626262"},children:["All (",x.length,")"]})]})]}),d("div",{className:"grid grid-cols-[1fr_90px_80px_100px] px-5 py-2 border-b border-gray-100",children:[n("span",{className:"text-[11px] uppercase tracking-wider text-gray-400 font-medium",children:"Rule"}),d("button",{onClick:()=>v&&l("by-impact"),className:`text-[11px] uppercase tracking-wider font-medium text-center flex items-center justify-center gap-0.5 whitespace-nowrap bg-transparent border-none p-0 ${v?"cursor-pointer hover:text-gray-600":"cursor-default"} ${i==="by-impact"?"text-[#005C75]":"text-gray-400"}`,children:["Src Files",i==="by-impact"&&n(Nt,{className:"w-3 h-3"})]}),d("button",{onClick:()=>l("by-date"),className:`text-[11px] uppercase tracking-wider font-medium text-center flex items-center justify-center gap-0.5 whitespace-nowrap bg-transparent border-none cursor-pointer p-0 hover:text-gray-600 ${i==="by-date"?"text-[#005C75]":"text-gray-400"}`,children:["Changed At",i==="by-date"&&n(Nt,{className:"w-3 h-3"})]}),d("span",{className:"text-[11px] uppercase tracking-wider text-gray-400 font-medium text-center flex items-center justify-center gap-1 whitespace-nowrap",children:["✓ Reviewed",d("span",{className:"relative group",children:[n(Ia,{className:"w-3 h-3 text-gray-300 cursor-help"}),n("span",{className:"absolute top-full right-0 mt-1.5 px-3 py-2 bg-gray-800 text-white text-[10px] leading-relaxed rounded shadow-lg w-52 text-center whitespace-normal opacity-0 pointer-events-none group-hover:opacity-100 transition-opacity z-20",children:"Showing which rules have been reviewed and approved. Click a rule to view it and approve it"})]})]})]}),n("div",{className:"flex-1 overflow-y-auto max-h-[400px]",children:b.map(N=>{const k=t[N.filePath]??!1,E=m.get(N.filePath),C=Xs(N.body,N.filePath),S=(c==null?void 0:c[N.filePath])??0;return n("div",{className:`border-b border-gray-50 transition-all ${E==="fading"?"duration-1000":"duration-300"}`,style:{opacity:E==="fading"?0:1},children:d("div",{className:`grid grid-cols-[1fr_90px_80px_100px] px-5 py-2.5 items-center cursor-pointer transition-colors duration-300 ${E==="approved"?"bg-[#f0fdf4]":"hover:bg-gray-50"}`,onClick:()=>r(N),children:[n("div",{className:"flex items-center gap-2 min-w-0",children:n("span",{className:"text-sm text-gray-900 truncate",children:C})}),n("span",{className:"text-xs text-center",children:u?n("span",{className:"inline-block w-6 h-3 bg-gray-100 rounded animate-pulse"}):c!==null?n("span",{className:S>0?"text-gray-700 font-medium":"text-gray-300",children:S}):n("span",{className:"text-gray-300",children:"—"})}),n("span",{className:"text-xs text-gray-500 text-center",children:Dn(N.lastModified)}),n("div",{className:"flex justify-center",children:n("div",{className:`w-5 h-5 rounded-full border-2 flex items-center justify-center transition-colors duration-300 ${k?"bg-[#005C75] border-[#005C75]":"bg-white border-gray-300"}`,children:k&&n("svg",{width:"10",height:"8",viewBox:"0 0 10 8",fill:"none",children:n("path",{d:"M1 4L3.5 6.5L9 1",stroke:"white",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})})})})]})},N.filePath)})}),b.length===0&&a==="unreviewed"&&n("div",{className:"px-5 py-8 text-center text-sm text-gray-500",children:"All rules have been reviewed"})]})}function LC(e,t){const r=t.map(s=>`- \`${s}\``).join(`
|
|
473
|
+
`);return`Please audit the following Claude Rules that apply to the file \`${e}\`:
|
|
474
|
+
|
|
475
|
+
${r}
|
|
476
|
+
|
|
477
|
+
Please review these rules in conjunction with one another as they all apply to this file.
|
|
478
|
+
|
|
479
|
+
Review each rule with the other rules in mind:
|
|
480
|
+
- Necessary: Is this rule really necessary to avoid confusion in future work sessions?
|
|
481
|
+
- Efficiency: Are the rules concise and well-structured?
|
|
482
|
+
- Effectiveness: Does the rules provide clear, actionable guidance?
|
|
483
|
+
- Context window impact: Can the rules be shortened without losing important information?
|
|
484
|
+
- Overlap: Is there any redundant information across the rules that can be consolidated?
|
|
485
|
+
- Duplication: Are there any rules that are nearly identical that can be merged or removed?
|
|
486
|
+
|
|
487
|
+
Remember that documenting past confusion isn't helpul unless that confusion will likely happen again.
|
|
488
|
+
|
|
489
|
+
Note: Each rule may apply to multiple files, not just the file listed above. Consider this when suggesting changes — modifications should not negatively impact the rule's usefulness for other files it covers.`}function zC({filePath:e,rulePaths:t,onClose:r}){const[s,a]=M(!1),o=LC(e,t);return n("div",{className:"fixed inset-0 bg-black/50 flex items-center justify-center z-50",onClick:r,children:d("div",{className:"bg-white rounded-lg p-8 max-w-xl w-full mx-4 relative",onClick:l=>l.stopPropagation(),children:[n("button",{onClick:r,className:"absolute top-4 right-4 text-gray-400 hover:text-gray-600 cursor-pointer",children:n(Yn,{className:"w-6 h-6"})}),n("h2",{className:"text-xl font-bold mb-1",children:"Audit Rules For File"}),n("p",{className:"font-mono text-sm text-gray-500 mb-4 truncate",title:e,children:e}),n("p",{className:"text-gray-600 text-sm mb-4",children:"Claude can audit these rules to try and make them as efficient and effective as possible, reducing the impact on the context window."}),n("textarea",{readOnly:!0,value:o,className:"w-full h-48 p-3 text-sm font-mono bg-gray-50 border border-gray-200 rounded-md resize-none focus:outline-none"}),n("div",{className:"flex justify-end mt-4",children:n("button",{onClick:()=>{navigator.clipboard.writeText(o),a(!0),setTimeout(()=>a(!1),2e3)},className:"flex items-center gap-2 px-4 py-2 rounded-md hover:opacity-90 cursor-pointer font-mono uppercase text-xs font-semibold text-white",style:{backgroundColor:"#1A2332"},children:s?d(ye,{children:[n(Ct,{className:"w-4 h-4"}),"Copied!"]}):d(ye,{children:[n(Pt,{className:"w-4 h-4"}),"Copy Prompt"]})})})]})})}function BC({refreshKey:e,reviewedStatus:t,memories:r,onViewRule:s}){const[a,o]=M("unreviewed"),[i,l]=M(null),[c,p]=M(""),[u,h]=M(0),[m,f]=M(!1),[g,y]=M(null),[x,w]=M(null),b=fe(null),v=fe(null),[N,k]=M({topPaths:[],totalFilesWithCoverage:0,allSourceFiles:[]}),[E,C]=M(!0);se(()=>{(async()=>{C(!0);try{const J=await(await fetch("/api/memory?action=audit")).json();k({topPaths:J.topPaths||[],totalFilesWithCoverage:J.totalFilesWithCoverage||0,allSourceFiles:J.allSourceFiles||[]})}catch(G){console.error("Failed to load audit data:",G)}finally{C(!1)}})()},[e]);const S=ae(()=>a==="all"?N.topPaths:N.topPaths.filter(T=>T.matchingRules.some(G=>!t[G.filePath])),[N.topPaths,a,t]);ae(()=>N.topPaths.filter(T=>T.matchingRules.some(G=>!t[G.filePath])).length,[N.topPaths,t]);const _=T=>T.split("/").pop()||T,j=ae(()=>{const T=new Map;for(const G of N.topPaths)T.set(G.filePath,G);return T},[N.topPaths]),$=ae(()=>{if(!c.trim())return[];const T=c.toLowerCase(),G=[],J=[];for(const F of N.allSourceFiles){const H=F.toLowerCase();if(!H.includes(T))continue;const U=j.get(F)||{filePath:F,matchingRules:[],totalTextLength:0};H.startsWith(T)?G.push(U):J.push(U)}return G.sort((F,H)=>F.filePath.localeCompare(H.filePath)),J.sort((F,H)=>F.filePath.localeCompare(H.filePath)),[...G,...J].slice(0,8)},[c,N.allSourceFiles,j]),P=ie(T=>{var G;y(T),l(T.filePath),p(T.filePath),f(!1),(G=b.current)==null||G.blur()},[]),I=ie(()=>{var T;p(""),y(null),l(null),(T=b.current)==null||T.focus()},[]),R=ie(T=>{var G;!m||$.length===0||(T.key==="ArrowDown"?(T.preventDefault(),h(J=>Math.min(J+1,$.length-1))):T.key==="ArrowUp"?(T.preventDefault(),h(J=>Math.max(J-1,0))):T.key==="Enter"?(T.preventDefault(),P($[u])):T.key==="Escape"&&(f(!1),(G=b.current)==null||G.blur()))},[m,$,u,P]);return se(()=>{h(0)},[$]),d("div",{className:"bg-white rounded-lg border border-gray-200 flex flex-col",children:[d("div",{className:"flex items-center gap-4 border-b border-[#e1e1e1] px-5",children:[n("button",{className:"py-3 border-b-2 border-[#232323] text-[#232323] bg-transparent cursor-pointer",children:n("span",{className:"text-[14px] leading-6",style:{fontFamily:"Sora",fontWeight:600},children:"Rule Audit"})}),d("div",{className:"relative flex-1 max-w-[300px]",children:[n(Sr,{className:"absolute left-2.5 top-1/2 -translate-y-1/2 w-3.5 h-3.5 text-gray-400"}),n("input",{ref:b,type:"text",value:c,onChange:T=>{p(T.target.value),f(!0)},onFocus:()=>{c.trim()&&f(!0)},onBlur:()=>{setTimeout(()=>f(!1),200)},onKeyDown:R,placeholder:"Search files...",className:`w-full pl-8 ${c?"pr-7":"pr-3"} py-1 text-xs border border-gray-200 rounded-md focus:outline-none focus:ring-1 focus:ring-[#005C75] focus:border-[#005C75] bg-gray-50`}),c&&n("button",{type:"button",onMouseDown:T=>{T.preventDefault(),I()},className:"absolute right-2 top-1/2 -translate-y-1/2 w-4 h-4 flex items-center justify-center text-gray-400 hover:text-gray-600 cursor-pointer",children:n("svg",{viewBox:"0 0 14 14",fill:"none",stroke:"currentColor",strokeWidth:"2",className:"w-3 h-3",children:n("path",{d:"M1 1l12 12M13 1L1 13"})})}),m&&$.length>0&&n("div",{ref:v,className:"absolute left-0 top-full mt-0.5 bg-white border border-gray-200 rounded-md shadow-lg z-10 max-h-75 overflow-y-auto min-w-75 max-w-120",children:$.map((T,G)=>d("div",{onMouseDown:J=>{J.preventDefault(),P(T)},onMouseEnter:()=>h(G),className:`flex items-center gap-2 px-3 py-2 cursor-pointer text-sm ${G===u?"bg-[#f0f9ff]":"hover:bg-gray-50"}`,children:[n(us,{className:"w-3.5 h-3.5 text-gray-400 flex-shrink-0"}),n("span",{className:"text-gray-700 truncate",title:T.filePath,children:(()=>{const J=T.filePath.toLowerCase().indexOf(c.toLowerCase());if(J===-1)return T.filePath;const F=T.filePath.slice(0,J),H=T.filePath.slice(J,J+c.length),U=T.filePath.slice(J+c.length);return d(ye,{children:[F,n("span",{className:"font-semibold text-[#005C75]",children:H}),U]})})()}),d("span",{className:"text-xs text-gray-400 ml-auto flex-shrink-0",children:[T.matchingRules.length," rule",T.matchingRules.length!==1?"s":""]})]},T.filePath))})]}),n("div",{className:"flex-1"}),d("button",{onClick:()=>o("unreviewed"),className:"flex items-center gap-1.5 bg-transparent cursor-pointer py-3",children:[n("span",{className:"w-2 h-2 rounded-full flex-shrink-0",style:{backgroundColor:a==="unreviewed"?"#005C75":"#d1d5db"}}),n("span",{className:"text-[12px] leading-5",style:{fontFamily:"Sora",fontWeight:a==="unreviewed"?600:400,color:a==="unreviewed"?"#005C75":"#626262"},children:"Unreviewed Rules"})]}),d("button",{onClick:()=>o("all"),className:"flex items-center gap-1.5 bg-transparent cursor-pointer py-3",children:[n("span",{className:"w-2 h-2 rounded-full flex-shrink-0",style:{backgroundColor:a==="all"?"#005C75":"#d1d5db"}}),n("span",{className:"text-[12px] leading-5",style:{fontFamily:"Sora",fontWeight:a==="all"?600:400,color:a==="all"?"#005C75":"#626262"},children:"All"})]})]}),d("div",{className:"grid grid-cols-[1fr_140px_150px] px-5 py-2 border-b border-gray-100",children:[n("span",{className:"text-[11px] uppercase tracking-wider text-gray-400 font-medium",children:"Source file"}),d("span",{className:"text-[11px] uppercase tracking-wider text-gray-400 font-medium flex items-center justify-center gap-1 whitespace-nowrap",children:["Unreviewed Rules",d("span",{className:"relative group",children:[n(Ia,{className:"w-3 h-3 text-gray-300 flex-shrink-0 cursor-help"}),n("span",{className:"absolute top-full left-1/2 -translate-x-1/2 mt-1.5 px-3 py-2 bg-gray-800 text-white text-[10px] leading-relaxed rounded shadow-lg w-48 text-center whitespace-normal opacity-0 pointer-events-none group-hover:opacity-100 transition-opacity z-20",children:"Number of rules not yet reviewed for this file / Total number of rules that apply to this file"})]})]}),d("span",{className:"text-[11px] uppercase tracking-wider text-gray-400 font-medium flex items-center justify-center gap-1 whitespace-nowrap",children:["Unreviewed Tokens",d("span",{className:"relative group",children:[n(Ia,{className:"w-3 h-3 text-gray-300 flex-shrink-0 cursor-help"}),n("span",{className:"absolute top-full right-0 mt-1.5 px-3 py-2 bg-gray-800 text-white text-[10px] leading-relaxed rounded shadow-lg w-52 text-center whitespace-normal opacity-0 pointer-events-none group-hover:opacity-100 transition-opacity z-20",children:"Estimated tokens from unreviewed rules / Total number of tokens from all rules that apply to this file"})]})]})]}),E&&n("div",{className:"px-5 py-6",children:d("div",{className:"animate-pulse space-y-3",children:[n("div",{className:"h-4 bg-gray-200 rounded w-3/4"}),n("div",{className:"h-3 bg-gray-100 rounded w-1/2"}),n("div",{className:"h-4 bg-gray-200 rounded w-2/3 mt-4"})]})}),!E&&(S.length>0||g)&&n("div",{className:"max-h-[400px] overflow-y-auto",children:(g?[g,...S.filter(G=>G.filePath!==g.filePath)].slice(0,8):S.slice(0,8)).map((T,G)=>{const J=T.matchingRules.length,F=T.matchingRules.filter(V=>!t[V.filePath]),H=F.length,U=F.reduce((V,W)=>V+W.bodyLength,0),z=H>0,A=i===T.filePath,Y=(g==null?void 0:g.filePath)===T.filePath;return d("div",{children:[d("div",{onClick:()=>l(A?null:T.filePath),className:`grid grid-cols-[1fr_140px_150px] px-5 py-2.5 items-center border-b border-gray-50 cursor-pointer ${Y?"bg-[#f0f9ff] hover:bg-[#e0f2fe]":"hover:bg-gray-50"}`,children:[d("div",{className:"flex items-center gap-2 min-w-0",children:[A?n(Nt,{className:"w-3.5 h-3.5 text-gray-400 flex-shrink-0"}):n(en,{className:"w-3.5 h-3.5 text-gray-400 flex-shrink-0"}),n(us,{className:"w-3.5 h-3.5 text-gray-400 flex-shrink-0"}),n("span",{className:"text-sm text-gray-900 truncate",title:T.filePath,children:Y?T.filePath:_(T.filePath)})]}),d("span",{className:"text-sm text-center",children:[n("span",{className:z?"font-semibold text-[#1A5276]":"text-gray-400",children:H}),n("span",{className:"text-gray-300",children:" / "}),n("span",{className:"text-gray-500",children:J})]}),d("span",{className:"text-sm text-center",children:[n("span",{className:z?"font-semibold text-[#1A5276]":"text-gray-400",children:gr(U).toLocaleString()}),n("span",{className:"text-gray-300",children:" / "}),n("span",{className:"text-gray-500",children:gr(T.totalTextLength).toLocaleString()})]})]}),A&&d("div",{className:"bg-gray-50 border-b border-gray-100",children:[T.matchingRules.map(V=>{const W=r.find(B=>B.filePath===V.filePath),Q=t[V.filePath]??!1;return d("div",{onClick:B=>{B.stopPropagation(),W&&s(W)},className:"flex items-center gap-2 px-5 pl-12 py-2 hover:bg-gray-100 cursor-pointer",children:[n(cs,{className:"w-3.5 h-3.5 text-gray-400 flex-shrink-0"}),n("span",{className:"text-sm text-gray-700 truncate flex-1",children:W?Xs(W.body,W.filePath):V.filePath}),d("span",{className:"text-xs text-gray-400 flex-shrink-0",children:[gr(V.bodyLength).toLocaleString()," ","tokens"]}),n("div",{className:`w-4 h-4 rounded-full border-2 flex items-center justify-center flex-shrink-0 ${Q?"bg-[#005C75] border-[#005C75]":"bg-white border-gray-300"}`,children:Q&&n("svg",{width:"8",height:"6",viewBox:"0 0 10 8",fill:"none",children:n("path",{d:"M1 4L3.5 6.5L9 1",stroke:"white",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})})})]},V.filePath)}),d("div",{className:"flex items-center justify-center gap-3 px-5 py-2 border-t border-gray-200",children:[n("span",{className:"text-xs text-gray-400",children:"Have Claude audit these rules"}),n("button",{onClick:V=>{V.stopPropagation(),w({filePath:T.filePath,rulePaths:T.matchingRules.map(W=>W.filePath)})},className:"px-3 py-1 text-xs font-medium text-[#005C75] border border-[#005C75] rounded hover:bg-[#f0f9ff] cursor-pointer",children:"Prompt"})]})]})]},T.filePath)})}),!E&&S.length===0&&n("div",{className:"px-5 py-8 text-center text-sm text-gray-500",children:a==="unreviewed"?"No files have unreviewed rules":"No files have rule coverage yet"}),x&&n(zC,{filePath:x.filePath,rulePaths:x.rulePaths,onClose:()=>w(null)})]})}function YC({rule:e,changeInfo:t,isReviewed:r,onApprove:s,onEdit:a,onDelete:o,onClose:i}){const l=Xs(e.body,e.filePath),c=gr(e.body.length),p=e.frontmatter.category,u=`.claude/rules/${e.filePath}`,[h,m]=M(null),f=(t==null?void 0:t.changeType)==="added"||h!=null&&h.commitCount!=null&&h.commitCount<=1&&!(h.commitCount===1&&h.isUncommitted);return se(()=>{m(null),fetch(`/api/memory?action=rule-diff&filePath=${encodeURIComponent(e.filePath)}`).then(g=>g.json()).then(g=>{g.diff&&m(g.diff)}).catch(()=>{})},[e.filePath]),se(()=>{const g=y=>{y.key==="Escape"&&i()};return document.addEventListener("keydown",g),()=>document.removeEventListener("keydown",g)},[i]),n("div",{className:"fixed inset-0 flex items-center justify-center z-[9999] p-4",style:{backgroundColor:"rgba(0, 0, 0, 0.8)"},onClick:i,children:d("div",{className:"rounded-lg shadow-xl max-w-4xl w-full max-h-[90vh] overflow-auto",style:{backgroundColor:"#F8F7F6"},onClick:g=>g.stopPropagation(),children:[n("div",{className:"px-6 pt-5 pb-4",children:d("div",{className:"flex items-start justify-between",children:[d("div",{className:"min-w-0 flex-1",children:[d("div",{className:"flex items-center gap-2 mb-1.5 flex-wrap",children:[n("h2",{className:"text-[16px] font-bold text-gray-900",children:l}),t&&d(ye,{children:[n("span",{className:"text-xs text-gray-400 flex-shrink-0",children:Dn(t.date)}),n("span",{className:`flex-shrink-0 text-[11px] uppercase font-semibold tracking-wider ${t.changeType==="added"?"text-green-600":t.changeType==="modified"?"text-orange-600":"text-red-600"}`,children:t.changeType})]})]}),p&&d("div",{className:"flex items-center gap-2 mb-1.5",children:[n("span",{className:"text-[11px] text-gray-400 uppercase tracking-wider font-medium",children:"TYPE:"}),n("span",{className:"px-2 py-0.5 rounded text-[10px] uppercase font-semibold tracking-wider bg-[#E0F2F1] text-[#00796B]",children:p})]}),d("div",{className:"flex items-center gap-1.5 mb-1.5",children:[n("span",{className:"text-[11px] text-gray-400 uppercase tracking-wider font-medium",children:"FILE:"}),n("code",{className:"text-[11px] text-gray-600 font-mono",children:u}),n(ht,{content:u,icon:!0,iconSize:12,className:"p-0.5 rounded text-gray-400 hover:text-gray-600 transition-colors",ariaLabel:"Copy file path"})]}),d("div",{className:"text-[11px] text-gray-400 uppercase tracking-wider font-medium",children:["TOKENS: ~",c.toLocaleString()]})]}),d("div",{className:"flex items-center gap-2 flex-shrink-0 ml-4",children:[d("button",{onClick:s,className:`flex items-center gap-1.5 px-3 py-1.5 rounded text-xs font-medium uppercase tracking-wider cursor-pointer transition-colors ${r?"bg-green-600 text-white":"border border-green-600 text-green-700 hover:bg-green-50"}`,children:[n(Ct,{className:"w-3.5 h-3.5"}),r?"Approved":"Approve"]}),n("button",{onClick:a,className:"px-3 py-1.5 rounded text-xs font-medium uppercase tracking-wider cursor-pointer border border-gray-300 text-gray-600 hover:bg-gray-50 transition-colors",children:"Edit"}),n("button",{onClick:o,className:"px-3 py-1.5 rounded text-xs font-medium uppercase tracking-wider cursor-pointer border border-red-300 text-red-600 hover:bg-red-50 transition-colors",children:"Delete"}),n("button",{onClick:i,className:"p-1.5 rounded text-gray-400 hover:text-gray-600 hover:bg-gray-200 cursor-pointer transition-colors ml-1",children:n(Yn,{className:"w-5 h-5"})})]})]})}),e.frontmatter.paths&&e.frontmatter.paths.length>0&&d("div",{className:"px-6 pb-4",children:[n("div",{className:"text-[13px] text-gray-700 font-semibold mb-2",children:"Applies to paths:"}),n("div",{className:"bg-white rounded-lg p-4 space-y-2.5",style:{border:"1px solid #E6E6E6"},children:e.frontmatter.paths.map((g,y)=>{const x=g.split("/"),w=x.pop()||g,b=x.length>0?x.join("/")+"/":"";return d("div",{className:"flex items-center gap-2 text-[13px] font-mono",children:[n(us,{className:"w-4 h-4 text-[#005C75] flex-shrink-0"}),d("span",{children:[b&&n("span",{className:"text-gray-500",children:b}),n("span",{className:"font-bold text-gray-900",children:w})]})]},y)})})]}),f?n("div",{className:"px-6 pb-4",children:d("div",{className:"text-[13px] text-gray-500",children:["Created"," ",t!=null&&t.date?Dn(t.date):h!=null&&h.date?Dn(h.date):"recently"]})}):h&&n("div",{className:"px-6 pb-4",children:d("details",{children:[d("summary",{className:"text-[13px] text-gray-700 font-semibold cursor-pointer",children:["Recent change: ",h.commitMessage," —"," ",Dn(h.date)]}),n("pre",{className:"mt-2 p-4 text-xs font-mono overflow-x-auto bg-gray-900 text-gray-100 max-h-64 overflow-y-auto rounded-md",children:h.diff.split(`
|
|
490
|
+
`).map((g,y)=>{let x="";return g.startsWith("+")&&!g.startsWith("+++")?x="text-green-400":g.startsWith("-")&&!g.startsWith("---")?x="text-red-400":g.startsWith("@@")&&(x="text-cyan-400"),n("div",{className:x,children:g},y)})})]})}),d("div",{className:"px-6 pb-6",children:[n("div",{className:"text-[13px] text-gray-700 font-semibold mb-2",children:"Rule Text:"}),n("div",{className:"bg-white rounded-lg p-6",style:{border:"1px solid #E6E6E6"},children:n(Bd,{content:e.body})})]})]})})}function UC(){return d("svg",{width:"24",height:"24",viewBox:"0 0 27 27",fill:"none",xmlns:"http://www.w3.org/2000/svg",children:[n("rect",{x:"12",y:"24",width:"3",height:"3",fill:"#232323"}),n("rect",{x:"12",width:"3",height:"3",fill:"#232323"}),n("rect",{x:"12",y:"3",width:"3",height:"3",fill:"#232323"}),n("rect",{x:"12",y:"6",width:"3",height:"3",fill:"#232323"}),n("rect",{x:"12",y:"18",width:"3",height:"3",fill:"#232323"}),n("rect",{x:"3",y:"12",width:"3",height:"3",transform:"rotate(90 3 12)",fill:"#232323"}),n("rect",{x:"27",y:"12",width:"3",height:"3",transform:"rotate(90 27 12)",fill:"#232323"}),n("rect",{x:"18",y:"24",width:"3",height:"3",transform:"rotate(90 18 24)",fill:"#232323"}),n("rect",{x:"18",width:"3",height:"3",transform:"rotate(90 18 0)",fill:"#232323"}),n("rect",{x:"3",y:"18",width:"3",height:"3",transform:"rotate(-180 3 18)",fill:"#232323"}),n("rect",{x:"27",y:"18",width:"3",height:"3",transform:"rotate(-180 27 18)",fill:"#232323"}),n("rect",{x:"21",y:"24",width:"3",height:"3",transform:"rotate(90 21 24)",fill:"#232323"}),n("rect",{x:"3",y:"21",width:"3",height:"3",transform:"rotate(-180 3 21)",fill:"#232323"}),n("rect",{x:"27",y:"21",width:"3",height:"3",transform:"rotate(-180 27 21)",fill:"#232323"}),n("rect",{x:"6",y:"24",width:"3",height:"3",transform:"rotate(90 6 24)",fill:"#232323"}),n("rect",{x:"6",width:"3",height:"3",transform:"rotate(90 6 0)",fill:"#232323"}),n("rect",{x:"3",y:"6",width:"3",height:"3",transform:"rotate(-180 3 6)",fill:"#232323"}),n("rect",{x:"21",y:"6",width:"3",height:"3",transform:"rotate(-180 21 6)",fill:"#232323"}),n("rect",{x:"24",y:"24",width:"3",height:"3",transform:"rotate(90 24 24)",fill:"#232323"}),n("rect",{x:"3",y:"24",width:"3",height:"3",transform:"rotate(-180 3 24)",fill:"#232323"}),n("rect",{x:"27",y:"24",width:"3",height:"3",transform:"rotate(-180 27 24)",fill:"#232323"}),n("rect",{x:"9",y:"24",width:"3",height:"3",transform:"rotate(90 9 24)",fill:"#232323"}),n("rect",{x:"9",width:"3",height:"3",transform:"rotate(90 9 0)",fill:"#232323"}),n("rect",{x:"9",y:"3",width:"3",height:"3",transform:"rotate(90 9 3)",fill:"#232323"}),n("rect",{x:"9",y:"6",width:"3",height:"3",transform:"rotate(90 9 6)",fill:"#232323"}),n("rect",{x:"9",y:"18",width:"3",height:"3",transform:"rotate(90 9 18)",fill:"#232323"}),n("rect",{x:"3",y:"9",width:"3",height:"3",transform:"rotate(-180 3 9)",fill:"#232323"}),n("rect",{x:"24",y:"9",width:"3",height:"3",transform:"rotate(-180 24 9)",fill:"#232323"}),n("rect",{x:"12",y:"24",width:"3",height:"3",transform:"rotate(90 12 24)",fill:"#232323"}),n("rect",{x:"12",width:"3",height:"3",transform:"rotate(90 12 0)",fill:"#232323"}),n("rect",{x:"12",y:"6",width:"3",height:"3",transform:"rotate(90 12 6)",fill:"#232323"}),n("rect",{x:"12",y:"18",width:"3",height:"3",transform:"rotate(90 12 18)",fill:"#232323"}),n("rect",{x:"3",y:"12",width:"3",height:"3",transform:"rotate(-180 3 12)",fill:"#232323"}),n("rect",{x:"27",y:"12",width:"3",height:"3",transform:"rotate(-180 27 12)",fill:"#232323"})]})}function WC(){return d("svg",{width:"20",height:"20",viewBox:"0 0 27 27",fill:"none",xmlns:"http://www.w3.org/2000/svg",children:[n("rect",{x:"12",y:"24",width:"3",height:"3",fill:"#005C75"}),n("rect",{x:"12",width:"3",height:"3",fill:"#005C75"}),n("rect",{x:"12",y:"3",width:"3",height:"3",fill:"#005C75"}),n("rect",{x:"12",y:"6",width:"3",height:"3",fill:"#005C75"}),n("rect",{x:"12",y:"18",width:"3",height:"3",fill:"#005C75"}),n("rect",{x:"3",y:"12",width:"3",height:"3",transform:"rotate(90 3 12)",fill:"#005C75"}),n("rect",{x:"27",y:"12",width:"3",height:"3",transform:"rotate(90 27 12)",fill:"#005C75"}),n("rect",{x:"18",y:"24",width:"3",height:"3",transform:"rotate(90 18 24)",fill:"#005C75"}),n("rect",{x:"18",width:"3",height:"3",transform:"rotate(90 18 0)",fill:"#005C75"}),n("rect",{x:"3",y:"18",width:"3",height:"3",transform:"rotate(-180 3 18)",fill:"#005C75"}),n("rect",{x:"27",y:"18",width:"3",height:"3",transform:"rotate(-180 27 18)",fill:"#005C75"}),n("rect",{x:"21",y:"24",width:"3",height:"3",transform:"rotate(90 21 24)",fill:"#005C75"}),n("rect",{x:"3",y:"21",width:"3",height:"3",transform:"rotate(-180 3 21)",fill:"#005C75"}),n("rect",{x:"27",y:"21",width:"3",height:"3",transform:"rotate(-180 27 21)",fill:"#005C75"}),n("rect",{x:"6",y:"24",width:"3",height:"3",transform:"rotate(90 6 24)",fill:"#005C75"}),n("rect",{x:"6",width:"3",height:"3",transform:"rotate(90 6 0)",fill:"#005C75"}),n("rect",{x:"3",y:"6",width:"3",height:"3",transform:"rotate(-180 3 6)",fill:"#005C75"}),n("rect",{x:"21",y:"6",width:"3",height:"3",transform:"rotate(-180 21 6)",fill:"#005C75"}),n("rect",{x:"24",y:"24",width:"3",height:"3",transform:"rotate(90 24 24)",fill:"#005C75"}),n("rect",{x:"3",y:"24",width:"3",height:"3",transform:"rotate(-180 3 24)",fill:"#005C75"}),n("rect",{x:"27",y:"24",width:"3",height:"3",transform:"rotate(-180 27 24)",fill:"#005C75"}),n("rect",{x:"9",y:"24",width:"3",height:"3",transform:"rotate(90 9 24)",fill:"#005C75"}),n("rect",{x:"9",width:"3",height:"3",transform:"rotate(90 9 0)",fill:"#005C75"}),n("rect",{x:"9",y:"3",width:"3",height:"3",transform:"rotate(90 9 3)",fill:"#005C75"}),n("rect",{x:"9",y:"6",width:"3",height:"3",transform:"rotate(90 9 6)",fill:"#005C75"}),n("rect",{x:"9",y:"18",width:"3",height:"3",transform:"rotate(90 9 18)",fill:"#005C75"}),n("rect",{x:"3",y:"9",width:"3",height:"3",transform:"rotate(-180 3 9)",fill:"#005C75"}),n("rect",{x:"24",y:"9",width:"3",height:"3",transform:"rotate(-180 24 9)",fill:"#005C75"}),n("rect",{x:"12",y:"24",width:"3",height:"3",transform:"rotate(90 12 24)",fill:"#005C75"}),n("rect",{x:"12",width:"3",height:"3",transform:"rotate(90 12 0)",fill:"#005C75"}),n("rect",{x:"12",y:"6",width:"3",height:"3",transform:"rotate(90 12 6)",fill:"#005C75"}),n("rect",{x:"12",y:"18",width:"3",height:"3",transform:"rotate(90 12 18)",fill:"#005C75"}),n("rect",{x:"3",y:"12",width:"3",height:"3",transform:"rotate(-180 3 12)",fill:"#005C75"}),n("rect",{x:"27",y:"12",width:"3",height:"3",transform:"rotate(-180 27 12)",fill:"#005C75"})]})}function JC(){return n("div",{className:"bg-[#f9f9f9] min-h-screen",children:d("div",{className:"px-6 sm:px-12 lg:px-20 py-8 lg:py-12 font-sans max-w-3xl mx-auto",children:[d("div",{className:"text-center mb-10",children:[n("h1",{className:"text-[22px] font-semibold mb-4",style:{fontFamily:"Sora",color:"#232323"},children:"Get Started with CodeYam Memory"}),n("p",{className:"text-[15px] text-gray-500 leading-relaxed max-w-2xl mx-auto",children:"CodeYam Memory generates path-scoped Claude Rules that load automatically when Claude works on matching files. These rules capture any confusion, architectural decisions, and tribal knowledge from your as you work with Claude, ensuring sessions become more efficient and aligned with your codebase over time."})]}),d("div",{className:"rounded-lg p-8 mb-6",style:{backgroundColor:"#EDF8FA",border:"1px solid #C8E6EC"},children:[n("h2",{className:"text-[18px] font-semibold mb-6",style:{fontFamily:"Sora",color:"#232323"},children:"Setup Steps"}),d("ol",{className:"space-y-5",children:[d("li",{className:"flex gap-3 items-start",children:[n("span",{className:"flex-shrink-0 w-7 h-7 rounded-md flex items-center justify-center text-sm font-semibold",style:{backgroundColor:"#005C75",color:"#fff"},children:"1"}),n("p",{className:"text-[14px] font-medium text-gray-900 pt-0.5",children:"Open Claude Code in your project terminal"})]}),d("li",{className:"flex gap-3 items-start",children:[n("span",{className:"flex-shrink-0 w-7 h-7 rounded-md flex items-center justify-center text-sm font-semibold",style:{backgroundColor:"#005C75",color:"#fff"},children:"2"}),d("div",{children:[d("div",{className:"flex items-center gap-2 pt-0.5",children:[n("span",{className:"text-[14px] font-medium text-gray-900",children:"Run"}),n(fl,{value:"/codeyam-memory"}),n("span",{className:"text-[14px] font-medium text-gray-900",children:"in the Claude Code session"})]}),n("p",{className:"text-[13px] text-gray-600 mt-1",children:"This kicks off analysis of your git history to find confusion patterns."})]})]}),d("li",{className:"flex gap-3 items-start",children:[n("span",{className:"flex-shrink-0 w-7 h-7 rounded-md flex items-center justify-center text-sm font-semibold",style:{backgroundColor:"#005C75",color:"#fff"},children:"3"}),d("div",{children:[n("p",{className:"text-[14px] font-medium text-gray-900 pt-0.5",children:"Return to this dashboard page to review the new rules"}),n("p",{className:"text-[13px] text-gray-600 mt-1",children:"You can review, edit, and approve the rules Claude creates."})]})]})]})]}),d("div",{className:"rounded-lg p-8 mb-6",style:{backgroundColor:"#EDF8FA",border:"1px solid #C8E6EC"},children:[n("h2",{className:"text-[18px] font-semibold mb-6",style:{fontFamily:"Sora",color:"#232323"},children:"What Gets Created"}),d("div",{className:"relative",children:[n("div",{className:"absolute left-[15px] top-8 bottom-4",style:{borderLeft:"2px dotted #B0BEC5"}}),d("div",{className:"space-y-6",children:[d("div",{className:"flex items-start gap-4 relative",children:[n("div",{className:"flex-shrink-0 w-8 h-8 rounded flex items-center justify-center",style:{backgroundColor:"#2C3E50"},children:n("div",{className:"w-3 h-3 rounded-sm bg-white/30"})}),d("div",{children:[d("p",{className:"text-[14px] font-medium text-gray-900",children:[n("code",{className:"bg-gray-200/60 px-1.5 py-0.5 rounded text-[13px]",children:".claude/rules/*.md"}),n("span",{className:"text-gray-400 mx-1.5",children:"—"}),"path-scoped guidance files"]}),n("p",{className:"text-[13px] text-gray-500 mt-1",children:"Markdown files with frontmatter specifying which file paths they apply to."})]})]}),d("div",{className:"flex items-start gap-4 relative",children:[n("div",{className:"flex-shrink-0 w-8 h-8 rounded flex items-center justify-center",style:{backgroundColor:"#2C3E50"},children:n("div",{className:"w-3 h-3 rounded-sm bg-white/30"})}),d("div",{children:[n("p",{className:"text-[14px] font-medium text-gray-900",children:"Rules load automatically when Claude works on matching files"}),n("p",{className:"text-[13px] text-gray-500 mt-1",children:"No manual steps needed — Claude picks up relevant rules based on the files it touches."})]})]}),d("div",{className:"flex items-start gap-4 relative",children:[n("div",{className:"flex-shrink-0 w-8 h-8 rounded flex items-center justify-center",style:{backgroundColor:"#2C3E50"},children:n("div",{className:"w-3 h-3 rounded-sm bg-white/30"})}),d("div",{children:[n("p",{className:"text-[14px] font-medium text-gray-900",children:"Pre-commit hook to keep rules fresh and capture new patterns"}),n("p",{className:"text-[13px] text-gray-500 mt-1",children:"A git hook runs automatically to update rules when related code changes and looks for any new patterns of confusion in work sessions."})]})]})]})]})]}),d("div",{className:"rounded-lg px-8 py-5 flex items-center justify-center gap-3",style:{backgroundColor:"#1A2332"},children:[n("span",{className:"text-white text-[15px] font-medium",children:"Run"}),n(fl,{value:"/codeyam-memory"}),n("span",{className:"text-white text-[15px] font-medium",children:"in Claude Code to get started"})]})]})})}function fl({value:e}){const[t,r]=M(!1);return d("button",{onClick:()=>{navigator.clipboard.writeText(e),r(!0),setTimeout(()=>r(!1),2e3)},className:"inline-flex items-center gap-1.5 px-2.5 py-1 rounded text-[13px] font-mono cursor-pointer border-0",style:{backgroundColor:"#2C3E50",color:"#E0E0E0"},title:"Copy to clipboard",children:[e,t?n(Ct,{className:"w-3.5 h-3.5 text-green-400"}):d("svg",{width:"14",height:"14",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",className:"text-gray-400",children:[n("rect",{x:"9",y:"9",width:"13",height:"13",rx:"2",ry:"2"}),n("path",{d:"M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1"})]})]})}function ns({label:e,count:t,icon:r,bgColor:s,iconBgColor:a,textColor:o}){return n("div",{className:"rounded-lg p-4",style:{backgroundColor:s,border:"1px solid #EFEFEF"},children:d("div",{className:"flex items-start gap-3",children:[n("div",{className:"w-12 h-12 rounded-lg flex items-center justify-center flex-shrink-0",style:{backgroundColor:a},children:r}),d("div",{className:"flex-1",children:[n("div",{className:"text-[32px] font-semibold leading-none mb-1",style:{color:o},children:t}),n("div",{className:"text-[11px] uppercase tracking-wider font-medium",style:{color:o},children:e})]})]})})}function HC({searchFilter:e,onSearchChange:t,onCreateNew:r,onLearnMore:s,reviewCounts:a}){return d("div",{className:"mb-8",children:[d("div",{className:"flex flex-wrap items-center justify-between gap-4 mb-6",children:[d("div",{children:[d("div",{className:"flex items-center gap-3 mb-2",children:[n(UC,{}),n("h1",{className:"text-[24px] font-semibold mb-0",style:{fontFamily:"Sora",color:"#232323"},children:"Memory"})]}),d("p",{className:"text-[15px] text-gray-500",children:["Rules help Claude understand your codebase patterns and conventions."," ",n("button",{onClick:s,className:"text-[#005C75] underline cursor-pointer",children:"Learn more about rules."})]})]}),d("div",{className:"flex items-center gap-3",children:[d("div",{className:"relative",children:[n(Sr,{className:"absolute left-3 top-1/2 -translate-y-1/2 w-4 h-4 text-gray-400"}),n("input",{type:"text",value:e,onChange:o=>t(o.target.value),placeholder:"Search rules...",className:"w-64 pl-10 pr-4 py-2 border border-gray-200 rounded-md bg-white focus:outline-none focus:ring-2 focus:ring-[#005C75] focus:border-transparent text-sm"})]}),d("button",{onClick:r,className:"flex items-center gap-2 px-4 py-2 rounded-md hover:opacity-90 cursor-pointer font-mono uppercase text-xs font-semibold text-white",style:{backgroundColor:"#1A2332"},children:[n(lo,{className:"w-4 h-4"}),"New Rule"]})]})]}),d("div",{className:"grid grid-cols-2 lg:grid-cols-4 gap-4",children:[n(ns,{label:"Total Rules",count:a.total,icon:n(WC,{}),bgColor:"#EDF1F3",iconBgColor:"#E0E9EC",textColor:"#005C75"}),n(ns,{label:"Unreviewed",count:a.unreviewed,icon:n(Qu,{className:"w-5 h-5 text-[#1A5276]"}),bgColor:"#E9F0FB",iconBgColor:"#DBE9FF",textColor:"#1A5276"}),n(ns,{label:"Reviewed",count:a.reviewed,icon:n(Ct,{className:"w-5 h-5 text-[#1B7A4A]"}),bgColor:"#EAFBEF",iconBgColor:"#D4EDDB",textColor:"#1B7A4A"}),n(ns,{label:"Stale",count:a.stale,icon:n(zl,{className:"w-5 h-5 text-[#5B21B6]"}),bgColor:"#EDE9FB",iconBgColor:"#DDD6FE",textColor:"#5B21B6"})]})]})}function VC({onClose:e,onCreateNew:t}){return n("div",{className:"fixed inset-0 bg-black/50 flex items-center justify-center z-50",onClick:e,children:d("div",{className:"bg-white rounded-lg p-8 max-w-xl w-full mx-4 relative",onClick:r=>r.stopPropagation(),children:[n("button",{onClick:e,className:"absolute top-4 right-4 text-gray-400 hover:text-gray-600 cursor-pointer",children:n(Yn,{className:"w-6 h-6"})}),n("h2",{className:"text-xl font-bold mb-4",children:"What are Claude Rules?"}),n("h3",{className:"mb-4 font-semibold",children:"And how does CodeYam Memory work with Claude Rules?"}),d("div",{className:"text-gray-600 text-[15px] space-y-3 mb-6",children:[d("p",{children:["Claude Rules are a component of"," ",n("a",{href:"https://code.claude.com/docs/en/memory#modular-rules-with-claude%2Frules%2F",target:"_blank",rel:"noopener noreferrer",className:"text-blue-600 underline",children:"Memory Management in Claude Code"}),'. The text of each rule is passed into the context window when working on the specific files described in the "paths" frontmatter field of the rule.']}),n("p",{children:"This allows you to provide context that is surgically specific to certain files in your codebase. They are a powerful tool but are harder to write and maintain than CLAUDE.md files."}),n("p",{children:"CodeYam Memory helps write and maintain Claude Rules. Hooks ensure that rules are reviewed and added during Claude Code working sessions. The CodeYam CLI Dashboard provides a page dedicated to Memory where you can view, edit, create, delete, and review Claude Rules."})]}),n("div",{className:"flex justify-center",children:d("button",{onClick:t,className:"flex items-center gap-2 px-5 py-2.5 rounded-md hover:opacity-90 cursor-pointer font-mono uppercase text-xs font-semibold text-white",style:{backgroundColor:"#1A2332"},children:[n(lo,{className:"w-4 h-4"}),"New Rule"]})})]})})}function GC({rule:e,onConfirm:t,onCancel:r}){return n("div",{className:"fixed inset-0 bg-black/50 flex items-center justify-center z-50",children:d("div",{className:"bg-white rounded-lg p-6 max-w-md w-full mx-4",children:[n("h3",{className:"text-lg font-semibold mb-2",children:"Delete Memory?"}),d("p",{className:"text-gray-600 mb-4",children:["Are you sure you want to delete"," ",n("span",{className:"font-mono text-sm",children:e.filePath}),"? This cannot be undone."]}),d("div",{className:"flex justify-end gap-2",children:[n("button",{onClick:r,className:"px-4 py-2 text-gray-600 hover:bg-gray-100 rounded-md cursor-pointer",children:"Cancel"}),n("button",{onClick:()=>t(e),className:"px-4 py-2 bg-red-600 text-white rounded-md hover:bg-red-700 cursor-pointer",children:"Delete"})]})]})})}const gl="Can you help me perform an interactive rules audit? Please look at all of the rules in `.claude/rules`. Are they organized properly? Ideally they should be in a folder that is the best representation of the files they impact (e.g. if the rule impacts `folder1/folder2/file1` and `folder1/folder2/folder3/file2` then the rule should be in `.claude/rules/folder1/folder2`). Do they make sense? Are they oriented toward avoiding future confusion (vs documenting bug fixes or temporary workarounds, etc)? Please literally read each one to ensure you understand what it is saying and learn something useful from it. Are they concise and efficient in their communication? We want to be respectful of the context window so any information in a rule that does not make sense, is not particularly helpful, or is repetitive should be removed. All other information should be presented as directly as possible. Bullets and tables can help with this as opposed to paragraphs. Take into consideration how rules interact as any one file may have multiple rules applied to it. Please look at the impacted files as well to ensure that it is an appropriate rule for them and to ensure the rule is not just repeating information that can be ascertained from the code. We don't want Claude to have to read a large number of files (or a single very large file) to figure out how everything works, so architectural guidance can be quite valuable, but information that is specific to one file and can be ascertained by the code and comments in that file is unnecessary. Too often rules reflect past confusion that has been resolved and is unlikely to happen again. Content and rules like this should be removed. If you have any questions please ask!",yl="Can you mark all of these rules as reviewed in `.claude/codeyam-rule-state.json`?";function xl({text:e}){const[t,r]=M(!1);return n("button",{onClick:()=>{navigator.clipboard.writeText(e),r(!0),setTimeout(()=>r(!1),2e3)},className:"flex items-center gap-2 px-4 py-2 rounded-md hover:opacity-90 cursor-pointer font-mono uppercase text-xs font-semibold text-white",style:{backgroundColor:"#1A2332"},children:t?d(ye,{children:[n(Ct,{className:"w-4 h-4"}),"Copied!"]}):d(ye,{children:[n(Pt,{className:"w-4 h-4"}),"Copy Prompt"]})})}function KC({onClose:e}){return n("div",{className:"fixed inset-0 bg-black/50 flex items-center justify-center z-50",onClick:e,children:d("div",{className:"bg-white rounded-lg p-8 max-w-xl w-full mx-4 relative max-h-[90vh] overflow-y-auto",onClick:t=>t.stopPropagation(),children:[n("button",{onClick:e,className:"absolute top-4 right-4 text-gray-400 hover:text-gray-600 cursor-pointer",children:n(Yn,{className:"w-6 h-6"})}),n("h2",{className:"text-xl font-bold mb-2",children:"Audit All Rules"}),n("p",{className:"text-gray-600 text-sm mb-4",children:"Claude can review all rules to look for information that is inconsistent, inappropriate, duplicative, inefficient, etc."}),n("textarea",{readOnly:!0,value:gl,className:"w-full h-48 p-3 text-sm font-mono bg-gray-50 border border-gray-200 rounded-md resize-none focus:outline-none"}),n("div",{className:"flex justify-end mt-3",children:n(xl,{text:gl})}),d("div",{className:"border-t border-gray-200 mt-6 pt-5",children:[n("p",{className:"text-gray-500 text-sm mb-3",children:"If you would like to avoid reviewing all of the changes Claude makes you can ask Claude to mark all rules as reviewed."}),n("textarea",{readOnly:!0,value:yl,className:"w-full h-16 p-3 text-sm font-mono bg-gray-50 border border-gray-200 rounded-md resize-none focus:outline-none"}),n("div",{className:"flex justify-end mt-3",children:n(xl,{text:yl})})]})]})})}function qC(){const[e,t]=M(!1);return d(ye,{children:[d("div",{className:"border border-gray-200 rounded-lg px-5 py-4 flex items-center gap-3",children:[n("h3",{className:"text-[14px] leading-6 text-[#232323] flex-shrink-0",style:{fontFamily:"Sora",fontWeight:600},children:"Audit All Rules"}),n("p",{className:"text-sm text-gray-500",children:"Ask Claude to review, audit, and improve all rules."}),n("button",{onClick:()=>t(!0),className:"px-4 py-2 text-xs font-medium text-[#005C75] border border-[#005C75] rounded hover:bg-[#f0f9ff] cursor-pointer flex-shrink-0",children:"Get Prompt"})]}),e&&n(KC,{onClose:()=>t(!1)})]})}function QC(e){return`Can you help me review my unreviewed rules? The following rules in \`.claude/rules\` have not been reviewed yet:
|
|
491
|
+
|
|
492
|
+
${e.map(r=>`- \`.claude/rules/${r}\``).join(`
|
|
493
|
+
`)}
|
|
494
|
+
|
|
495
|
+
Are they organized properly? Ideally they should be in a folder that is the best representation of the files they impact (e.g. if the rule impacts \`folder1/folder2/file1\` and \`folder1/folder2/folder3/file2\` then the rule should be in \`.claude/rules/folder1/folder2\`). Do they make sense? Are they oriented toward avoiding future confusion (vs documenting bug fixes or temporary workarounds, etc)? Please literally read each one to ensure you understand what it is saying and learn something useful from it. Are they concise and efficient in their communication? We want to be respectful of the context window so any information in a rule that does not make sense, is not particularly helpful, or is repetitive should be removed. All other information should be presented as directly as possible. Bullets and tables can help with this as opposed to paragraphs. Take into consideration how rules interact as any one file may have multiple rules applied to it. Please look at the impacted files as well to ensure that it is an appropriate rule for them and to ensure the rule is not just repeating information that can be ascertained from the code. We don't want Claude to have to read a large number of files (or a single very large file) to figure out how everything works, so architectural guidance can be quite valuable, but information that is specific to one file and can be ascertained by the code and comments in that file is unnecessary. Too often rules reflect past confusion that has been resolved and is unlikely to happen again. Content and rules like this should be removed. If you have any questions please ask!`}const bl="Can you mark all of these rules as reviewed in `.claude/codeyam-rule-state.json`?";function wl({text:e}){const[t,r]=M(!1);return n("button",{onClick:()=>{navigator.clipboard.writeText(e),r(!0),setTimeout(()=>r(!1),2e3)},className:"flex items-center gap-2 px-4 py-2 rounded-md hover:opacity-90 cursor-pointer font-mono uppercase text-xs font-semibold text-white",style:{backgroundColor:"#1A2332"},children:t?d(ye,{children:[n(Ct,{className:"w-4 h-4"}),"Copied!"]}):d(ye,{children:[n(Pt,{className:"w-4 h-4"}),"Copy Prompt"]})})}function ZC({onClose:e,unreviewedRulePaths:t}){const r=QC(t);return n("div",{className:"fixed inset-0 bg-black/50 flex items-center justify-center z-50",onClick:e,children:d("div",{className:"bg-white rounded-lg p-8 max-w-xl w-full mx-4 relative max-h-[90vh] overflow-y-auto",onClick:s=>s.stopPropagation(),children:[n("button",{onClick:e,className:"absolute top-4 right-4 text-gray-400 hover:text-gray-600 cursor-pointer",children:n(Yn,{className:"w-6 h-6"})}),n("h2",{className:"text-xl font-bold mb-2",children:"Audit Unreviewed Rules"}),d("p",{className:"text-gray-600 text-sm mb-4",children:["Claude will review only the ",t.length," unreviewed"," ",t.length===1?"rule":"rules"," for quality, relevance, and organization."]}),n("textarea",{readOnly:!0,value:r,className:"w-full h-48 p-3 text-sm font-mono bg-gray-50 border border-gray-200 rounded-md resize-none focus:outline-none"}),n("div",{className:"flex justify-end mt-3",children:n(wl,{text:r})}),d("div",{className:"border-t border-gray-200 mt-6 pt-5",children:[n("p",{className:"text-gray-500 text-sm mb-3",children:"If you would like to avoid reviewing all of the changes Claude makes you can ask Claude to mark all rules as reviewed."}),n("textarea",{readOnly:!0,value:bl,className:"w-full h-16 p-3 text-sm font-mono bg-gray-50 border border-gray-200 rounded-md resize-none focus:outline-none"}),n("div",{className:"flex justify-end mt-3",children:n(wl,{text:bl})})]})]})})}function XC({unreviewedRulePaths:e}){const[t,r]=M(!1);return e.length===0?d("div",{className:"border border-gray-200 rounded-lg px-5 py-4 flex items-center gap-3 opacity-50",children:[n("h3",{className:"text-[14px] leading-6 text-[#232323] flex-shrink-0",style:{fontFamily:"Sora",fontWeight:600},children:"Audit Unreviewed Rules"}),n("p",{className:"text-sm text-gray-500",children:"All rules have been reviewed."})]}):d(ye,{children:[d("div",{className:"border border-gray-200 rounded-lg px-5 py-4 flex items-center gap-3",children:[n("h3",{className:"text-[14px] leading-6 text-[#232323] flex-shrink-0",style:{fontFamily:"Sora",fontWeight:600},children:"Audit Unreviewed Rules"}),d("p",{className:"text-sm text-gray-500",children:["Ask Claude to review the ",e.length," unreviewed"," ",e.length===1?"rule":"rules","."]}),n("button",{onClick:()=>r(!0),className:"px-4 py-2 text-xs font-medium text-[#005C75] border border-[#005C75] rounded hover:bg-[#f0f9ff] cursor-pointer flex-shrink-0",children:"Get Prompt"})]}),t&&n(ZC,{onClose:()=>r(!1),unreviewedRulePaths:e})]})}const eS=()=>[{title:"Memory - CodeYam"},{name:"description",content:"Manage Claude Memory documentation"}];async function tS({request:e}){try{const r=await(await fetch(new URL("/api/memory",e.url).toString())).json();return r.error?X({memories:[],reviewedStatus:{},memoryInitialized:r.memoryInitialized??!1,error:r.error}):r.memoryInitialized??!1?X({memories:r.memories||[],reviewedStatus:r.reviewedStatus||{},memoryInitialized:!0,error:null}):X({memories:[],reviewedStatus:{},memoryInitialized:!1,error:null})}catch(t){return console.error("Failed to load memories:",t),X({memories:[],reviewedStatus:{},memoryInitialized:!1,error:"Failed to load memories"})}}const nS=Qe(function(){const{memories:t,reviewedStatus:r,memoryInitialized:s,error:a}=tt(),o=Je(),i=Yt(),[l,c]=M(""),[p,u]=M(null),[h,m]=M(new Set(["root"])),[f,g]=M(null),[y,x]=M(!1),[w,b]=M(null),[v,N]=M(0),[k,E]=M(!1),[C,S]=M(null),[_,j]=M(null),[$,P]=M({}),I=B=>{m(D=>{const O=new Set(D);return O.has(B)?O.delete(B):O.add(B),O})};$t({source:"memory-page"});const R=ae(()=>({...r,...$}),[r,$]),T=fe(o.state);se(()=>{const B=T.current==="loading"||T.current==="submitting",D=o.state==="idle";B&&D&&o.data&&(i.revalidate(),g(null),x(!1),N(O=>O+1)),T.current=o.state},[o.state,o.data,i]),se(()=>{P(B=>{const D={};for(const[O,q]of Object.entries(B))r[O]!==q&&(D[O]=q);return Object.keys(D).length===Object.keys(B).length?B:D})},[r]);const G=(B,D)=>{P(O=>({...O,[B]:!0})),o.submit({action:"mark-reviewed",filePath:B,lastModified:D},{method:"POST",action:"/api/memory",encType:"application/json"})},J=B=>{P(D=>({...D,[B]:!1})),o.submit({action:"mark-unreviewed",filePath:B},{method:"POST",action:"/api/memory",encType:"application/json"})},F=(B,D)=>{S(B),j(D??null)},H=ae(()=>{let B=t;if(l.trim()){const D=l.toLowerCase();B=B.filter(O=>{var re;return(((re=O.filePath.split("/").pop())==null?void 0:re.replace(".md",""))||"").toLowerCase().includes(D)||O.body.toLowerCase().includes(D)})}return B},[t,l]),U=ae(()=>p?H.some(D=>D.filePath===p)?H.filter(D=>D.filePath===p):H.filter(D=>D.filePath.startsWith(p+"/")||D.filePath===p):H,[H,p]),z=(B,D)=>{const O=f?"update":"create";o.submit({action:O,filePath:B,content:D},{method:"POST",action:"/api/memory",encType:"application/json"})},A=B=>{o.submit({action:"delete",filePath:B.filePath},{method:"POST",action:"/api/memory",encType:"application/json"}),b(null)},Y=ae(()=>{const B=t.filter(D=>R[D.filePath]).length;return{total:t.length,reviewed:B,unreviewed:t.length-B,stale:0}},[t,R]),V=ae(()=>{const B=new Set(["root"]);for(const D of H){const O=D.filePath.split("/");O.pop();let q="";for(const re of O)q=q?`${q}/${re}`:re,B.add(q)}return B},[H]),W=V.size===h.size&&[...V].every(B=>h.has(B)),Q=()=>{m(W?new Set(["root"]):new Set(V))};return a?n("div",{className:"bg-[#F8F7F6] min-h-screen",children:d("div",{className:"px-12 py-6 font-sans",children:[n("h1",{className:"text-[28px] font-semibold text-gray-900",children:"Error"}),n("p",{className:"text-base text-gray-500",children:a})]})}):s?n("div",{className:"bg-[#f9f9f9] min-h-screen",children:d("div",{className:"px-6 sm:px-12 lg:px-20 py-8 lg:py-12 font-sans",children:[n(HC,{searchFilter:l,onSearchChange:c,onCreateNew:()=>x(!0),onLearnMore:()=>E(!0),reviewCounts:Y}),(y||f)&&n("div",{className:"fixed inset-0 flex items-center justify-center z-[9999] p-4",style:{backgroundColor:"rgba(0, 0, 0, 0.8)"},onClick:()=>{x(!1),g(null)},children:n("div",{className:"bg-white rounded-lg shadow-xl max-w-4xl w-full max-h-[90vh] overflow-auto",onClick:B=>B.stopPropagation(),children:n(RC,{rule:f,onSave:z,onCancel:()=>{x(!1),g(null)}})})}),d("div",{className:"grid grid-cols-1 lg:grid-cols-2 gap-6 lg:gap-8 mb-8",children:[n(FC,{memories:H,reviewedStatus:R,onViewRule:F,refreshKey:v}),n(BC,{onEditRule:g,onDeleteRule:b,refreshKey:v,reviewedStatus:R,onMarkReviewed:G,onMarkUnreviewed:J,memories:t,onViewRule:F})]}),d("div",{className:"grid grid-cols-1 lg:grid-cols-2 gap-6 lg:gap-8 mb-8",children:[n(XC,{unreviewedRulePaths:t.filter(B=>!R[B.filePath]).map(B=>B.filePath)}),n(qC,{})]}),d("div",{className:"flex items-center justify-between mb-4",children:[n("h2",{className:"text-xl leading-6 text-[#232323]",style:{fontFamily:"Sora",fontWeight:600},children:"All Rules"}),n("div",{className:"flex items-center gap-4",children:V.size>1&&n("button",{onClick:Q,className:"text-xs text-[#005C75] hover:underline cursor-pointer font-mono uppercase font-semibold",children:W?"Collapse All":"Expand All"})})]}),d("div",{className:"flex gap-6",children:[n("div",{className:"hidden lg:block w-80 flex-shrink-0",children:n(DC,{memories:H,selectedPath:p,onSelectPath:u,expandedFolders:h,onToggleFolder:I})}),n("div",{className:"flex-1 min-w-0",children:t.length===0?d("div",{className:"bg-white rounded-lg border border-gray-200 p-12 text-center",children:[n(Zu,{className:"w-12 h-12 text-gray-300 mx-auto mb-4"}),n("h3",{className:"text-lg font-medium text-gray-900 mb-2",children:"No Rules Yet"}),d("p",{className:"text-gray-500 mb-4",children:["Run"," ",n("code",{className:"bg-gray-100 px-2 py-1 rounded",children:"/codeyam-memory"})," ","to generate initial memories for your codebase."]}),d("button",{onClick:()=>x(!0),className:"inline-flex items-center gap-2 px-4 py-2 bg-[#005C75] text-white rounded-md hover:bg-[#004a5e] cursor-pointer",children:[n(lo,{className:"w-4 h-4"}),"Create Your First Memory"]})]}):d("div",{children:[p&&d("div",{className:"flex items-center gap-2 text-sm text-gray-600 mb-4",children:["Showing rules in"," ",n("span",{className:"font-mono bg-gray-100 px-1.5 py-0.5 rounded",children:p||"(root)"}),n("button",{onClick:()=>u(null),className:"text-[#005C75] hover:underline cursor-pointer",children:"Clear filter"})]}),n(OC,{memories:U,onEdit:g,onDelete:b,expandedFolders:h,onToggleFolder:I,reviewedStatus:R,onMarkReviewed:G,onMarkUnreviewed:J,onViewRule:F})]})})]}),n("div",{className:"mt-8 mb-8",children:n(ve,{to:"/agent-transcripts",className:"block bg-white border border-gray-200 rounded-lg p-5 hover:border-[#005C75] hover:shadow-sm transition-all group",children:d("div",{className:"flex items-center gap-3",children:[n("div",{className:"w-10 h-10 rounded-lg bg-[#EDF1F3] flex items-center justify-center",children:d("svg",{width:"20",height:"20",viewBox:"0 0 24 24",fill:"none",stroke:"#005C75",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round",children:[n("polyline",{points:"4 17 10 11 4 5"}),n("line",{x1:"12",y1:"19",x2:"20",y2:"19"})]})}),d("div",{children:[n("h3",{className:"text-sm font-semibold text-[#232323] group-hover:text-[#005C75]",style:{fontFamily:"Sora"},children:"Agent Transcripts"}),n("p",{className:"text-xs text-gray-500",children:"View background agent transcripts and tool call history"})]})]})})}),C&&!f&&(()=>{const B=t.find(D=>D.filePath===C.filePath)??C;return n(YC,{rule:B,changeInfo:_??void 0,isReviewed:R[B.filePath]??!1,onApprove:()=>{R[B.filePath]??!1?J(B.filePath):G(B.filePath,B.lastModified),S(null)},onEdit:()=>{g(B)},onDelete:()=>{b(B),S(null)},onClose:()=>S(null)})})(),k&&n(VC,{onClose:()=>E(!1),onCreateNew:()=>{E(!1),x(!0)}}),w&&n(GC,{rule:w,onConfirm:A,onCancel:()=>b(null)})]})}):n(JC,{})}),rS=Object.freeze(Object.defineProperty({__proto__:null,default:nS,loader:tS,meta:eS},Symbol.toStringTag,{value:"Module"}));function Ma(e){return`${e.filePath||""}::${e.name}`}function Wd(e,t){const r=Je(),{showToast:s}=xo(),[a,o]=M(new Map);se(()=>{if(r.state==="idle"&&r.data){const m=r.data;m!=null&&m.error&&s(`Error: ${m.error}`,"error",6e3)}},[r.state,r.data,s]),se(()=>{var f;if(a.size===0)return;const m=new Set;(f=t==null?void 0:t.jobs)==null||f.forEach(g=>{var y;(y=g.entityShas)==null||y.forEach(x=>{a.forEach((w,b)=>{w===x&&m.add(b)})})}),e==null||e.forEach(g=>{a.forEach((y,x)=>{y===g&&m.add(x)})}),m.size>0&&o(g=>{const y=new Map(g);return m.forEach(x=>y.delete(x)),y})},[t,e,a]);const i=ie(m=>{console.log("Generate analysis clicked for entity:",m.sha,m.name);const f=Ma(m);o(y=>new Map(y).set(f,m.sha));const g=new FormData;g.append("entitySha",m.sha),g.append("filePath",m.filePath||""),r.submit(g,{method:"post",action:"/api/analyze"})},[r]),l=ie(m=>{const f=m.filter(x=>x.entityType==="visual"||x.entityType==="library");console.log("Generate analysis for all entities:",f.length),o(x=>{const w=new Map(x);return f.forEach(b=>w.set(Ma(b),b.sha)),w});const g=f.map(x=>x.sha).join(","),y=new FormData;y.append("entityShas",g),r.submit(y,{method:"post",action:"/api/analyze"})},[r]),c=ie(m=>(e==null?void 0:e.includes(m))??!1,[e]),p=ie(m=>{const f=Ma(m);return a.has(f)},[a]),u=ie(m=>{var f;return((f=t==null?void 0:t.jobs)==null?void 0:f.some(g=>{var y;return(y=g.entityShas)==null?void 0:y.includes(m)}))??!1},[t]),h=ae(()=>Array.from(a.keys()),[a]);return{isAnalyzing:r.state!=="idle",handleGenerateSimulation:i,handleGenerateAllSimulations:l,isEntityBeingAnalyzed:c,isEntityPending:p,isEntityInQueue:u,pendingEntityKeys:h}}function Xo({showActions:e=!1,sortOrder:t="desc",onSortChange:r,onAnalyzeAll:s,analyzeAllDisabled:a=!1,analyzeAllText:o="Analyze All"}){return n("div",{className:"bg-[#efefef] rounded-lg mb-2 text-[11px] font-normal leading-[16px] text-[#3e3e3e] uppercase",children:d("div",{className:"flex justify-between items-center px-3 py-2",children:[d("div",{className:"flex items-center gap-2 flex-1 min-w-0",children:[n("span",{className:"w-4"}),n("span",{children:"FILE"})]}),d("div",{className:"flex items-center gap-3 shrink-0",children:[n("div",{className:"flex items-center justify-center h-[38px]",style:{width:"100px"},children:n("span",{children:"STATE"})}),n("div",{className:"flex items-center justify-center h-[38px]",style:{width:"70px"},children:n("span",{children:"SIMULATIONS"})}),d("div",{className:"flex gap-4 items-center",children:[n("span",{className:"text-center",style:{width:"70px"},children:"ENTITIES"}),d("div",{className:"flex items-center justify-center gap-1 cursor-pointer hover:text-[#232323] transition-colors",style:{width:"116px"},onClick:r,role:"button",tabIndex:0,onKeyDown:i=>{(i.key==="Enter"||i.key===" ")&&(i.preventDefault(),r==null||r())},children:[n("span",{children:"MODIFIED"}),n("svg",{width:"12",height:"12",viewBox:"0 0 12 12",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{transform:t==="asc"?"rotate(180deg)":"rotate(0deg)",transition:"transform 0.2s ease"},children:n("path",{d:"M3 5L6 8L9 5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})})]}),e&&n("div",{className:"text-center",style:{width:"127px"},children:s&&n("button",{onClick:s,disabled:a,className:"bg-[#005c75] text-white rounded text-[12px] font-['IBM_Plex_Sans'] font-normal hover:bg-[#004a5e] transition-colors cursor-pointer disabled:bg-gray-400 disabled:cursor-not-allowed whitespace-nowrap px-3 py-1.5 normal-case",title:a?o:"Analyze all entities",children:o})})]})]})]})})}function sS({status:e,variant:t="compact"}){const r={modified:{label:"M",bgColor:"bg-[#f59e0c]"},added:{label:"A",bgColor:"bg-emerald-500"},deleted:{label:"D",bgColor:"bg-red-500",showWarning:!0},renamed:{label:"R",bgColor:"bg-indigo-500"},untracked:{label:"U",bgColor:"bg-purple-500"}},s={modified:{label:"MODIFIED",textColor:"#BB6BD9"},added:{label:"ADDED",textColor:"#F2994A"},deleted:{label:"DELETED",textColor:"#EF4444"},renamed:{label:"RENAMED",textColor:"#3B82F6"},untracked:{label:"UNTRACKED",textColor:"#6B7280"}};if(t==="full"){const o=s[e]||{label:"UNKNOWN",textColor:"#6B7280"};return n("div",{className:"bg-[#f9f9f9] inline-flex items-center justify-center px-[5px] py-0 rounded",style:{height:"22px"},children:n("span",{className:"text-[10px] font-['IBM_Plex_Sans'] font-medium leading-[22px]",style:{color:o.textColor},children:o.label})})}const a=r[e]||{label:"?",bgColor:"bg-gray-500"};return d("div",{className:"inline-flex items-center gap-1",children:[n("span",{className:`inline-flex items-center justify-center w-5 h-5 text-[11px] font-bold text-white rounded ${a.bgColor}`,title:e,children:a.label}),a.showWarning&&n("span",{className:"inline-flex items-center justify-center w-3 h-3 text-[10px] text-amber-600",title:"Warning: File will be deleted",children:"⚠"})]})}function ei({filePath:e,isExpanded:t,onToggle:r,fileStatus:s,simulationPreviews:a,entityCount:o,state:i,lastModified:l,actionButton:c,uncommittedCount:p,children:u,isNotAnalyzable:h=!1,isUncommitted:m=!1}){return d("div",{className:"bg-white overflow-hidden",style:t?{border:"1px solid #e1e1e1",borderLeft:"4px solid #005C75",borderRadius:"8px"}:{borderBottom:"1px solid #e1e1e1"},children:[d("div",{className:`flex justify-between items-center p-3 cursor-pointer select-none transition-colors ${h?"opacity-50":"hover:bg-gray-200"}`,style:{outlineColor:"#005C75"},onClick:r,role:"button",tabIndex:0,onKeyDown:f=>{(f.key==="Enter"||f.key===" ")&&(f.preventDefault(),r())},children:[d("div",{className:"flex items-center gap-2 flex-1 min-w-0",children:[n("span",{className:"w-4 inline-flex items-center justify-center shrink-0",style:{transform:t?"rotate(90deg)":"none"},children:n("svg",{width:"10",height:"12",viewBox:"0 0 10 12",fill:"none",xmlns:"http://www.w3.org/2000/svg",children:n("path",{d:"M1.5 1.268L8.5 6L1.5 10.732V1.268Z",fill:t?"#3e3e3e":"#c7c7c7"})})}),n("img",{src:"/icons/file-icon.svg",alt:"file",className:"w-4 h-5 shrink-0"}),n(ql,{filePath:e}),s&&n(sS,{status:typeof s=="string"?s:s.status,variant:"full"}),m&&i==="out-of-date"&&n("span",{className:"text-[11px] px-2 rounded inline-flex items-center gap-1.5 whitespace-nowrap",style:{backgroundColor:"#fdf9c9",color:"#c69538",height:"22px"},children:"Out of date"})]}),d("div",{className:"flex items-center gap-3 shrink-0",children:[n("div",{className:"flex items-center justify-center h-[38px]",style:{width:"100px"},children:(m||i==="out-of-date")&&d("div",{className:"flex gap-1.5 items-center",children:[m&&n("span",{className:"text-[11px] px-2 rounded inline-flex items-center gap-1.5 whitespace-nowrap",style:{backgroundColor:"#fff3cd",color:"#856404",height:"22px"},children:"Uncommitted"}),i==="out-of-date"&&!m&&n("span",{className:"text-[11px] px-2 rounded inline-flex items-center gap-1.5 whitespace-nowrap",style:{backgroundColor:"#fdf9c9",color:"#c69538",height:"22px"},children:"Out of date"})]})}),n("div",{className:"flex items-center justify-center h-[38px]",style:{width:"70px"},children:a}),d("div",{className:"flex gap-4 items-center",children:[n("div",{className:"flex items-center justify-center",style:{width:"70px"},children:n("div",{className:"bg-[#f9f9f9] flex items-center justify-center px-2 rounded whitespace-nowrap",style:{height:"26px"},children:d("span",{className:"text-[13px] text-[#3e3e3e]",children:[o," ",o===1?"entity":"entities"]})})}),n("div",{className:"text-[12px] text-gray-600 text-center",style:{width:"116px"},children:Td(l)}),n("div",{style:{width:"127px"},className:"flex justify-center",children:c})]})]})]}),t&&u&&n("div",{className:"bg-gray-50 py-2 rounded-bl-[4px] rounded-br-[4px] flex flex-col gap-1",children:u})]})}function ti({entities:e,maxPreviews:t=3}){var s,a,o,i,l;const r=[];for(const c of e){if(r.length>=t)break;const p=((a=(s=c.analyses)==null?void 0:s[0])==null?void 0:a.scenarios)||[];if(c.entityType==="library"){const u=p.find(h=>{var m,f;return((m=h.metadata)==null?void 0:m.executionResult)||((f=h.metadata)==null?void 0:f.error)});u&&r.push({type:"library",scenario:u,entitySha:c.sha})}else if(c.entityType==="visual"){const u=p.find(h=>{var m,f;return(f=(m=h.metadata)==null?void 0:m.screenshotPaths)==null?void 0:f[0]});if(u){const h=(i=(o=u.metadata)==null?void 0:o.screenshotPaths)==null?void 0:i[0],m=!!((l=u.metadata)!=null&&l.error);h&&r.push({type:"screenshot",screenshot:h,hasError:m,scenario:u,entitySha:c.sha})}}}return r.length===0?n("span",{className:"text-gray-400 font-light text-[14px]",children:"—"}):n(ye,{children:r.map((c,p)=>{if(c.type==="screenshot"&&c.screenshot){const u=c.hasError?"border-red-400":"border-gray-200";return d(ve,{to:c.scenario?`/entity/${c.entitySha}/scenarios/${c.scenario.id}`:`/entity/${c.entitySha}`,className:`relative w-[50px] h-[38px] border ${u} rounded overflow-hidden bg-gray-50 shrink-0 flex items-center justify-center cursor-pointer transition-all hover:scale-105 hover:shadow-md`,onClick:h=>h.stopPropagation(),children:[n(rt,{screenshotPath:c.screenshot,alt:`Preview ${p+1}`,className:"max-w-full max-h-full object-contain object-center"}),c.hasError&&n("div",{className:"absolute top-0 right-0 w-4 h-4 bg-red-500 text-white flex items-center justify-center text-[10px] rounded-bl",title:"Error during capture",children:n(ls,{size:12,color:"white"})})]},`screenshot-${p}`)}return c.type==="library"&&c.scenario&&c.entitySha?n(Pd,{scenario:c.scenario,entitySha:c.entitySha,size:"small",showBorder:!0},`library-${p}`):null})})}function ni({entity:e,isActivelyAnalyzing:t,isQueued:r,onGenerateSimulation:s}){var u,h;const a=t||r?[{entityShas:[e.sha]}]:[],o=bt(e,a,t),i=e.entityType==="visual"||e.entityType==="library",l=i&&(o==="not-analyzed"||o==="out-of-date")&&!t&&!r,p=(((h=(u=e.analyses)==null?void 0:u[0])==null?void 0:h.scenarios)||[]).filter(m=>{var f,g;return(g=(f=m.metadata)==null?void 0:f.screenshotPaths)==null?void 0:g[0]});return d("div",{className:"bg-white rounded-lg",children:[d(ve,{to:`/entity/${e.sha}`,className:"flex items-center justify-between p-3 transition-colors hover:bg-gray-100 cursor-pointer",children:[d("div",{className:"flex items-center gap-2 flex-1 min-w-0",children:[n("span",{className:"w-4 shrink-0"}),e.entityType==="type"?n("div",{className:"bg-[#ffe1e1] inline-flex items-center justify-center px-[4px] rounded-[4px]",style:{height:"18px",width:"18px"},children:n("div",{className:"w-[10px] h-[10px] flex items-center justify-center",children:n(ut,{type:"type"})})}):n(ut,{type:e.entityType||"other"}),n("span",{className:`font-['IBM_Plex_Sans'] text-[14px] leading-[18px] text-black ${i?"font-medium":"font-normal"}`,children:e.name}),n(Jo,{type:e.entityType||"other"})]}),d("div",{className:"flex items-center gap-3 shrink-0",children:[n("div",{style:{width:"160px"}}),d("div",{className:"flex gap-4 items-center",children:[n("div",{style:{width:"70px"}}),n("div",{style:{width:"116px"}}),n("div",{style:{width:"127px"},className:"flex justify-center items-center",children:i?o==="queued"?d("span",{className:"text-[13px] px-2 rounded inline-flex items-center gap-1.5 whitespace-nowrap",style:{backgroundColor:"#cbf3fa",color:"#3098b4",height:"26px"},children:[d("svg",{width:"14",height:"14",viewBox:"0 0 24 24",fill:"none",stroke:"#3098b4",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",children:[n("circle",{cx:"12",cy:"12",r:"10"}),n("polyline",{points:"12,6 12,12 16,14"})]}),"Queued"]}):o==="analyzing"?d("span",{className:"text-[13px] px-2 rounded inline-flex items-center gap-1.5 whitespace-nowrap",style:{backgroundColor:"#ffdbf6",color:"#ff2ab5",height:"26px"},children:[d("svg",{width:"8",height:"8",viewBox:"0 0 9 9",fill:"none",className:"animate-spin",children:[n("circle",{cx:"4.5",cy:"4.5",r:"3.5",stroke:"#FFF4FC",strokeWidth:"1",fill:"none"}),n("path",{d:"M4.5 1C2.57 1 1 2.57 1 4.5C1 5.6 1.5 6.58 2.28 7.23",stroke:"#FF2AB5",strokeWidth:"1",strokeLinecap:"round",fill:"none"})]}),"Analyzing..."]}):o==="up-to-date"?n("span",{className:"text-[13px] px-2 rounded inline-flex items-center gap-1.5 whitespace-nowrap",style:{backgroundColor:"#e8ffe6",color:"#00925d",height:"26px"},children:"Up to date"}):o==="out-of-date"?n("button",{onClick:m=>{m.preventDefault(),m.stopPropagation(),s(e)},className:"bg-[#e0e9ec] text-[#005c75] rounded text-[12px] font-['IBM_Plex_Sans'] font-normal hover:bg-[#d0dfe5] transition-colors cursor-pointer px-[15px] py-0 h-[28px]",children:"Re-Analyze"}):l&&n("button",{onClick:m=>{m.preventDefault(),m.stopPropagation(),s(e)},className:"bg-[#e0e9ec] text-[#005c75] rounded text-[12px] font-['IBM_Plex_Sans'] font-normal hover:bg-[#d0dfe5] transition-colors cursor-pointer px-[15px] py-0 h-[28px]",children:"Analyze"}):n("span",{className:"text-[12px] text-gray-400",children:"Not Analyzable"})})]})]})]}),p.length>0&&n("div",{className:"px-3 pb-3 pt-0 flex items-center gap-2 pl-[52px]",children:p.map((m,f)=>{var y,x;const g=(x=(y=m.metadata)==null?void 0:y.screenshotPaths)==null?void 0:x[0];return g?n(ve,{to:`/entity/${e.sha}?scenario=${m.id}`,className:"relative w-[120px] h-[90px] border border-gray-200 rounded overflow-hidden bg-gray-50 shrink-0 flex items-center justify-center hover:border-gray-400 transition-colors",onClick:w=>w.stopPropagation(),children:n(rt,{screenshotPath:g,alt:m.name,className:"max-w-full max-h-full object-contain object-center"})},m.id):null})})]})}function aS({entities:e,page:t,itemsPerPage:r=50,currentRun:s,filter:a,entityType:o,queueState:i,isEntityPending:l,pendingEntityKeys:c,onGenerateSimulation:p,onGenerateAllSimulations:u,totalFilesCount:h,totalEntitiesCount:m,uncommittedFilesCount:f,showOnlyUncommitted:g,onToggleUncommitted:y}){const[x,w]=Bn(),[b,v]=M(new Set),[N,k]=M(""),[E,C]=M(!1),[S,_]=M("all"),[j,$]=M("desc"),P=o||"all",I=ae(()=>{let A=e;return P!=="all"&&(A=A.filter(Y=>Y.entityType===P)),a==="analyzed"&&(A=A.filter(Y=>Y.analyses&&Y.analyses.length>0)),A},[e,P,a]),R=ae(()=>{const A=new Map,Y=new Map,V=new Map;I.forEach(D=>{var re,le;const O=`${D.filePath}::${D.name}`,q=Y.get(O);if(!q)Y.set(O,D),V.set(O,[]);else{const he=((re=q.metadata)==null?void 0:re.editedAt)||q.createdAt||"",oe=((le=D.metadata)==null?void 0:le.editedAt)||D.createdAt||"";let ge=!1;if(oe>he)ge=!0;else if(oe===he){const _e=q.createdAt||"";ge=(D.createdAt||"")>_e}ge?(V.get(O).push(q),Y.set(O,D)):V.get(O).push(D)}}),Y.forEach((D,O)=>{var re;if(!(D.analyses&&D.analyses.length>0)&&((re=D.metadata)!=null&&re.previousVersionWithAnalyses)){const he=(V.get(O)||[]).find(oe=>{var ge;return oe.sha===((ge=D.metadata)==null?void 0:ge.previousVersionWithAnalyses)});he&&he.analyses&&he.analyses.length>0&&(D.analyses=he.analyses)}}),Array.from(Y.values()).sort((D,O)=>{var le,he,oe,ge;const q=!((le=D.metadata)!=null&&le.notExported)&&!((he=D.metadata)!=null&&he.namedExport),re=!((oe=O.metadata)!=null&&oe.notExported)&&!((ge=O.metadata)!=null&&ge.namedExport);return q&&!re?-1:!q&&re?1:0}).forEach(D=>{var he,oe,ge,_e,je;const O=D.filePath??"No File Path";A.has(O)||A.set(O,{filePath:O,entities:[],totalCount:0,uncommittedCount:0,lastUpdated:null,previewScreenshots:[],previewScreenshotErrors:[],previewLibraryScenarios:[],state:"up-to-date",simulationCount:0});const q=A.get(O);q.entities.push(D),q.totalCount++,(he=D.metadata)!=null&&he.isUncommitted&&q.uncommittedCount++;const re=((_e=(ge=(oe=D.analyses)==null?void 0:oe[0])==null?void 0:ge.scenarios)==null?void 0:_e.length)||0;q.simulationCount+=re;const le=((je=D.metadata)==null?void 0:je.editedAt)||D.updatedAt;le&&(!q.lastUpdated||new Date(le)>new Date(q.lastUpdated))&&(q.lastUpdated=le)});const W=(i==null?void 0:i.jobs)||[],Q=D=>{const O=`${D.filePath||""}::${D.name}`;return(c==null?void 0:c.includes(O))||!1};A.forEach(D=>{const O=D.entities.map(q=>Q(q)?"queued":bt(q,W));O.includes("analyzing")||O.includes("queued")?D.state="analyzing":O.includes("incomplete")?D.state="incomplete":O.includes("out-of-date")?D.state="out-of-date":O.includes("not-analyzed")?D.state="not-analyzed":D.state="up-to-date"}),A.forEach(D=>{var O,q,re,le,he;for(const oe of D.entities){if(D.previewScreenshots.length+D.previewLibraryScenarios.length>=3)break;const _e=((q=(O=oe.analyses)==null?void 0:O[0])==null?void 0:q.scenarios)||[];if(oe.entityType==="library"){const je=_e.find(pe=>{var Z,Ne;return((Z=pe.metadata)==null?void 0:Z.executionResult)||((Ne=pe.metadata)==null?void 0:Ne.error)});je&&D.previewLibraryScenarios.push({scenario:je,entitySha:oe.sha})}else{const je=_e.find(pe=>{var Z,Ne;return(Ne=(Z=pe.metadata)==null?void 0:Z.screenshotPaths)==null?void 0:Ne[0]});if(je){const pe=(le=(re=je.metadata)==null?void 0:re.screenshotPaths)==null?void 0:le[0],Z=!!((he=je.metadata)!=null&&he.error);pe&&!D.previewScreenshots.includes(pe)&&(D.previewScreenshots.push(pe),D.previewScreenshotErrors.push(Z))}}}});const B=Array.from(A.values());return B.sort((D,O)=>{if(a==="analyzed"){const le=Math.max(...D.entities.filter(oe=>{var ge,_e;return(_e=(ge=oe.analyses)==null?void 0:ge[0])==null?void 0:_e.createdAt}).map(oe=>new Date(oe.analyses[0].createdAt).getTime()),0),he=Math.max(...O.entities.filter(oe=>{var ge,_e;return(_e=(ge=oe.analyses)==null?void 0:ge[0])==null?void 0:_e.createdAt}).map(oe=>new Date(oe.analyses[0].createdAt).getTime()),0);return j==="desc"?he-le:le-he}if(D.uncommittedCount>0&&O.uncommittedCount===0)return-1;if(D.uncommittedCount===0&&O.uncommittedCount>0)return 1;const q=D.lastUpdated?new Date(D.lastUpdated).getTime():0,re=O.lastUpdated?new Date(O.lastUpdated).getTime():0;return j==="desc"?re-q:q-re}),B},[I,a,j,i,c]),T=ae(()=>{let A=R;if(S!=="all"&&(A=A.filter(Y=>Y.state===S)),N.trim()){const Y=N.toLowerCase();A=A.filter(V=>V.filePath.toLowerCase().includes(Y))}return A},[R,N,S]),G=(t-1)*r,J=G+r,F=T.slice(G,J),H=Math.ceil(T.length/r),U=A=>{v(Y=>{const V=new Set(Y);return V.has(A)?V.delete(A):V.add(A),V})},z=()=>{$(A=>A==="desc"?"asc":"desc")};return d("div",{children:[d("div",{className:"bg-white border-b border-gray-200 rounded-t-lg px-5 py-4 mb-3",children:[n("div",{className:"text-[11px] text-gray-500 mb-2 uppercase",children:"Filters"}),d("div",{className:"flex gap-3",children:[d("div",{className:"relative w-[130px]",children:[d("select",{value:P,onChange:A=>{const Y=A.target.value,V=new URLSearchParams(x);Y==="all"?V.delete("entityType"):V.set("entityType",Y),V.set("page","1"),w(V)},className:"appearance-none bg-gray-50 border border-gray-200 rounded px-[10px] pr-6 text-[13px] h-[39px] w-full cursor-pointer focus:outline-none focus:ring-0 focus:border-2 focus:border-[#005c75] hover:border-gray-300 transition-colors",children:[n("option",{value:"all",children:"All Types"}),n("option",{value:"visual",children:"Visual"}),n("option",{value:"library",children:"Library"})]}),n(Nt,{className:"absolute right-2 top-1/2 -translate-y-1/2 w-3 h-3 text-gray-500 pointer-events-none"})]}),d("div",{className:"relative w-[130px]",children:[d("select",{value:S,onChange:A=>_(A.target.value),className:"appearance-none bg-gray-50 border border-gray-200 rounded px-[10px] pr-6 text-[13px] h-[39px] w-full cursor-pointer focus:outline-none focus:ring-0 focus:border-2 focus:border-[#005c75] hover:border-gray-300 transition-colors",children:[n("option",{value:"all",children:"All States"}),n("option",{value:"analyzing",children:"Analyzing..."}),n("option",{value:"up-to-date",children:"Up to date"}),n("option",{value:"incomplete",children:"Incomplete"}),n("option",{value:"out-of-date",children:"Out of date"}),n("option",{value:"not-analyzed",children:"Not analyzed"})]}),n(Nt,{className:"absolute right-2 top-1/2 -translate-y-1/2 w-3 h-3 text-gray-500 pointer-events-none"})]}),d("div",{className:"flex-1 relative",children:[n(Sr,{className:"absolute left-3 top-1/2 -translate-y-1/2 w-4 h-4 text-gray-400"}),n("input",{type:"text",placeholder:"Search component",value:N,onChange:A=>k(A.target.value),className:"w-full bg-gray-50 border border-gray-200 rounded pl-9 pr-[10px] text-[13px] h-[39px] placeholder:text-gray-400 focus:outline-none focus:ring-0 focus:border-2 focus:border-[#005c75] transition-colors"})]})]})]}),h!==void 0&&m!==void 0&&f!==void 0&&n("div",{className:"mb-3",children:d("div",{className:"flex items-center justify-between",children:[d("div",{className:"flex items-center",children:[d("span",{className:"font-mono uppercase",style:{fontSize:"11px",color:"#8b8b8b",fontWeight:500,letterSpacing:"0.05em"},children:[n("span",{style:{color:"#000000"},children:T.length})," ",T.length===1?"file":"files"]}),d("div",{className:"relative group inline-flex items-center ml-1.5",children:[n("svg",{className:"w-3 h-3 text-gray-400 cursor-help",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:n("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M13 16h-1v-4h-1m1-4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z"})}),n("div",{className:"absolute left-0 top-full mt-2 hidden group-hover:block z-50 w-80",children:d("div",{className:"bg-gray-900 text-white text-xs rounded-lg px-3 py-2 shadow-lg",children:["In CodeYam, an entity is a discrete, analyzable unit of code that can be independently simulated and tested.",n("div",{className:"absolute -top-1 left-4 w-2 h-2 bg-gray-900 transform rotate-45"})]})})]}),n("span",{className:"font-mono uppercase",style:{fontSize:"11px",color:"#d1d5db",fontWeight:500,letterSpacing:"0.05em",marginLeft:"8px"},children:"|"}),d("span",{className:"font-mono uppercase",style:{fontSize:"11px",color:"#8b8b8b",fontWeight:500,letterSpacing:"0.05em",marginLeft:"8px"},children:[n("span",{style:{color:"#000000"},children:T.reduce((A,Y)=>A+Y.totalCount,0)})," ",T.reduce((A,Y)=>A+Y.totalCount,0)===1?"entity":"entities"]}),n("span",{className:"font-mono uppercase",style:{fontSize:"11px",color:"#d1d5db",fontWeight:500,letterSpacing:"0.05em",marginLeft:"8px"},children:"|"}),g?d("button",{onClick:y,className:"flex items-center gap-2 text-[#005c75] underline hover:text-[#004a5e] transition-colors ml-2 font-mono uppercase cursor-pointer",style:{fontSize:"11px",fontWeight:500,letterSpacing:"0.05em"},children:[T.filter(A=>A.uncommittedCount>0).length," ","uncommitted"," ",T.filter(A=>A.uncommittedCount>0).length===1?"file":"files",n("svg",{className:"w-3.5 h-3.5",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",children:n("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"2",d:"M6 18L18 6M6 6l12 12"})})]}):d("button",{onClick:y,className:"text-[#005c75] underline hover:text-[#004a5e] transition-colors ml-2 font-mono uppercase",style:{fontSize:"11px",fontWeight:500,letterSpacing:"0.05em"},children:[f," uncommitted"," ",f===1?"file":"files"]})]}),F.length>0&&d("div",{className:"flex gap-6",children:[d("button",{onClick:()=>{v(new Set(F.map(A=>A.filePath))),C(!0)},className:"text-[#005c75] hover:bg-[#E6F5F8] hover:text-[#003d4f] font-mono uppercase transition-all cursor-pointer px-3 py-1 rounded flex items-center gap-1.5",style:{fontSize:"11px",fontWeight:500,letterSpacing:"0.05em"},children:[n(Yl,{className:"w-3.5 h-3.5"}),"Expand All"]}),d("button",{onClick:()=>{v(new Set),C(!1)},className:"text-[#005c75] hover:bg-[#E6F5F8] hover:text-[#003d4f] font-mono uppercase transition-all cursor-pointer px-3 py-1 rounded flex items-center gap-1.5",style:{fontSize:"11px",fontWeight:500,letterSpacing:"0.05em"},children:[n(Ul,{className:"w-3.5 h-3.5"}),"Collapse All"]})]})]})}),n(Xo,{showActions:!0,sortOrder:j,onSortChange:z}),n("div",{className:"flex flex-col gap-[3px]",children:F.map(A=>{const Y=b.has(A.filePath),W=A.entities.filter(O=>(O.entityType==="visual"||O.entityType==="library")&&(bt(O,(i==null?void 0:i.jobs)||[])==="not-analyzed"||bt(O,(i==null?void 0:i.jobs)||[])==="out-of-date"||bt(O,(i==null?void 0:i.jobs)||[])==="incomplete")).length>0,Q=O=>{var q;return((q=s==null?void 0:s.currentEntityShas)==null?void 0:q.includes(O))||!1},B=O=>{var q;return l!=null&&l(O)?!0:((q=i==null?void 0:i.jobs)==null?void 0:q.some(re=>{var le;return(le=re.entityShas)==null?void 0:le.includes(O.sha)}))||!1},D=O=>{p==null||p(O)};return n(ei,{filePath:A.filePath,isExpanded:Y,onToggle:()=>U(A.filePath),simulationPreviews:n(ti,{entities:A.entities,maxPreviews:1}),entityCount:A.totalCount,state:A.state,lastModified:A.lastUpdated,uncommittedCount:A.uncommittedCount,isUncommitted:A.uncommittedCount>0,actionButton:W?n("button",{onClick:O=>{O.stopPropagation();const q=A.entities.filter(re=>(re.entityType==="visual"||re.entityType==="library")&&(bt(re,(i==null?void 0:i.jobs)||[])==="not-analyzed"||bt(re,(i==null?void 0:i.jobs)||[])==="out-of-date"||bt(re,(i==null?void 0:i.jobs)||[])==="incomplete"));u==null||u(q)},className:"bg-[#005c75] text-white rounded text-[12px] font-['IBM_Plex_Sans'] font-normal hover:bg-[#004a5e] transition-colors cursor-pointer px-[15px] py-0 h-[28px]",children:A.state==="out-of-date"?"Re-analyze":"Analyze"}):void 0,children:A.entities.sort((O,q)=>{var ge,_e,je,pe;const re=!((ge=O.metadata)!=null&&ge.notExported)&&!((_e=O.metadata)!=null&&_e.namedExport),le=!((je=q.metadata)!=null&&je.notExported)&&!((pe=q.metadata)!=null&&pe.namedExport);if(re&&!le)return-1;if(!re&&le)return 1;const he=O.entityType==="visual"||O.entityType==="library",oe=q.entityType==="visual"||q.entityType==="library";return he&&!oe?-1:!he&&oe?1:O.name.localeCompare(q.name)}).map(O=>n(ni,{entity:O,isActivelyAnalyzing:Q(O.sha),isQueued:B(O),onGenerateSimulation:D},O.sha))},A.filePath)})}),H>1&&d("div",{className:"flex justify-center items-center gap-4 mt-6 p-4",children:[t>1&&n("a",{href:`?${new URLSearchParams({...Object.fromEntries(x),page:String(t-1)}).toString()}`,className:"no-underline font-medium hover:underline",style:{color:"#005C75"},children:"← Previous"}),d("span",{children:["Page ",t," of ",H]}),t<H&&n("a",{href:`?${new URLSearchParams({...Object.fromEntries(x),page:String(t+1)}).toString()}`,className:"no-underline font-medium hover:underline",style:{color:"#005C75"},children:"Next →"})]})]})}const oS=()=>[{title:"Files & Entities - CodeYam"},{name:"description",content:"Browse your codebase files and entities"}];async function iS({request:e,context:t}){try{const r=new URL(e.url),s=parseInt(r.searchParams.get("page")||"1"),a=r.searchParams.get("filter")||null,o=r.searchParams.get("entityType"),i=t.analysisQueue,l=i?i.getState():{paused:!1,jobs:[]},[c,p]=await Promise.all([wn(),Hn()]);return X({entities:c,currentCommit:p,page:s,filter:a,entityType:o,queueState:l})}catch(r){return console.error("Failed to load entities:",r),X({entities:[],currentCommit:null,page:1,filter:null,entityType:null,queueState:{paused:!1,jobs:[]},error:"Failed to load entities"})}}const lS=Qe(function(){var N,k,E;const{entities:t,currentCommit:r,page:s,filter:a,entityType:o,queueState:i,error:l}=tt();Yt();const[c,p]=Bn(),[u,h]=M(!1);$t({source:"files-page"});const{handleGenerateSimulation:m,handleGenerateAllSimulations:f,isEntityPending:g,pendingEntityKeys:y}=Wd((k=(N=r==null?void 0:r.metadata)==null?void 0:N.currentRun)==null?void 0:k.currentEntityShas,i),x=t||[],w=ae(()=>{const C=new Set([]);for(const S of x)C.add(S.filePath??"No File Path");return Array.from(C)},[x]),b=ae(()=>{let C=x;return u&&(C=C.filter(S=>{var _;return(_=S.metadata)==null?void 0:_.isUncommitted})),C.sort((S,_)=>{var j,$,P,I,R,T;return(j=S.metadata)!=null&&j.isUncommitted&&!(($=_.metadata)!=null&&$.isUncommitted)?-1:!((P=S.metadata)!=null&&P.isUncommitted)&&((I=_.metadata)!=null&&I.isUncommitted)?1:new Date(((R=_.metadata)==null?void 0:R.editedAt)||0).getTime()-new Date(((T=S.metadata)==null?void 0:T.editedAt)||0).getTime()})},[x,u]),v=ae(()=>{var S;const C=new Set([]);for(const _ of x)(S=_.metadata)!=null&&S.isUncommitted&&C.add(_.filePath??"No File Path");return Array.from(C)},[x]);return l?n("div",{className:"bg-[#F8F7F6] min-h-screen",children:d("div",{className:"px-12 py-6 font-sans",children:[n("h1",{className:"text-[28px] font-semibold text-gray-900",children:"Error"}),n("p",{className:"text-base text-gray-500",children:l})]})}):x.length===0?n("div",{className:"bg-[#f9f9f9] min-h-screen",children:d("div",{className:"px-20 py-12 font-sans",children:[d("div",{className:"mb-8",children:[n("h1",{className:"text-[28px] font-semibold text-gray-900 mb-2",children:"Files & Entities"}),n("p",{className:"text-[15px] text-gray-500",children:"This is a list of all the files in your app."})]}),n("div",{className:"bg-white rounded-lg border border-gray-200 p-12 text-center",children:d("div",{className:"max-w-md mx-auto",children:[n("h2",{className:"text-xl font-semibold text-gray-900 mb-3",children:"No entities found"}),d("p",{className:"text-[15px] text-gray-600 mb-6",children:["Your project hasn't been analyzed yet. Run"," ",n("code",{className:"px-2 py-1 bg-gray-100 rounded text-sm font-mono",children:"codeyam analyze"})," ","to extract entities from your codebase."]}),n("p",{className:"text-sm text-gray-500",children:"Entities include React components, functions, and other analyzable code elements."})]})})]})}):n("div",{className:"bg-[#f9f9f9] min-h-screen",children:d("div",{className:"px-20 py-12 font-sans",children:[d("div",{className:"mb-8",children:[n("h1",{className:"text-[28px] font-semibold text-gray-900 mb-2",children:"Files & Entities"}),n("p",{className:"text-[15px] text-gray-500",children:"This is a list of all the files in your app."})]}),n(aS,{entities:b,page:s,itemsPerPage:50,currentRun:(E=r==null?void 0:r.metadata)==null?void 0:E.currentRun,filter:a,entityType:o,queueState:i,isEntityPending:g,pendingEntityKeys:y,onGenerateSimulation:m,onGenerateAllSimulations:f,totalFilesCount:w.length,totalEntitiesCount:x.length,uncommittedFilesCount:v.length,showOnlyUncommitted:u,onToggleUncommitted:()=>h(!u)})]})})}),cS=Object.freeze(Object.defineProperty({__proto__:null,default:lS,loader:iS,meta:oS},Symbol.toStringTag,{value:"Module"})),dS=()=>[{title:"Labs - CodeYam"},{name:"description",content:"Experimental features"}];async function uS({request:e}){var t;try{const r=await ze();if(!r)return X({labs:null,projectSlug:null,defaultEmail:"",detectedTechStack:"",unlockCode:null,error:"Project not found"});const{project:s}=await Oe(r),a=we()||process.cwd(),o=Sd(a)||"";let i="";try{const c=await Is();if(c!=null&&c.webapps&&Array.isArray(c.webapps)){const p=c.webapps.map(u=>u.framework).filter(Boolean);p.length>0&&(i=p.join(", "))}}catch{}const l=Ad(r);return X({labs:((t=s.metadata)==null?void 0:t.labs)??null,projectSlug:r,defaultEmail:o,detectedTechStack:i,unlockCode:l,error:null})}catch(r){return console.error("Failed to load labs config:",r),X({labs:null,projectSlug:null,defaultEmail:"",detectedTechStack:"",unlockCode:null,error:"Failed to load labs configuration"})}}async function pS({request:e}){try{const t=await e.formData(),r=t.get("feature"),s=t.get("enabled")==="true";if(!r)return X({success:!1,error:"Missing feature name"},{status:400});const a=await ze();return a?(r==="clearAccess"?await Ln({projectSlug:a,metadataUpdate:{labs:{accessGranted:!1,simulations:!1}}}):await Ln({projectSlug:a,metadataUpdate:{labs:{[r]:s}}}),X({success:!0,error:null})):X({success:!1,error:"Project not found"},{status:404})}catch(t){return console.error("Failed to update labs config:",t),X({success:!1,error:"Failed to save labs configuration"},{status:500})}}const hS=[{id:"simulations",name:"Simulations",description:"Enable entity analysis, visual simulations, git impact analysis, file browsing, and activity monitoring. When disabled, only Memory, Labs, and Settings are accessible.",defaultEnabled:!0},{id:"enhancedClaudeTesting",name:"Enhanced Claude Testing",description:"Automatically generated mock data that covers the scenarios you actually care about: empty states, error states, auth flows, broken images, missing permissions.",defaultEnabled:!0},{id:"gitIntegration",name:"Git Integration Showing Impacted Files",description:"Lorem Ipsum Automatically generated mock data that covers the scenarios you actually care about: empty states, error states, auth flows, broken images, missing permissions.",defaultEnabled:!1}],vl="https://docs.google.com/forms/d/e/1FAIpQLSfopqQOQsjY9S4Ns0l3xDLzGl7iYNpKa2Wn2Xzmtxj8CR1sMA/viewform",mS=[{title:"CodeYam Simulations",status:"apply for early access",desc:"CodeYam Simulations are the core of the CodeYam development experience. They leverage static code analysis and AI to generate robust data scenarios that are used to hydrate code. This creates a whole new dimension to the software development experience"},{title:"The Full CodeYam Experience",status:"more to come",desc:"CodeYam is completely rethinking the software development experience in the AI era. Focused on navigating the challenges of iteration speed, complexity, and communication, CodeYam will provide a powerful software development experience."}];function fS({onClose:e}){const t=fe(null),r=fe(0);return se(()=>{const s=t.current;if(!s)return;const a=100,o=2e3,i=500;let l=null,c=!1;const p=()=>{r.current=Date.now(),!l&&!c&&(l=setInterval(()=>{const u=Date.now()-r.current,h=s.scrollTop>a,m=u>o;h&&m&&(s.scrollTo({top:0,behavior:"smooth"}),c=!0,l&&(clearInterval(l),l=null))},i))};return s.addEventListener("scroll",p,{passive:!0}),()=>{s.removeEventListener("scroll",p),l&&clearInterval(l)}},[]),d("div",{className:"fixed inset-0 z-50 flex items-center justify-center",onClick:s=>{s.target===s.currentTarget&&e()},children:[n("div",{className:"absolute inset-0 bg-black/50"}),d("div",{className:"relative bg-white rounded-xl max-w-3xl w-full mx-4 max-h-[90vh] overflow-hidden",children:[n("button",{onClick:e,className:"absolute top-4 right-4 text-gray-400 hover:text-gray-600 text-2xl leading-none cursor-pointer bg-transparent border-none z-10",children:"×"}),d("div",{ref:t,className:"overflow-y-auto max-h-[90vh] p-4 md:p-6",children:[d("div",{className:"mb-4",children:[n("h3",{className:"font-serif italic text-2xl text-primary-200 mb-2",children:"Request Early Access"}),n("p",{className:"text-sm text-gray-500",children:"Complete the form below to join the waitlist for CodeYam Labs."})]}),n("div",{className:"bg-white rounded-lg overflow-hidden",children:n("iframe",{src:`${vl}?embedded=true`,width:"100%",height:"1400",style:{border:0,minHeight:"1400px"},title:"Labs Waitlist Form",loading:"eager",children:n("div",{className:"flex items-center justify-center p-8 text-gray-600",children:d("div",{className:"text-center",children:[n("div",{className:"mb-4",children:"Loading form..."}),d("div",{className:"text-sm",children:["If this takes too long,"," ",n("a",{href:vl,target:"_blank",rel:"noopener noreferrer",className:"text-blue-600 hover:text-blue-800 underline",children:"open the form directly"})]})]})})})})]})]})]})}function gS({onClose:e,unlockCodeInput:t,setUnlockCodeInput:r,unlockFetcher:s}){var i,l;const a=(i=s.data)==null?void 0:i.error,o=(l=s.data)==null?void 0:l.success;return d("div",{className:"fixed inset-0 z-50 flex items-center justify-center",onClick:c=>{c.target===c.currentTarget&&e()},children:[n("div",{className:"absolute inset-0 bg-black/50"}),d("div",{className:"relative bg-white rounded-xl p-8 max-w-md w-full mx-4",children:[n("button",{onClick:e,className:"absolute top-4 right-4 text-gray-400 hover:text-gray-600 text-2xl leading-none cursor-pointer bg-transparent border-none",children:"×"}),n("h3",{className:"font-serif italic text-2xl text-primary-200 mb-2",children:"Have an unlock code?"}),n("p",{className:"text-sm text-cygray-50 mb-6",children:"If you've received an unlock code, paste it below to enable Simulations immediately."}),d(s.Form,{method:"post",action:"/api/labs-unlock",className:"space-y-4",children:[n("input",{type:"text",name:"unlockCode",value:t,onChange:c=>r(c.target.value),placeholder:"CY-...",className:"w-full px-4 py-2.5 border border-gray-300 rounded-lg text-sm font-mono focus:outline-none focus:ring-2 focus:ring-primary-100 focus:border-transparent"}),n("button",{type:"submit",disabled:!t.trim()||s.state==="submitting",className:"w-full py-3 text-white border-none rounded-lg text-sm font-mono font-semibold uppercase tracking-wider cursor-pointer transition-all bg-primary-200 hover:bg-primary-100 disabled:bg-gray-400 disabled:cursor-not-allowed",children:s.state==="submitting"?"Validating...":"Unlock"}),a&&n("p",{className:"text-red-600 text-sm mt-2",children:a}),o&&n("p",{className:"text-emerald-600 text-sm mt-2",children:"Simulations enabled! Refresh the page to see all tabs."})]})]})]})}const yS=Qe(function(){const{labs:t,unlockCode:r,error:s}=tt(),a=Je(),o=Je(),i=Je(),[l,c]=M(""),[p,u]=M(!1),[h,m]=M(!1);$t({source:"labs-page"});const f=(t==null?void 0:t.accessGranted)===!0||(t==null?void 0:t.simulations)===!0;return s?n("div",{className:"bg-cygray-10 min-h-screen",children:d("div",{className:"px-20 pt-8 pb-12 font-sans",children:[n("h1",{className:"text-[28px] font-semibold text-gray-900 mb-2",children:"Labs"}),n("div",{className:"bg-red-50 border border-red-200 rounded-lg p-4 mt-4",children:n("p",{className:"text-red-700",children:s})})]})}):f?d("div",{className:"bg-cygray-10 min-h-screen font-sans flex flex-col",children:[n("div",{className:"px-6 sm:px-12 pt-8 pb-4",children:n("h1",{className:"font-mono text-lg font-semibold tracking-widest text-cyblack-100 m-0",children:"LABS"})}),d("div",{className:"px-6 sm:px-12 pt-8 pb-10",children:[n("h2",{className:"font-serif italic text-[32px] sm:text-[48px] text-primary-100 mb-3 font-normal leading-tight",children:"Congrats!"}),n("p",{className:"font-serif text-[18px] sm:text-[24px] text-cyblack-100 font-normal leading-snug max-w-2xl",children:"You were granted early access to software simulation and other experimental features."})]}),n("div",{className:"px-6 sm:px-12 space-y-6 flex-1",children:hS.map(g=>{var w;const y=(t==null?void 0:t[g.id])??g.defaultEnabled,x=o.state==="submitting"&&((w=o.formData)==null?void 0:w.get("feature"))===g.id;return n("div",{className:"border border-cygray-30 rounded-xl p-5 sm:p-8 bg-white",children:d("div",{className:"flex items-center justify-between gap-4",children:[d("div",{className:"flex-1 min-w-0",children:[d("div",{className:"flex items-center gap-3 mb-3",children:[n("h3",{className:"text-lg font-semibold text-cyblack-100 m-0",children:g.name}),n("span",{className:`inline-flex items-center px-2.5 py-0.5 rounded text-[10px] font-bold uppercase tracking-wider ${y?"bg-primary-100/15 text-primary-100":"bg-cygray-20 text-cygray-50"}`,children:y?"Enabled":"Disabled"})]}),n("p",{className:"text-sm text-cygray-50 leading-relaxed m-0",children:g.description})]}),d(o.Form,{method:"post",children:[n("input",{type:"hidden",name:"feature",value:g.id}),n("input",{type:"hidden",name:"enabled",value:String(!y)}),n("button",{type:"submit",disabled:x,className:`relative inline-flex h-8 w-14 flex-shrink-0 cursor-pointer rounded-full border-2 border-transparent transition-colors duration-200 ease-in-out focus:outline-none disabled:opacity-60 disabled:cursor-not-allowed ${y?"bg-primary-100":"bg-gray-300"}`,children:n("span",{className:`pointer-events-none inline-block h-7 w-7 transform rounded-full bg-white shadow ring-0 transition duration-200 ease-in-out ${y?"translate-x-6":"translate-x-0"}`})})]})]})},g.id)})}),r&&n("div",{className:"px-6 sm:px-12 pt-12",children:d("div",{className:"border border-cygray-30 rounded-xl p-5 sm:p-8 bg-white",children:[n("h3",{className:"text-base font-semibold text-cyblack-100 mb-1",children:"Unlock Code"}),n("p",{className:"text-sm text-cygray-50 mb-3",children:"This code was used to enable Labs access. Clear it to revoke access and return to the landing page."}),d("div",{className:"flex flex-col sm:flex-row sm:items-center gap-3",children:[n("code",{className:"sm:flex-1 px-4 py-2.5 bg-cygray-10 border border-cygray-30 rounded-lg text-sm font-mono text-cyblack-100 overflow-x-auto",children:r}),d(i.Form,{method:"post",children:[n("input",{type:"hidden",name:"feature",value:"clearAccess"}),n("input",{type:"hidden",name:"enabled",value:"false"}),n("button",{type:"submit",disabled:i.state==="submitting",className:"px-4 py-2.5 bg-red-50 border border-red-200 rounded-lg text-sm font-medium text-red-700 cursor-pointer transition-colors hover:bg-red-100 disabled:opacity-60 disabled:cursor-not-allowed",children:i.state==="submitting"?"Clearing...":"Clear"})]})]})]})})]}):d("div",{className:"bg-cygray-10 min-h-screen font-sans",children:[p&&n(fS,{onClose:()=>u(!1)}),h&&n(gS,{onClose:()=>m(!1),unlockCodeInput:l,setUnlockCodeInput:c,unlockFetcher:a}),d("div",{className:"flex flex-wrap justify-between items-center gap-3 px-6 sm:px-12 pt-8 pb-4",children:[n("h1",{className:"font-mono text-lg font-semibold tracking-widest text-cyblack-100 m-0",children:"LABS"}),d("div",{className:"flex flex-wrap items-center gap-3",children:[n("button",{onClick:()=>m(!0),className:"font-mono text-xs font-semibold uppercase tracking-widest px-4 sm:px-5 py-2.5 rounded border border-cygray-30 bg-transparent text-cygray-50 cursor-pointer transition-colors hover:border-cyblack-100 hover:text-cyblack-100",children:"Have a Code?"}),n("button",{onClick:()=>u(!0),className:"font-mono text-xs font-semibold uppercase tracking-widest px-4 sm:px-5 py-2.5 rounded border border-cyblack-100 bg-transparent text-cyblack-100 cursor-pointer transition-colors hover:bg-cyblack-100 hover:text-white",children:"Apply for Early Access"})]})]}),d("div",{className:"px-6 sm:px-12 pt-12 pb-8",children:[n("h2",{className:"font-serif text-[24px] sm:text-[32px] leading-snug text-cyblack-100 max-w-xl mb-4 font-normal",children:"Powerful tools for the AI coding era."}),d("p",{className:"text-base sm:text-lg text-cygray-50 leading-relaxed max-w-xl mb-8",children:["We're opening early access to"," ",n("strong",{className:"text-cyblack-100",children:"experimental features"})," to a small group of developers and teams."]}),n("button",{onClick:()=>u(!0),className:"font-mono text-xs font-semibold uppercase tracking-widest px-6 py-3 rounded bg-primary-200 text-white border-none cursor-pointer transition-colors hover:bg-primary-100",children:"Apply for Early Access"})]}),n("div",{className:"px-6 sm:px-12 py-8",children:n("hr",{className:"border-t border-cygray-30 m-0"})}),d("div",{className:"px-6 sm:px-12 pt-8 pb-4",children:[n("h3",{className:"font-serif text-[22px] sm:text-[28px] text-cyblack-100 mb-10 font-normal text-center",children:"In The Works"}),n("div",{className:"grid grid-cols-1 md:grid-cols-2 gap-5 max-w-4xl mx-auto",children:mS.map(g=>d("div",{className:"border border-cygray-30 bg-white p-5 sm:p-8 rounded-lg",children:[d("h4",{className:"text-base font-semibold text-cyblack-100 mb-1",children:[g.title," ",d("span",{className:"font-normal text-primary-100 font-serif italic",children:["(",g.status,")"]})]}),n("p",{className:"text-sm text-cygray-50 leading-relaxed mt-3 mb-0",children:g.desc})]},g.title))})]}),n("div",{className:"px-6 sm:px-12 py-16",children:d("div",{className:"rounded-lg p-6 sm:p-12 bg-primary-200",children:[n("h3",{className:"font-serif text-[20px] sm:text-[24px] text-white mb-4 font-semibold",children:"Request Early Access"}),n("p",{className:"text-sm text-white/80 leading-relaxed max-w-lg mb-10 font-mono",children:"We're onboarding a limited number of developers and teams. Tell us about how you build and we'll let you know when you can try simulations and other Labs features."}),n("button",{onClick:()=>u(!0),className:"font-mono text-xs font-semibold uppercase tracking-widest px-6 py-3 rounded border border-white bg-white text-cyblack-100 cursor-pointer transition-colors hover:bg-white/90 mb-4",children:"Apply for Early Access"}),n("p",{className:"text-xs text-white/60 m-0",children:"Takes about 2 minutes. Your answers help us determine eligibility and prioritize access."})]})})]})}),xS=Object.freeze(Object.defineProperty({__proto__:null,action:pS,default:yS,loader:uS,meta:dS},Symbol.toStringTag,{value:"Module"}));function bS(e,t,r){const[s,a]=M(()=>new Set),[o,i]=M(()=>new Set),l=fe([]),c=fe([]);return se(()=>{(t.length!==l.current.length||t.some((y,x)=>y!==l.current[x]))&&(l.current=t,a(y=>{const x=new Set;return t.forEach(w=>{y.has(w)&&x.add(w)}),x}))},[t]),se(()=>{(r.length!==c.current.length||r.some((y,x)=>y!==c.current[x]))&&(c.current=r,i(y=>{const x=new Set;return r.forEach(w=>{y.has(w)&&x.add(w)}),x}))},[r]),{expandedUncommitted:s,expandedBranch:o,setExpandedUncommitted:a,setExpandedBranch:i,toggleFile:(g,y,x)=>{x(w=>{const b=new Set(w);return b.has(g)?b.delete(g):b.add(g),b})},expandAllUncommitted:()=>{a(new Set(t))},collapseAllUncommitted:()=>{a(new Set)},expandAllBranch:()=>{i(new Set(r))},collapseAllBranch:()=>{i(new Set)}}}function wS(e,t,r){const[s,a]=M(null),[o,i]=M(null),l=Je();se(()=>{var h,m;((h=l.data)==null?void 0:h.oldContent)!==void 0&&((m=l.data)==null?void 0:m.newContent)!==void 0&&i({oldContent:l.data.oldContent,newContent:l.data.newContent,fileName:l.data.fileName})},[l.data]);const c=h=>{a({type:"file",path:h}),i(null);const m=new FormData;m.append("actionType","getDiff"),m.append("filePath",h),m.append("diffType","branch"),m.append("baseBranch",e),m.append("currentBranch",t||""),l.submit(m,{method:"post"})},p=(h,m)=>{a({type:"entity",path:h,entitySha:m}),i(null);const f=new FormData;f.append("actionType","getDiff"),f.append("filePath",h),f.append("diffType","branch"),f.append("baseBranch",e),f.append("currentBranch",t||""),f.append("entitySha",m),l.submit(f,{method:"post"})},u=()=>{a(null),i(null)};return{diffView:s,diffContent:o,isLoading:l.state==="loading"||l.state==="submitting",handleShowFileDiff:c,handleShowEntityDiff:p,handleCloseDiff:u}}function vS({diffView:e,diffContent:t,isLoading:r,entities:s,onClose:a}){var p;const[o,i]=M(!1),[l,c]=M(!1);return se(()=>{c(!0)},[]),n("div",{className:"fixed inset-0 bg-black/50 flex items-center justify-center p-8 z-50",children:d("div",{className:"bg-white rounded-xl shadow-2xl max-w-6xl w-full max-h-[90vh] flex flex-col",children:[d("div",{className:"p-6 border-b border-[#e1e1e1] flex items-center justify-between",children:[d("div",{children:[n("h2",{className:"font-['IBM_Plex_Sans'] text-2xl font-semibold text-[#232323]",children:e.type==="file"?"File Diff":"Entity Diff"}),n("p",{className:"font-['IBM_Plex_Mono'] text-sm text-[#8e8e8e] mt-1",children:e.path}),e.type==="entity"&&e.entitySha&&d("p",{className:"font-['IBM_Plex_Mono'] text-sm text-[#8e8e8e]",children:["Entity:"," ",((p=s.find(u=>u.sha===e.entitySha))==null?void 0:p.name)||e.entitySha]})]}),d("div",{className:"flex items-center gap-3",children:[n("button",{onClick:()=>i(!o),className:"px-3 py-1.5 bg-[#efefef] text-[#3e3e3e] rounded-lg font-['IBM_Plex_Sans'] text-sm font-semibold hover:bg-[#e1e1e1] transition-colors cursor-pointer",title:o?"Show changes only":"Show full file",children:o?"Show Changes Only":"Show Full File"}),n("button",{onClick:a,className:"text-[#8e8e8e] hover:text-[#626262] transition-colors cursor-pointer",children:n("svg",{className:"w-6 h-6",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",children:n("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M6 18L18 6M6 6l12 12"})})})]})]}),n("div",{className:"flex-1 overflow-auto",children:r?n("div",{className:"p-6 text-center",children:n("div",{className:"text-[#8e8e8e]",children:"Loading diff..."})}):t?n("div",{className:"diff-viewer-wrapper",children:l&&n(kp,{oldValue:t.oldContent,newValue:t.newContent,splitView:!0,useDarkTheme:!1,showDiffOnly:!o,extraLinesSurroundingDiff:4,styles:{variables:{light:{diffViewerBackground:"#fff",diffViewerColor:"#212529",addedBackground:"#e6ffed",addedColor:"#24292e",removedBackground:"#ffeef0",removedColor:"#24292e",wordAddedBackground:"#acf2bd",wordRemovedBackground:"#fdb8c0",addedGutterBackground:"#cdffd8",removedGutterBackground:"#ffdce0",gutterBackground:"#f6f8fa",gutterBackgroundDark:"#f3f4f6",highlightBackground:"#fffbdd",highlightGutterBackground:"#fff5b1"}},contentText:{fontSize:"12px",lineHeight:"1.5"},line:{padding:"2px 10px",fontSize:"12px","&:hover":{background:"#f8f9fa"}},splitView:{display:"flex",width:"100%"},diffContainer:{width:"50%",overflowX:"auto"}}})}):n("div",{className:"p-6 text-center",children:n("div",{className:"text-[#8e8e8e]",children:"No diff available"})})}),n("div",{className:"p-6 border-t border-[#e1e1e1] flex justify-end gap-3",children:n("button",{onClick:a,className:"px-4 py-2 bg-[#efefef] text-[#3e3e3e] rounded-lg font-['IBM_Plex_Sans'] font-semibold hover:bg-[#e1e1e1] transition-colors cursor-pointer",children:"Close"})})]})})}function NS({files:e,currentBranch:t,defaultBranch:r,baseBranch:s,allBranches:a,expandedFiles:o,isEntityBeingAnalyzed:i,isEntityQueued:l,sortOrder:c,onToggleFile:p,onBranchChange:u,onGenerateSimulation:h,onSortChange:m,onAnalyzeAll:f,analyzeAllDisabled:g,analyzeAllText:y}){const x=e.flatMap(([v,{entities:N}])=>{const k=N.filter(E=>i(E.sha)||l(E)).map(E=>E.sha);return k.length>0?[{entityShas:k}]:[]}),w=v=>{const N=v.map(k=>bt(k,x));return N.includes("analyzing")||N.includes("queued")?"analyzing":N.includes("out-of-date")?"out-of-date":N.includes("not-analyzed")?"not-analyzed":"up-to-date"},b=ae(()=>[...e].sort((v,N)=>{const k=v[1].entities.reduce((_,j)=>{var P;const $=((P=j.metadata)==null?void 0:P.editedAt)||j.updatedAt;return $?_?new Date($)>new Date(_)?$:_:$:_},null),E=N[1].entities.reduce((_,j)=>{var P;const $=((P=j.metadata)==null?void 0:P.editedAt)||j.updatedAt;return $?_?new Date($)>new Date(_)?$:_:$:_},null);if(!k&&!E)return 0;if(!k)return 1;if(!E)return-1;const C=new Date(k).getTime(),S=new Date(E).getTime();return c==="desc"?S-C:C-S}),[e,c]);return n("div",{children:e.length>0?d("div",{children:[n(Xo,{showActions:!0,sortOrder:c,onSortChange:m,onAnalyzeAll:f,analyzeAllDisabled:g,analyzeAllText:y}),n("div",{className:"flex flex-col gap-[3px]",children:b.map(([v,{status:N,entities:k,isUncommitted:E}])=>{const C=o.has(v),S=w(k),_=k.reduce((I,R)=>{var G;const T=((G=R.metadata)==null?void 0:G.editedAt)||R.updatedAt;return T?I?new Date(T)>new Date(I)?T:I:T:I},null),$=k.filter(I=>I.entityType==="visual"||I.entityType==="library").length===0;let P;return $?P=n("span",{className:"text-[12px] text-gray-400",children:"Not Analyzable"}):S==="analyzing"?P=d("span",{className:"text-[13px] px-2 rounded inline-flex items-center gap-1.5 whitespace-nowrap",style:{backgroundColor:"#ffdbf6",color:"#ff2ab5",height:"26px"},children:[d("svg",{width:"8",height:"8",viewBox:"0 0 9 9",fill:"none",className:"animate-spin",children:[n("circle",{cx:"4.5",cy:"4.5",r:"3.5",stroke:"#FFF4FC",strokeWidth:"1",fill:"none"}),n("path",{d:"M4.5 1C2.57 1 1 2.57 1 4.5C1 5.6 1.5 6.58 2.28 7.23",stroke:"#FF2AB5",strokeWidth:"1",strokeLinecap:"round",fill:"none"})]}),"Analyzing..."]}):S==="up-to-date"?P=n("span",{className:"text-[13px] px-2 rounded inline-flex items-center gap-1.5 whitespace-nowrap",style:{backgroundColor:"#e8ffe6",color:"#00925d",height:"26px"},children:"Up to date"}):S==="out-of-date"?P=n("button",{onClick:I=>{I.stopPropagation(),k.filter(R=>(R.entityType==="visual"||R.entityType==="library")&&!i(R.sha)&&!l(R)).forEach(R=>h(R))},className:"bg-[#005c75] text-white rounded text-[12px] font-['IBM_Plex_Sans'] font-normal hover:bg-[#004a5e] transition-colors px-[15px] py-0 h-[28px]",children:"Re-Analyze"}):S==="not-analyzed"&&(P=n("button",{onClick:I=>{I.stopPropagation(),k.filter(R=>(R.entityType==="visual"||R.entityType==="library")&&!i(R.sha)&&!l(R)).forEach(R=>h(R))},className:"bg-[#005c75] text-white rounded text-[12px] font-['IBM_Plex_Sans'] font-normal hover:bg-[#004a5e] transition-colors px-[15px] py-0 h-[28px]",children:"Analyze File"})),n(ei,{filePath:v,isExpanded:C,onToggle:()=>p(v),fileStatus:N,isUncommitted:E,simulationPreviews:n(ti,{entities:k,maxPreviews:1}),entityCount:k.length,state:S,lastModified:_,isNotAnalyzable:$,actionButton:P,children:k.sort((I,R)=>{const T=I.entityType==="visual"||I.entityType==="library",G=R.entityType==="visual"||R.entityType==="library";return T&&!G?-1:!T&&G?1:0}).map(I=>n(ni,{entity:I,isActivelyAnalyzing:i(I.sha),isQueued:l(I),onGenerateSimulation:h},I.sha))},v)})})]}):d("div",{className:"bg-[#efefef] rounded-[10px] flex flex-col items-center justify-center text-center",style:{height:"190px"},children:[n("p",{className:"font-['IBM_Plex_Sans'] font-medium text-[16px] text-[#3e3e3e] leading-[24px] mb-2",children:"No Changes"}),n("p",{className:"font-['IBM_Plex_Sans'] font-normal text-[14px] text-[#3e3e3e] leading-[18px]",children:"No files have been modified in this branch."})]})})}function CS({files:e,entityImpactMap:t,expandedFiles:r,isEntityBeingAnalyzed:s,isEntityQueued:a,projectSlug:o,baseBranch:i,currentBranch:l,sortOrder:c,onToggleFile:p,onShowFileDiff:u,onGenerateSimulation:h,onSortChange:m,onAnalyzeAll:f,analyzeAllDisabled:g,analyzeAllText:y}){const x=ae(()=>{const v=[];return e.forEach(([N,{editedEntities:k}])=>{const E=k.filter(C=>s(C.sha)||a(C)).map(C=>C.sha);E.length>0&&v.push({entityShas:E})}),v},[e,s,a]),w=ae(()=>{const v=new Map;return e.forEach(([N,{editedEntities:k}])=>{const E=k.map(j=>bt(j,x));let C;E.includes("analyzing")||E.includes("queued")?C="analyzing":E.includes("out-of-date")?C="out-of-date":E.includes("not-analyzed")?C="not-analyzed":C="up-to-date";const S=k.reduce((j,$)=>{var I;const P=((I=$.metadata)==null?void 0:I.editedAt)||$.updatedAt;return P&&(!j||new Date(P)>new Date(j))?P:j},null),_=k.filter(j=>j.entityType==="visual"||j.entityType==="library").length;v.set(N,{state:C,lastModified:S,analyzableCount:_})}),v},[e,x]),b=ae(()=>[...e].sort((v,N)=>{const k=w.get(v[0]),E=w.get(N[0]),C=k==null?void 0:k.lastModified,S=E==null?void 0:E.lastModified;if(!C&&!S)return 0;if(!C)return 1;if(!S)return-1;const _=new Date(C).getTime(),j=new Date(S).getTime();return c==="desc"?j-_:_-j}),[e,w,c]);return e.length===0?d("div",{className:"bg-[#efefef] rounded-[10px] flex flex-col items-center justify-center text-center",style:{height:"190px"},children:[n("p",{className:"font-['IBM_Plex_Sans'] font-medium text-[16px] text-[#3e3e3e] leading-[24px] mb-2",children:"No Uncommitted Changes"}),n("p",{className:"font-['IBM_Plex_Sans'] font-normal text-[14px] text-[#3e3e3e] leading-[18px]",children:"If you edit a file in your project, it will show up here."})]}):d("div",{children:[n(Xo,{showActions:!0,sortOrder:c,onSortChange:m,onAnalyzeAll:f,analyzeAllDisabled:g,analyzeAllText:y}),n("div",{className:"flex flex-col gap-[3px]",children:b.map(([v,{status:N,editedEntities:k}])=>{const E=r.has(v),C=w.get(v),{state:S,lastModified:_,analyzableCount:j}=C,$=j===0;let P;return $?P=n("span",{className:"text-[12px] text-gray-400",children:"Not Analyzable"}):S==="analyzing"?P=d("span",{className:"text-[13px] px-2 rounded inline-flex items-center gap-1.5 whitespace-nowrap",style:{backgroundColor:"#ffdbf6",color:"#ff2ab5",height:"26px"},children:[d("svg",{width:"8",height:"8",viewBox:"0 0 9 9",fill:"none",className:"animate-spin",children:[n("circle",{cx:"4.5",cy:"4.5",r:"3.5",stroke:"#FFF4FC",strokeWidth:"1",fill:"none"}),n("path",{d:"M4.5 1C2.57 1 1 2.57 1 4.5C1 5.6 1.5 6.58 2.28 7.23",stroke:"#FF2AB5",strokeWidth:"1",strokeLinecap:"round",fill:"none"})]}),"Analyzing..."]}):S==="up-to-date"?P=n("span",{className:"text-[13px] px-2 rounded inline-flex items-center gap-1.5 whitespace-nowrap",style:{backgroundColor:"#e8ffe6",color:"#00925d",height:"26px"},children:"Up to date"}):S==="out-of-date"?P=n("button",{onClick:I=>{I.stopPropagation(),k.filter(R=>(R.entityType==="visual"||R.entityType==="library")&&!s(R.sha)&&!a(R)).forEach(R=>h(R))},className:"bg-[#005c75] text-white rounded text-[12px] font-['IBM_Plex_Sans'] font-normal hover:bg-[#004a5e] transition-colors px-[15px] py-0 h-[28px]",children:"Re-Analyze"}):S==="not-analyzed"&&(P=n("button",{onClick:I=>{I.stopPropagation(),k.filter(R=>(R.entityType==="visual"||R.entityType==="library")&&!s(R.sha)&&!a(R)).forEach(R=>h(R))},className:"bg-[#005c75] text-white rounded text-[12px] font-['IBM_Plex_Sans'] font-normal hover:bg-[#004a5e] transition-colors px-[15px] py-0 h-[28px]",children:"Analyze File"})),n(ei,{filePath:v,isExpanded:E,onToggle:()=>p(v),fileStatus:N,simulationPreviews:n(ti,{entities:k,maxPreviews:1}),entityCount:k.length,state:S,lastModified:_,isNotAnalyzable:$,isUncommitted:!0,actionButton:P,children:k.sort((I,R)=>{const T=I.entityType==="visual"||I.entityType==="library",G=R.entityType==="visual"||R.entityType==="library";return T&&!G?-1:!T&&G?1:0}).map(I=>n(ni,{entity:I,isActivelyAnalyzing:s(I.sha),isQueued:a(I),onGenerateSimulation:h},I.sha))},v)})})]})}function SS({activeTab:e,onTabChange:t,uncommittedCount:r,branchCount:s}){return n("div",{className:"border-b border-gray-200",children:d("nav",{className:"flex gap-8 items-center",children:[d("button",{onClick:()=>t("branch"),className:`relative pb-3 px-2 text-sm font-medium transition-colors cursor-pointer ${e==="branch"?"text-primary-100":"text-gray-500 hover:text-gray-700"}`,children:[d("span",{className:"flex items-center gap-2",children:["Branch Changes",s>0&&n("span",{className:`inline-flex items-center justify-center px-2 py-0.5 text-xs font-semibold rounded-full ${e==="branch"?"bg-[#cbf3fa] text-[#005c75]":"bg-[#e1e1e1] text-[#3e3e3e]"}`,children:s})]}),e==="branch"&&n("span",{className:"absolute -bottom-px left-0 right-0 h-0.5 bg-primary-100"})]}),d("button",{onClick:()=>t("uncommitted"),className:`relative pb-3 px-2 text-sm font-medium transition-colors cursor-pointer ${e==="uncommitted"?"text-primary-100":"text-gray-500 hover:text-gray-700"}`,children:[d("span",{className:"flex items-center gap-2",children:["Uncommitted Changes",r>0&&n("span",{className:`inline-flex items-center justify-center px-2 py-0.5 text-xs font-semibold rounded-full ${e==="uncommitted"?"bg-[#cbf3fa] text-[#005c75]":"bg-[#e1e1e1] text-[#3e3e3e]"}`,children:r})]}),e==="uncommitted"&&n("span",{className:"absolute -bottom-px left-0 right-0 h-0.5 bg-primary-100"})]})]})})}const _S=()=>[{title:"Git - CodeYam"},{name:"description",content:"Git status and impact analysis"}];async function kS({request:e}){const t=await e.formData();if(t.get("actionType")==="getDiff"){const s=t.get("filePath"),a=t.get("diffType"),o=t.get("baseBranch"),i=t.get("currentBranch"),l=t.get("entitySha");let c;return a==="branch"?c=ss(s,o,i):c=V0(s),X({...c,entitySha:l})}return X({error:"Unknown action"},{status:400})}async function ES({request:e,context:t}){try{const r=new URL(e.url),s=r.searchParams.get("compare"),a=r.searchParams.get("viewBranch"),o=t.analysisQueue,i=o?o.getState():{paused:!1,jobs:[]},[l,c,p]=await Promise.all([wn(),Hn(),ze()]),u=Kn(),h=U0(),m=W0(),f=J0(),g=a||h,y=s||m;let x=[];return g&&g!==y&&(x=od(y,g)),X({entities:l||[],gitStatus:u,currentBranch:g,actualCurrentBranch:h,defaultBranch:m,allBranches:f,baseBranch:y,branchDiff:x,currentCommit:c,projectSlug:p,queueState:i})}catch(r){return console.error("Failed to load git data:",r),X({entities:[],gitStatus:[],currentBranch:null,actualCurrentBranch:null,defaultBranch:"main",allBranches:[],baseBranch:"main",branchDiff:[],currentCommit:null,projectSlug:null,queueState:{paused:!1,jobs:[]},error:"Failed to load git data"})}}const AS=Qe(function(){var Ce,Fe;const{entities:t,gitStatus:r,currentBranch:s,actualCurrentBranch:a,defaultBranch:o,allBranches:i,baseBranch:l,branchDiff:c,currentCommit:p,projectSlug:u,queueState:h}=tt();$t({source:"git-page"});const[m,f]=Bn(),[g,y]=M(null),[x,w]=M("desc"),[b,v]=M("branch"),N=m.get("expanded")==="true",k=()=>{w(Se=>Se==="desc"?"asc":"desc")},E=Je(),C=E.data;se(()=>{s&&l&&s!==l&&E.state==="idle"&&!C&&E.load(`/api/branch-entity-diff?base=${encodeURIComponent(l)}&compare=${encodeURIComponent(s)}`)},[s,l,E,C]);const S=ae(()=>{const Se=Ld(r,t);return Array.from(Se.entries()).sort((Re,Be)=>Re[0].localeCompare(Be[0]))},[r,t]),_=ae(()=>{const Se=_C(c,t,C);return Array.from(Se.entries()).sort((Re,Be)=>Re[0].localeCompare(Be[0]))},[c,t,C]),j=ae(()=>kC(r,t),[r,t]),$=ae(()=>b==="uncommitted"?S:_,[b,S,_]),P=ae(()=>$.map(([Se])=>Se),[$]),{expandedUncommitted:I,setExpandedUncommitted:R,toggleFile:T,expandAllUncommitted:G,collapseAllUncommitted:J}=bS(N,P,[]),{diffView:F,diffContent:H,isLoading:U,handleShowFileDiff:z,handleCloseDiff:A}=wS(l,s),Y=(Ce=p==null?void 0:p.metadata)==null?void 0:Ce.currentRun,V=new Set((Y==null?void 0:Y.currentEntityShas)||[]),W=new Set(h.jobs.flatMap(Se=>Se.entityShas||[])),Q=new Set(((Fe=h.currentlyExecuting)==null?void 0:Fe.entityShas)||[]),{isAnalyzing:B,handleGenerateSimulation:D,handleGenerateAllSimulations:O,isEntityBeingAnalyzed:q,isEntityPending:re}=Wd(Y==null?void 0:Y.currentEntityShas,h),le=Se=>re(Se)||W.has(Se.sha)||Q.has(Se.sha),he=Se=>{Se===(a||s)?m.delete("viewBranch"):m.set("viewBranch",Se),f(m)},oe=Se=>{Se===o?m.delete("compare"):m.set("compare",Se),f(m)},ge=()=>{const Re=$.flatMap(([Be,Me])=>Me.editedEntities||Me.entities||[]).filter(Be=>!V.has(Be.sha)&&!W.has(Be.sha)&&!Q.has(Be.sha)&&!re(Be));O(Re)},_e=S.length,je=_.length,pe=$.flatMap(([Se,Re])=>Re.editedEntities||Re.entities||[]),Z=pe.filter(Se=>Se.entityType==="visual"||Se.entityType==="library"),Ne=Z.length>0&&Z.every(Se=>V.has(Se.sha)),de=Z.length>0&&!Ne&&Z.every(Se=>W.has(Se.sha)||Q.has(Se.sha)),ne=B||Ne||de,be=Ne?"Analyzing...":de?"Queued...":B?"Analyzing...":"Analyze All";return n("div",{className:"bg-[#F8F7F6] min-h-screen",children:d("div",{className:"px-20 py-12",children:[d("div",{className:"mb-8",children:[n("h1",{className:"text-[28px] font-semibold text-gray-900 mb-2",children:"Git Changes"}),d("p",{className:"text-[15px] text-gray-500",children:["This is a list of all the files that are affected by your local changes. ",n("strong",{children:"Analyze a file to get simulations."})]})]}),n("div",{className:"mb-6",children:n(SS,{activeTab:b,onTabChange:v,uncommittedCount:_e,branchCount:je})}),s&&b==="branch"&&n("div",{className:"bg-white border-b border-gray-200 rounded-t-lg px-5 py-4 mb-3",children:s===o?d("div",{className:"text-gray-700",children:["You are currently on the primary branch,"," ",n("span",{className:"text-cyblack-75",children:o}),"."]}):d("div",{className:"flex gap-6 items-center",children:[d("div",{className:"shrink-0",children:[n("div",{className:"text-[11px] text-gray-500 mb-2 uppercase",children:"Changes in Branch:"}),i.length>0?d("div",{className:"relative w-50",children:[n("select",{value:s,onChange:Se=>he(Se.target.value),className:"appearance-none bg-gray-50 border border-gray-200 rounded px-2.5 pr-6 text-[13px] h-9.75 w-full cursor-pointer focus:outline-none focus:ring-0 focus:border-2 focus:border-[#005c75] hover:border-gray-300 transition-colors",children:i.map(Se=>n("option",{value:Se,children:Se},Se))}),n("svg",{className:"absolute right-2 top-1/2 -translate-y-1/2 w-3 h-3 text-gray-500 pointer-events-none",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",children:n("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M19 9l-7 7-7-7"})})]}):n("span",{className:"text-gray-900 font-medium text-[12px]",children:s})]}),d("div",{className:"flex-shrink-0",children:[n("div",{className:"text-[11px] text-gray-500 mb-2 uppercase",children:"Compared To:"}),d("div",{className:"relative w-[200px]",children:[n("select",{value:l,onChange:Se=>oe(Se.target.value),className:"appearance-none bg-gray-50 border border-gray-200 rounded px-[10px] pr-6 text-[13px] h-[39px] w-full cursor-pointer focus:outline-none focus:ring-0 focus:border-2 focus:border-[#005c75] hover:border-gray-300 transition-colors",children:i.filter(Se=>Se!==s).map(Se=>n("option",{value:Se,children:Se},Se))}),n("svg",{className:"absolute right-2 top-1/2 -translate-y-1/2 w-3 h-3 text-gray-500 pointer-events-none",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",children:n("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M19 9l-7 7-7-7"})})]})]}),n("div",{className:"flex-1 mt-6",children:d("div",{className:"relative flex items-center",children:[n("svg",{className:"absolute left-3 w-4 h-4 text-gray-400 pointer-events-none",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",children:n("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z"})}),n("input",{type:"text",placeholder:"Search component",className:"w-full bg-gray-50 border border-gray-200 rounded pl-9 pr-[10px] text-[13px] h-[39px] placeholder:text-gray-400 focus:outline-none focus:ring-0 focus:border-2 focus:border-[#005c75] transition-colors"})]})})]})}),n("div",{className:"mb-3",children:d("div",{className:"flex items-center justify-between",children:[d("div",{className:"flex items-center",children:[d("span",{className:"font-mono uppercase",style:{fontSize:"11px",color:"#8b8b8b",fontWeight:500,letterSpacing:"0.05em"},children:[n("span",{style:{color:"#000000"},children:$.length})," ","modified ",$.length===1?"file":"files"]}),d("div",{className:"relative group inline-flex items-center ml-1.5",children:[n("svg",{className:"w-3 h-3 text-gray-400 cursor-help",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:n("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M13 16h-1v-4h-1m1-4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z"})}),n("div",{className:"absolute left-0 top-full mt-2 hidden group-hover:block z-50 w-80",children:d("div",{className:"bg-gray-900 text-white text-xs rounded-lg px-3 py-2 shadow-lg",children:["In CodeYam, an entity is a discrete, analyzable unit of code that can be independently simulated and tested.",n("div",{className:"absolute -top-1 left-4 w-2 h-2 bg-gray-900 transform rotate-45"})]})})]}),n("span",{className:"font-mono uppercase",style:{fontSize:"11px",color:"#d1d5db",fontWeight:500,letterSpacing:"0.05em",marginLeft:"8px"},children:"|"}),d("span",{className:"font-mono uppercase",style:{fontSize:"11px",color:"#8b8b8b",fontWeight:500,letterSpacing:"0.05em",marginLeft:"8px"},children:[n("span",{style:{color:"#000000"},children:pe.length})," ",pe.length===1?"entity":"entities"]})]}),$.length>0&&d("div",{className:"flex gap-6",children:[d("button",{onClick:G,className:"text-[#005c75] hover:bg-[#E6F5F8] hover:text-[#003d4f] font-mono uppercase transition-all cursor-pointer px-3 py-1 rounded flex items-center gap-1.5",style:{fontSize:"11px",fontWeight:500,letterSpacing:"0.05em"},children:[n(Yl,{className:"w-3.5 h-3.5"}),"Expand All"]}),d("button",{onClick:J,className:"text-[#005c75] hover:bg-[#E6F5F8] hover:text-[#003d4f] font-mono uppercase transition-all cursor-pointer px-3 py-1 rounded flex items-center gap-1.5",style:{fontSize:"11px",fontWeight:500,letterSpacing:"0.05em"},children:[n(Ul,{className:"w-3.5 h-3.5"}),"Collapse All"]})]})]})}),d("div",{className:"overflow-hidden",children:[b==="branch"&&s&&n(NS,{files:_,currentBranch:s,defaultBranch:o,baseBranch:l,allBranches:i,expandedFiles:I,isEntityBeingAnalyzed:q,isEntityQueued:le,sortOrder:x,onToggleFile:Se=>T(Se,I,R),onBranchChange:oe,onGenerateSimulation:D,onSortChange:k,onAnalyzeAll:ge,analyzeAllDisabled:ne,analyzeAllText:be}),b==="uncommitted"&&n(CS,{files:S,entityImpactMap:j,expandedFiles:I,isEntityBeingAnalyzed:q,isEntityQueued:le,projectSlug:u,baseBranch:l,currentBranch:s,sortOrder:x,onToggleFile:Se=>T(Se,I,R),onShowFileDiff:z,onGenerateSimulation:D,onSortChange:k,onAnalyzeAll:ge,analyzeAllDisabled:ne,analyzeAllText:be})]}),F&&n(vS,{diffView:F,diffContent:H,isLoading:U,entities:t,onClose:A}),g&&u&&n(Qt,{projectSlug:u,onClose:()=>y(null)})]})})}),PS=Object.freeze(Object.defineProperty({__proto__:null,action:kS,default:AS,loader:ES,meta:_S},Symbol.toStringTag,{value:"Module"})),Cs=[{name:"Desktop",width:1440,height:900},{name:"Laptop",width:1024,height:768},{name:"Tablet",width:768,height:1024},{name:"Mobile",width:375,height:667}];function jS(e){if(!e)return Cs;const t=Object.entries(e).map(([s,a])=>({name:s,width:a.width,height:a.height})),r=new Set(t.map(s=>s.name));return[...t,...Cs.filter(s=>!r.has(s.name))]}function TS({featureName:e,editorStep:t,editorStepLabel:r,onContinue:s}){const a=ie(o=>{o.key==="Enter"&&(o.preventDefault(),s())},[s]);return se(()=>(window.addEventListener("keydown",a),()=>window.removeEventListener("keydown",a)),[a]),n("div",{className:"flex items-center justify-center h-full bg-[#1e1e1e] text-[#d4d4d4]",children:d("div",{className:"max-w-md w-full mx-4 p-6 bg-[#252526] border border-[#3d3d3d] rounded-lg",children:[n("h2",{className:"text-lg font-semibold mb-3 text-white",children:"Resume Previous Session?"}),n("p",{className:"text-sm text-[#999] mb-4",children:"An editor session is still in progress:"}),d("div",{className:"bg-[#1e1e1e] rounded p-3 mb-5 text-sm",children:[e&&d("div",{className:"mb-1",children:[n("span",{className:"text-[#999]",children:"Feature:"})," ",n("span",{className:"text-white",children:e})]}),t!=null&&r&&d("div",{children:[n("span",{className:"text-[#999]",children:"Step:"})," ",d("span",{className:"text-white",children:[t," (",r,")"]})]})]}),n("button",{onClick:s,className:"w-full px-4 py-2 text-sm rounded transition-colors cursor-pointer bg-[#005c75] text-white font-medium hover:bg-[#004d63] ring-2 ring-white/50",children:"Continue Session"})]})})}function ri(e){const[t,r]=M(null),[s,a]=M(!1),o=ie(()=>{e&&(a(!0),fetch(`/api/editor-test-results?testFile=${encodeURIComponent(e)}`).then(i=>i.json()).then(i=>{r(i),a(!1)}).catch(()=>{r({testFilePath:e,status:"error",testCases:[],errorMessage:"Failed to fetch test results"}),a(!1)}))},[e]);return{results:t,isRunning:s,runTests:o}}function ea({scenarioId:e,updatedAt:t,alt:r,className:s="",imgClassName:a=""}){const[o,i]=M(!1),l=`/api/editor-scenario-image/${e}.png${t?`?v=${encodeURIComponent(t)}`:""}`;return se(()=>{i(!1)},[e]),o?n("div",{className:`flex items-center justify-center ${s}`,children:n("span",{className:"text-[8px] text-gray-500",children:"No img"})}):n("div",{className:s,children:n("img",{src:l,alt:r,className:a,loading:"lazy",onError:()=>i(!0)})})}function ir({scenarioId:e,updatedAt:t,hasScreenshot:r,imgSrc:s,name:a,isActive:o,onSelect:i}){return d("button",{onClick:i,className:"flex flex-col items-center gap-1 cursor-pointer group",title:a,children:[n("div",{className:`w-32 h-32 rounded overflow-hidden border-2 transition-all bg-[#1a1a1a] ${o?"border-[#005c75] ring-1 ring-[#005c75]":"border-transparent hover:border-[#4d4d4d]"}`,children:e&&r?n(ea,{scenarioId:e,updatedAt:t,alt:a,className:"w-full h-full",imgClassName:"w-full h-full object-contain"}):!e&&s?n("img",{src:s,alt:a,className:"w-full h-full object-contain",loading:"lazy"}):n("div",{className:"w-full h-full bg-[#1a1a1a] flex items-center justify-center",children:n("span",{className:"text-[8px] text-gray-600",children:"No img"})})}),n("span",{className:`text-[10px] leading-tight text-center truncate w-32 ${o?"text-white":"text-gray-500 group-hover:text-gray-300"}`,children:a})]})}function $a({testFile:e,entityName:t}){const{results:r,isRunning:s,runTests:a}=ri(e);if(s&&!r)return d("div",{className:"px-2 pt-1 flex items-center gap-1.5",children:[n("span",{className:"w-1.5 h-1.5 rounded-full bg-[#005c75] animate-pulse"}),n("span",{className:"text-[10px] text-gray-400",children:"Running tests..."})]});if(!r)return null;if(r.status==="error")return n("div",{className:"px-2 pt-1",children:n("span",{className:"text-[10px] text-red-400",children:r.errorMessage})});const o=t?r.testCases.filter(c=>c.fullName.startsWith(t)):r.testCases,i=o.length>0?o:r.testCases;if(i.length===0)return null;const l=t?`${t} > `:"";return d("div",{className:"px-2 pt-1 space-y-0.5",children:[i.map(c=>{var u;const p=l&&c.fullName.startsWith(l)?c.fullName.slice(l.length):c.fullName;return d("div",{children:[d("div",{className:"flex items-center gap-1.5",children:[c.status==="passed"?n("span",{className:"text-green-400 text-[10px]",children:"✓"}):c.status==="failed"?n("span",{className:"text-red-400 text-[10px]",children:"✗"}):n("span",{className:"text-gray-500 text-[10px]",children:"—"}),n("span",{className:`text-[10px] ${c.status==="passed"?"text-green-400":c.status==="failed"?"text-red-400":"text-gray-500"}`,children:p})]}),c.status==="failed"&&((u=c.failureMessages)==null?void 0:u.map((h,m)=>n("div",{className:"pl-4 text-[9px] text-red-300/70 truncate max-w-full",title:h,children:h.split(`
|
|
496
|
+
`)[0]},m)))]},c.fullName)}),n("button",{onClick:a,disabled:s,className:"mt-1 text-[10px] text-[#00a0c4] hover:text-[#00c4ee] transition-colors cursor-pointer disabled:opacity-50 bg-transparent border-none p-0",children:s?"Running...":"Re-run"})]})}function dn({filePath:e}){return e?d("div",{className:"flex items-center gap-1 px-2 mt-0.5",children:[d("a",{href:`/api/editor-file?path=${encodeURIComponent(e)}`,target:"_blank",rel:"noopener noreferrer",title:"Open file",className:"flex items-center gap-1 text-gray-500 hover:text-gray-300 transition-colors min-w-0",children:[n("span",{className:"text-[9px] truncate",children:e}),n("svg",{className:"shrink-0",width:"10",height:"10",viewBox:"0 0 12 12",fill:"none",children:n("path",{d:"M4.5 1.5H2.5C1.95 1.5 1.5 1.95 1.5 2.5V9.5C1.5 10.05 1.95 10.5 2.5 10.5H9.5C10.05 10.5 10.5 10.05 10.5 9.5V7.5M7.5 1.5H10.5M10.5 1.5V4.5M10.5 1.5L5 7",stroke:"currentColor",strokeWidth:"1.2",strokeLinecap:"round",strokeLinejoin:"round"})})]}),n(ht,{content:e,icon:!0,iconSize:10,className:"shrink-0 text-gray-500 hover:text-gray-300 transition-colors"})]}):null}function MS({scenarios:e,projectRoot:t,activeScenarioId:r,onScenarioSelect:s,zoomComponent:a,focusedEntity:o,onZoomChange:i,analyzedEntities:l=[],glossaryFunctions:c=[],activeAnalyzedScenarioId:p,onAnalyzedScenarioSelect:u,entityImports:h,pageFilePaths:m={}}){const{pageGroups:f,componentGroups:g}=ae(()=>{var j;const C=new Map,S=new Map;for(const $ of e)if($.componentName){const P=S.get($.componentName)||[];P.push($),S.set($.componentName,P)}else if(Ys($.url)){const P=(j=$.url)==null?void 0:j.match(/[?&]c=([^&]+)/),I=P?decodeURIComponent(P[1]):"Isolated",R=S.get(I)||[];R.push($),S.set(I,R)}else{const P=$.pageFilePath?It(_t($.pageFilePath)):ct($.url),I=C.get(P)||[];I.push($),C.set(P,I)}const _=new Map([...S.entries()].sort(([$],[P])=>$.localeCompare(P)));return{pageGroups:C,componentGroups:_}},[e]),y=ae(()=>{const C=new Set((l||[]).filter(_=>_.entityType==="visual").map(_=>_.name)),S=new Map;for(const[_,j]of g)C.has(_)||S.set(_,j);return S},[g,l]),{visualEntities:x,libraryEntities:w}=ae(()=>{const C=l.filter(_=>_.entityType==="visual").sort((_,j)=>_.name.localeCompare(j.name)),S=l.filter(_=>_.entityType==="library"||_.entityType==="functionCall").sort((_,j)=>_.name.localeCompare(j.name));return{visualEntities:C,libraryEntities:S}},[l]),b=ae(()=>{const C=new Set(w.map(S=>S.name));return c.filter(S=>!C.has(S.name)).sort((S,_)=>S.name.localeCompare(_.name))},[c,w]),v=l.some(C=>C.isAnalyzing),N=fe(null),k=fe(0),E=ie(()=>{N.current&&(k.current=N.current.scrollTop)},[]);if(se(()=>{N.current&&k.current>0&&(N.current.scrollTop=k.current)}),e.length===0&&l.length===0&&b.length===0)return n("div",{className:"flex-1 flex items-center justify-center",children:d("div",{className:"text-center text-gray-500 px-8",children:[n("p",{className:"text-sm font-medium mb-2",children:"No scenarios yet"}),n("p",{className:"text-xs",children:"Scenarios will appear here as Claude creates them alongside your code. Each scenario represents a different state of your app's data."})]})});if(a&&o){const C=o.name,S=o.filePath,_=o.sha,j=e.filter(T=>T.componentName===C||T.componentPath===S||!T.componentName&&(T.pageFilePath===S||_&&T.entitySha===_)),$=new Set((h==null?void 0:h[C])||[]),P=$.size>0,I=P?x.filter(T=>$.has(T.name)):[],R=P?w.filter(T=>$.has(T.name)):[];return n("div",{className:"flex-1 overflow-auto",children:d("div",{className:"p-3 space-y-1",children:[d("button",{onClick:()=>i(void 0),className:"w-full flex items-center gap-2 px-3 py-1.5 text-xs text-gray-400 hover:text-white transition-colors cursor-pointer",children:[n("svg",{width:"12",height:"12",viewBox:"0 0 12 12",fill:"none",className:"shrink-0",children:n("path",{d:"M7.5 9L4.5 6L7.5 3",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})}),"All scenarios"]}),n("div",{className:"px-3 py-1.5",children:n("span",{className:"text-xs font-semibold text-white uppercase tracking-wider",children:o.displayName})}),n("div",{className:"flex flex-wrap gap-2 px-2",children:j.length===0?n("div",{className:"px-3 py-2 text-xs text-gray-500",children:"No scenarios for this component"}):j.map(T=>n(ir,{scenarioId:T.id,updatedAt:T.updatedAt,hasScreenshot:!!T.screenshotPath,name:T.name,isActive:T.id===r,onSelect:()=>s(T)},T.id))}),I.length>0&&d("div",{className:"pt-2 mt-1 border-t border-[#3d3d3d]",children:[n("div",{className:"px-2 py-1",children:n("span",{className:"text-xs font-semibold text-gray-500 uppercase tracking-wider",children:"Components"})}),I.map(T=>d("div",{className:"mt-2",children:[n("div",{className:"flex items-center gap-2 px-2 py-1",children:n("button",{onClick:()=>i(T.name),className:"text-[11px] font-medium text-gray-400 truncate cursor-pointer hover:text-white transition-colors bg-transparent border-none p-0",children:T.name})}),n(dn,{filePath:T.filePath,projectRoot:t}),(T.scenarios.length>0||T.pendingScenarios.length>0)&&n("div",{className:"flex flex-wrap gap-2 px-2 pt-1",children:T.scenarios.map(G=>n(ir,{imgSrc:G.screenshotPath?`/api/screenshot/${G.screenshotPath}`:null,name:G.name,isActive:G.id===p,onSelect:()=>u==null?void 0:u({analysisId:T.analysisId,scenarioId:G.id,scenarioName:G.name,entitySha:T.sha,entityName:T.name})},G.id))})]},T.sha))]}),R.length>0&&d("div",{className:"pt-2 mt-1",children:[n("div",{className:"px-2 py-1",children:n("span",{className:"text-xs font-semibold text-gray-500 uppercase tracking-wider",children:"Functions"})}),R.map(T=>d("div",{className:"mt-2",children:[n("div",{className:"px-2 py-1",children:n("span",{className:"text-[11px] font-medium text-gray-300",children:T.name})}),n(dn,{filePath:T.filePath,projectRoot:t}),T.testFile&&n($a,{testFile:T.testFile,entityName:T.name})]},T.sha))]})]})})}return n("div",{ref:N,onScroll:E,className:"flex-1 overflow-auto",children:d("div",{className:"p-3 space-y-3",children:[f.size>0&&d("div",{children:[n("div",{className:"px-2 py-1",children:n("span",{className:"text-xs font-semibold text-gray-500 uppercase tracking-wider",children:"Application"})}),[...f.entries()].sort(([C],[S])=>C==="Home"?-1:S==="Home"?1:C.localeCompare(S)).map(([C,S])=>{var _,j;return d("div",{className:"px-2 pt-1",children:[n("div",{className:"py-0.5",children:n("span",{className:"text-[11px] font-medium text-gray-400",children:C})}),(((_=S[0])==null?void 0:_.pageFilePath)||m[C])&&n(dn,{filePath:((j=S[0])==null?void 0:j.pageFilePath)||m[C],projectRoot:t}),n("div",{className:"flex flex-wrap gap-2 pt-1",children:S.map($=>n(ir,{scenarioId:$.id,updatedAt:$.updatedAt,hasScreenshot:!!$.screenshotPath,name:$.name,isActive:$.id===r&&!p,onSelect:()=>s($)},$.id))})]},C)})]}),y.size>0&&d("div",{className:"pt-2 mt-1 border-t border-[#3d3d3d]",children:[n("div",{className:"px-2 py-1",children:n("span",{className:"text-xs font-semibold text-gray-500 uppercase tracking-wider",children:"Components"})}),[...y.entries()].map(([C,S])=>{var _;return d("div",{className:"mt-2",children:[n("div",{className:"flex items-center justify-between px-2 py-1",children:n("button",{onClick:()=>i(C),className:"text-[11px] font-medium text-gray-400 truncate cursor-pointer hover:text-white transition-colors bg-transparent border-none p-0",children:C})}),((_=S[0])==null?void 0:_.componentPath)&&n(dn,{filePath:S[0].componentPath,projectRoot:t}),n("div",{className:"flex flex-wrap gap-2 px-2 pt-1",children:S.map(j=>n(ir,{scenarioId:j.id,updatedAt:j.updatedAt,hasScreenshot:!!j.screenshotPath,name:j.name,isActive:j.id===r&&!p,onSelect:()=>s(j)},j.id))})]},C)})]}),x.length>0&&d("div",{className:"pt-2 mt-1 border-t border-[#3d3d3d]",children:[d("div",{className:"px-2 py-1",children:[n("span",{className:"text-xs font-semibold text-gray-500 uppercase tracking-wider",children:"Components"}),v&&e.length===0&&l.every(C=>C.scenarioCount===0)&&n("span",{className:"ml-2 text-[10px] text-gray-500",children:"— Entities are being analyzed..."})]}),x.map(C=>d("div",{className:"mt-2",children:[d("div",{className:"flex items-center gap-2 px-2 py-1",children:[n("button",{onClick:()=>i(C.name),className:"text-[11px] font-medium text-gray-400 truncate cursor-pointer hover:text-white transition-colors bg-transparent border-none p-0",children:C.name}),C.isAnalyzing&&C.scenarioCount===0&&d("span",{className:"flex items-center gap-1.5 text-[10px] text-gray-400",children:[n("span",{className:"w-1.5 h-1.5 rounded-full bg-[#005c75] animate-pulse"}),"Analyzing..."]})]}),n(dn,{filePath:C.filePath,projectRoot:t}),(C.scenarios.length>0||C.pendingScenarios.length>0)&&d("div",{className:"flex flex-wrap gap-2 px-2 pt-1",children:[C.scenarios.map(S=>n(ir,{imgSrc:S.screenshotPath?`/api/screenshot/${S.screenshotPath}`:null,name:S.name,isActive:S.id===p,onSelect:()=>u==null?void 0:u({analysisId:C.analysisId,scenarioId:S.id,scenarioName:S.name,entitySha:C.sha,entityName:C.name})},S.id)),C.pendingScenarios.map(S=>n("div",{className:"px-2.5 py-1 bg-[#2a2a2a] text-gray-400 text-[10px] rounded-full",title:S,children:S},S))]})]},C.sha))]}),(w.length>0||b.length>0)&&d("div",{className:`pt-2 mt-1 ${x.length>0?"":"border-t border-[#3d3d3d]"}`,children:[n("div",{className:"px-2 py-1",children:n("span",{className:"text-xs font-semibold text-gray-500 uppercase tracking-wider",children:"Functions"})}),w.map(C=>d("div",{className:"mt-2",children:[d("div",{className:"px-2 py-1",children:[n("span",{className:"text-[11px] font-medium text-gray-300",children:C.name}),C.isAnalyzing&&C.scenarioCount===0&&d("span",{className:"ml-2 inline-flex items-center gap-1.5 text-[10px] text-gray-400",children:[n("span",{className:"w-1.5 h-1.5 rounded-full bg-[#005c75] animate-pulse"}),"Analyzing..."]})]}),n(dn,{filePath:C.filePath,projectRoot:t}),C.testFile?n($a,{testFile:C.testFile,entityName:C.name}):n("div",{className:"px-2 pt-1",children:n("span",{className:"text-[10px] text-gray-500",children:"No test file"})})]},C.sha)),b.map(C=>d("div",{className:"mt-2",children:[n("div",{className:"px-2 py-1",children:n("span",{className:"text-[11px] font-medium text-gray-300",children:C.name})}),n(dn,{filePath:C.filePath,projectRoot:t}),n($a,{testFile:C.testFile,entityName:C.name})]},C.name))]})]})})}const Nl=120;function Jd({text:e,theme:t}){const[r,s]=M(!1),a=e.length>Nl,o=a&&!r?e.slice(0,Nl)+"…":e,i=t==="light";return d("div",{className:`px-4 py-2 ${i?"border-b border-gray-200 bg-gray-50":"border-b border-[#3d3d3d] bg-[#252525]"}`,children:[n("span",{className:"text-[9px] font-semibold uppercase tracking-wider text-gray-500",children:"User Prompt"}),d("p",{className:`text-[11px] mt-0.5 mb-0 leading-relaxed ${i?"text-gray-600":"text-gray-400"}`,children:[o,a&&n("button",{onClick:()=>s(!r),className:`ml-1 text-[11px] font-medium bg-transparent border-none p-0 cursor-pointer ${i?"text-blue-500 hover:text-blue-700":"text-[#00a0c4] hover:text-[#00c0e8]"}`,children:r?"Show less":"Read more…"})]})]})}function Cl({status:e}){const t={new:{label:"New",bg:"bg-green-900/40",text:"text-green-400",border:"border-green-700/50"},edited:{label:"Edited",bg:"bg-blue-900/40",text:"text-blue-400",border:"border-blue-700/50"},impacted:{label:"Impacted",bg:"bg-amber-900/40",text:"text-amber-400",border:"border-amber-700/50"}}[e.status];return n("span",{className:`${t.bg} ${t.text} ${t.border} border text-[8px] font-bold px-1 py-0 rounded-full uppercase tracking-wider`,children:t.label})}function $S({testFile:e,entityName:t}){const{results:r,isRunning:s,runTests:a}=ri(e);if(s&&!r)return d("div",{className:"pt-1 flex items-center gap-1.5",children:[n("span",{className:"w-1.5 h-1.5 rounded-full bg-[#00a0c4] animate-pulse"}),n("span",{className:"text-[10px] text-gray-500",children:"Running tests..."})]});if(!r)return null;if(r.status==="error")return n("div",{className:"pt-1",children:n("span",{className:"text-[10px] text-red-400",children:r.errorMessage})});const o=t?r.testCases.filter(c=>c.fullName.startsWith(t)):r.testCases,i=o.length>0?o:r.testCases;if(i.length===0)return null;const l=t?`${t} > `:"";return d("div",{className:"pt-1 space-y-0.5",children:[i.map(c=>{var u;const p=l&&c.fullName.startsWith(l)?c.fullName.slice(l.length):c.fullName;return d("div",{children:[d("div",{className:"flex items-center gap-1.5",children:[c.status==="passed"?n("span",{className:"text-green-400 text-[10px]",children:"✓"}):c.status==="failed"?n("span",{className:"text-red-400 text-[10px]",children:"✗"}):n("span",{className:"text-gray-500 text-[10px]",children:"—"}),n("span",{className:`text-[10px] ${c.status==="passed"?"text-green-400":c.status==="failed"?"text-red-400":"text-gray-500"}`,children:p})]}),c.status==="failed"&&((u=c.failureMessages)==null?void 0:u.map((h,m)=>n("div",{className:"pl-4 text-[9px] text-red-400/70 truncate max-w-full",title:h,children:h.split(`
|
|
497
|
+
`)[0]},m)))]},c.fullName)}),n("button",{onClick:a,disabled:s,className:"mt-1 text-[10px] text-[#00a0c4] hover:text-[#38bdf8] transition-colors cursor-pointer disabled:opacity-50 bg-transparent border-none p-0",children:s?"Running...":"Re-run"})]})}const IS={added:"text-green-400",untracked:"text-green-400",modified:"text-blue-400",renamed:"text-purple-400"};function RS({files:e}){return d("div",{className:"border-t border-[#3d3d3d] pt-2 mt-1",children:[d("span",{className:"text-[10px] font-semibold text-gray-500 uppercase tracking-wider",children:["Modified Files (",e.length,")"]}),n("div",{className:"mt-1 space-y-0.5 max-h-[150px] overflow-auto",children:e.map(t=>d("div",{className:"flex items-center gap-1.5",children:[n("span",{className:`text-[9px] font-bold uppercase w-[14px] text-center ${IS[t.status]||"text-gray-500"}`,children:t.status==="added"||t.status==="untracked"?"A":t.status==="modified"?"M":t.status==="renamed"?"R":"?"}),n("span",{className:"text-[10px] text-gray-400 truncate font-mono",children:t.path})]},t.path))})]})}const DS={feature:{label:"Feature",color:"bg-[#005c75]"},fix:{label:"Fix",color:"bg-amber-700"},refactor:{label:"Refactor",color:"bg-purple-700"},scaffold:{label:"Scaffold",color:"bg-green-700"},data:{label:"Data",color:"bg-blue-700"},milestone:{label:"Milestone",color:"bg-yellow-600"}};function OS(e){try{return new Date(e).toLocaleTimeString([],{hour:"2-digit",minute:"2-digit"})}catch{return""}}function FS(e){try{return new Date(e+"T00:00:00").toLocaleDateString([],{weekday:"long",month:"long",day:"numeric"})}catch{return e}}const LS=[{value:"1d",label:"1 Day"},{value:"3d",label:"3 Days"},{value:"7d",label:"1 Week"},{value:"30d",label:"1 Month"}];function zS({entries:e,onScreenshotClick:t}){const[r,s]=M(!1),[a,o]=M("7d"),i=ae(()=>Tx(e,a),[e,a]);return d("div",{className:"bg-[#2d2d2d] rounded-lg overflow-hidden",children:[d("button",{onClick:()=>s(!r),className:"w-full flex items-center justify-between px-3 py-2.5 cursor-pointer bg-transparent border-none text-left hover:bg-[#333] transition-colors",children:[n("span",{className:"text-xs font-semibold text-gray-400 uppercase tracking-wider",children:"Timeframe Summary"}),n("span",{className:`text-gray-500 text-[10px] transition-transform ${r?"rotate-180":""}`,children:"▼"})]}),r&&d("div",{className:"px-3 pb-3 space-y-3 border-t border-[#3d3d3d]",children:[n("div",{className:"flex gap-1 pt-2.5",children:LS.map(l=>n("button",{onClick:()=>o(l.value),className:`px-2.5 py-1 text-[10px] font-medium rounded transition-colors cursor-pointer border ${a===l.value?"bg-[#005c75] text-white border-[#005c75]":"bg-transparent text-gray-400 border-[#4d4d4d] hover:text-white hover:border-[#005c75]"}`,children:l.label},l.value))}),d("div",{className:"flex items-center gap-3 text-[11px] text-gray-400",children:[d("span",{children:[n("span",{className:"text-white font-medium",children:i.commitCount})," ",i.commitCount===1?"commit":"commits"]}),n("span",{className:"text-[#3d3d3d]",children:"|"}),d("span",{children:[n("span",{className:"text-white font-medium",children:i.totalScenarios})," ",i.totalScenarios===1?"scenario changed":"scenarios changed"]}),n("span",{className:"text-[#3d3d3d]",children:"|"}),d("span",{children:[n("span",{className:"text-white font-medium",children:i.entryCount})," ",i.entryCount===1?"entry":"entries"]})]}),i.totalScenarios===0?n("p",{className:"text-[11px] text-gray-500 italic m-0",children:"No scenario changes in this period."}):d("div",{className:"space-y-3",children:[i.appScenarios.length>0&&d("div",{className:"space-y-2",children:[n("span",{className:"text-[10px] font-semibold text-gray-500 uppercase tracking-wider",children:"Application"}),i.appScenarios.map(l=>n(Sl,{scenario:l,onScreenshotClick:t},l.name))]}),i.componentGroups.size>0&&d("div",{className:"space-y-2",children:[n("span",{className:"text-[10px] font-semibold text-gray-500 uppercase tracking-wider",children:"Components"}),[...i.componentGroups.entries()].sort(([l],[c])=>l.localeCompare(c)).map(([l,c])=>d("div",{className:"space-y-1.5",children:[n("span",{className:"text-[10px] font-medium text-gray-400",children:l}),c.map(p=>n(Sl,{scenario:p,onScreenshotClick:t},p.name))]},l))]})]})]})]})}function Sl({scenario:e,onScreenshotClick:t}){const r=e.name.indexOf(" - "),s=r!==-1?e.name.slice(r+3):e.name;return d("div",{className:"pl-2",children:[n("span",{className:"text-[10px] text-gray-500 block mb-1",children:s}),n("div",{className:"flex items-center gap-1 overflow-x-auto",children:e.screenshots.map((a,o)=>d("div",{className:"flex items-center shrink-0",children:[o>0&&n("span",{className:"text-[8px] text-gray-600 mx-0.5",children:"→"}),n("button",{type:"button",className:"w-16 h-16 rounded overflow-hidden border border-[#3d3d3d] hover:border-[#00a0c4] bg-[#1e1e1e] shrink-0 flex items-center justify-center cursor-pointer transition-colors",title:`${e.name} (${new Date(a.time).toLocaleDateString()})`,onClick:()=>t==null?void 0:t({screenshotUrl:`/api/editor-journal-image/${a.path.replace("screenshots/","")}`,commitSha:null,commitMessage:null,scenarioName:e.name}),children:n("img",{src:`/api/editor-journal-image/${a.path.replace("screenshots/","")}`,alt:e.name,className:"max-w-full max-h-full object-contain",loading:"lazy"})})]},a.path))})]})}function BS({isActive:e,onScreenshotClick:t,glossaryFunctions:r=[]}){const[s,a]=M([]),[o,i]=M(!0),[l,c]=M(new Set),p=ie(m=>{c(f=>{const g=new Set(f);return g.has(m)?g.delete(m):g.add(m),g})},[]),u=ie(async()=>{try{const m=await fetch("/api/editor-journal");if(m.ok){const f=await m.json();a(f.entries||[])}}catch{}finally{i(!1)}},[]);if(se(()=>{u()},[u]),se(()=>{e&&u()},[e,u]),se(()=>{if(!e)return;const m=setInterval(()=>void u(),5e3);return()=>clearInterval(m)},[e,u]),o)return n("div",{className:"flex-1 flex items-center justify-center",children:n("span",{className:"text-gray-500 text-sm",children:"Loading journal..."})});if(s.length===0)return n("div",{className:"flex-1 flex items-center justify-center",children:d("div",{className:"text-center text-gray-500 px-8",children:[n("p",{className:"text-sm font-medium mb-2",children:"No journal entries yet"}),n("p",{className:"text-xs",children:"Journal entries will appear as you build. Claude records features, screenshots, and commits as the project evolves."})]})});const h=Mx(s);return n("div",{className:"flex-1 overflow-auto",children:d("div",{className:"p-3 space-y-4",children:[n(zS,{entries:s,onScreenshotClick:t}),[...h.entries()].map(([m,f])=>d("div",{children:[n("div",{className:"px-3 py-1.5 sticky top-0 bg-[#1e1e1e] z-10",children:n("span",{className:"text-[10px] font-semibold text-gray-500 uppercase tracking-wider",children:FS(m)})}),n("div",{className:"space-y-2",children:f.map((g,y)=>{const x=DS[g.type]||{label:g.type,color:"bg-gray-600"},w=`${g.time}-${y}`,b=l.has(w);return d("div",{className:"bg-[#2d2d2d] rounded-lg overflow-hidden",children:[d("div",{className:`p-3 space-y-2 ${b?"":"max-h-[300px] overflow-y-auto"}`,children:[n("div",{className:"flex items-start gap-2 cursor-pointer",onClick:()=>p(w),children:d("div",{className:"flex-1 min-w-0",children:[d("div",{className:"flex items-center gap-2",children:[n("span",{className:"text-sm font-medium text-white truncate",children:g.title}),n("span",{className:`${x.color} text-white text-[9px] font-bold px-1.5 py-0.5 rounded uppercase tracking-wider shrink-0`,children:x.label})]}),n("span",{className:"text-[10px] text-gray-500",children:OS(g.time)}),g.featureName&&n("span",{className:"text-[10px] text-gray-500 italic truncate",title:g.featureName,children:g.featureName})]})}),g.userPrompt&&n(Jd,{text:g.userPrompt,theme:"dark"}),n("p",{className:"text-xs text-gray-400 leading-relaxed",children:g.description}),g.screenshot&&n("button",{type:"button",className:"rounded overflow-hidden border border-[#3d3d3d] hover:border-[#00a0c4] bg-[#1e1e1e] flex items-center justify-center p-1 cursor-pointer transition-colors w-full",onClick:()=>t==null?void 0:t({screenshotUrl:`/api/editor-journal-image/${g.screenshot.replace("screenshots/","")}`,commitSha:g.commitSha,commitMessage:g.commitMessage,scenarioName:g.title}),children:n("img",{src:`/api/editor-journal-image/${g.screenshot.replace("screenshots/","")}`,alt:g.title,className:"max-w-full max-h-full object-contain",loading:"lazy"})}),g.scenarioScreenshots&&g.scenarioScreenshots.length>0&&(()=>{const v=$x(g.scenarioScreenshots),N=g.entityChangeStatus,k=v.filter(([j])=>j==="App").flatMap(([,j])=>j),E=v.filter(([j])=>j!=="App"),C=new Map;for(const j of k){const $=j,P=$.pageFilePath?It(_t($.pageFilePath)):ct($.url??null),I=C.get(P)||[];I.push(j),C.set(P,I)}const S=[...C.entries()],_=j=>n("button",{type:"button",className:"w-[4.5rem] h-[4.5rem] rounded overflow-hidden border border-[#3d3d3d] hover:border-[#00a0c4] bg-[#1e1e1e] shrink-0 flex items-center justify-center cursor-pointer transition-colors",onClick:()=>t==null?void 0:t({screenshotUrl:`/api/editor-journal-image/${j.path.replace("screenshots/","")}`,commitSha:g.commitSha,commitMessage:g.commitMessage,scenarioName:j.name}),children:n("img",{src:`/api/editor-journal-image/${j.path.replace("screenshots/","")}`,alt:j.name,title:j.name,className:"max-w-full max-h-full object-contain",loading:"lazy"})},j.path);return d("div",{className:"space-y-2",children:[S.length>0&&d("div",{className:"space-y-1.5",children:[n("span",{className:"text-[10px] font-semibold text-gray-500 uppercase tracking-wider",children:"Application"}),S.map(([j,$])=>d("div",{children:[d("div",{className:"flex items-center gap-1.5",children:[n("span",{className:"text-[10px] font-medium text-gray-400",children:j}),(N==null?void 0:N[j])&&n(Cl,{status:N[j]})]}),n("div",{className:"flex flex-wrap gap-1 mt-0.5",children:$.map(_)})]},j))]}),E.length>0&&d("div",{className:"space-y-1.5",children:[n("span",{className:"text-[10px] font-semibold text-gray-500 uppercase tracking-wider",children:"Components"}),E.map(([j,$])=>d("div",{children:[d("div",{className:"flex items-center gap-1.5",children:[n("span",{className:"text-[10px] font-medium text-gray-400",children:j}),(N==null?void 0:N[j])&&n(Cl,{status:N[j]})]}),n("div",{className:"flex flex-wrap gap-1 mt-0.5",children:$.map(_)})]},j))]})]})})(),r.length>0&&d("div",{className:"space-y-1.5",children:[n("span",{className:"text-[10px] font-semibold text-gray-500 uppercase tracking-wider",children:"Functions"}),n("div",{className:"space-y-2",children:r.map(v=>d("div",{children:[n("span",{className:"text-[11px] font-medium text-gray-200",children:v.name}),n("span",{className:"text-[9px] text-gray-500 truncate block",children:v.filePath}),v.testFile?n($S,{testFile:v.testFile,entityName:v.name}):n("div",{className:"pt-1",children:n("span",{className:"text-[10px] text-gray-500",children:"No test file"})})]},v.name))})]}),g.commitSha&&d("div",{className:"flex items-center gap-1.5 text-[10px]",children:[n("span",{className:"font-mono text-[#00a0c4] bg-[#00a0c4]/10 px-1.5 py-0.5 rounded",children:g.commitSha.slice(0,7)}),n("span",{className:"text-gray-500 truncate",children:g.commitMessage})]}),b&&g.modifiedFiles&&g.modifiedFiles.length>0&&n(RS,{files:g.modifiedFiles})]}),d("button",{onClick:()=>p(w),className:"w-full py-1.5 text-[10px] text-gray-500 hover:text-gray-300 border-t border-[#3d3d3d] transition-colors cursor-pointer",children:["——— ",b?"Collapse":"Expand"," ———"]})]},w)})})]},m))]})})}function YS({prompt:e,height:t=300,onClose:r}){const s=fe(null),a=fe(null),o=fe(null),i=fe(!1),l=fe(e);return se(()=>{const c=s.current;if(!c)return;let p=!1,u=null;async function h(){const[m,f]=await Promise.all([import("@xterm/xterm"),import("@xterm/addon-fit")]);if(p)return;{let C=document.getElementById("xterm-css");C||(C=document.createElement("style"),C.id="xterm-css",document.head.appendChild(C)),C.textContent=`
|
|
498
|
+
.xterm { cursor: text; position: relative; user-select: none; -ms-user-select: none; -webkit-user-select: none; }
|
|
499
|
+
.xterm.focus, .xterm:focus { outline: none; }
|
|
500
|
+
.xterm .xterm-helpers { position: absolute; top: 0; z-index: 5; }
|
|
501
|
+
.xterm .xterm-helper-textarea { padding: 0; border: 0; margin: 0; position: absolute; opacity: 0; left: -9999em; top: 0; width: 0; height: 0; z-index: -5; white-space: nowrap; overflow: hidden; resize: none; caret-color: transparent !important; clip-path: inset(100%) !important; }
|
|
502
|
+
.xterm .composition-view { background: #000; color: #FFF; display: none; position: absolute; white-space: nowrap; z-index: 1; }
|
|
503
|
+
.xterm .composition-view.active { display: block; }
|
|
504
|
+
.xterm .xterm-viewport { background-color: #000; overflow-y: scroll; cursor: default; position: absolute; right: 0; left: 0; top: 0; bottom: 0; }
|
|
505
|
+
.xterm .xterm-screen { position: relative; }
|
|
506
|
+
.xterm .xterm-screen canvas { position: absolute; left: 0; top: 0; }
|
|
507
|
+
.xterm .xterm-scroll-area { visibility: hidden; }
|
|
508
|
+
.xterm-char-measure-element { display: inline-block; visibility: hidden; position: absolute; top: 0; left: -9999em; line-height: normal; }
|
|
509
|
+
.xterm.enable-mouse-events { cursor: default; }
|
|
510
|
+
.xterm.xterm-cursor-pointer, .xterm .xterm-cursor-pointer { cursor: pointer; }
|
|
511
|
+
.xterm.column-select.focus { cursor: crosshair; }
|
|
512
|
+
.xterm .xterm-accessibility:not(.debug), .xterm .xterm-message { position: absolute; left: 0; top: 0; bottom: 0; right: 0; z-index: 10; color: transparent; pointer-events: none; }
|
|
513
|
+
.xterm .xterm-accessibility-tree:not(.debug) *::selection { color: transparent; }
|
|
514
|
+
.xterm .xterm-accessibility-tree { user-select: text; white-space: pre; }
|
|
515
|
+
.xterm .live-region { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
|
|
516
|
+
.xterm-dim { opacity: 1 !important; }
|
|
517
|
+
.xterm-underline-1 { text-decoration: underline; }
|
|
518
|
+
.xterm-underline-2 { text-decoration: double underline; }
|
|
519
|
+
.xterm-underline-3 { text-decoration: wavy underline; }
|
|
520
|
+
.xterm-underline-4 { text-decoration: dotted underline; }
|
|
521
|
+
.xterm-underline-5 { text-decoration: dashed underline; }
|
|
522
|
+
.xterm-overline { text-decoration: overline; }
|
|
523
|
+
.xterm-strikethrough { text-decoration: line-through; }
|
|
524
|
+
.xterm-screen .xterm-decoration-container .xterm-decoration { z-index: 6; position: absolute; }
|
|
525
|
+
.xterm-screen .xterm-decoration-container .xterm-decoration.xterm-decoration-top-layer { z-index: 7; }
|
|
526
|
+
.xterm-decoration-overview-ruler { z-index: 8; position: absolute; top: 0; right: 0; pointer-events: none; }
|
|
527
|
+
.xterm-decoration-top { z-index: 2; position: relative; }
|
|
528
|
+
`}const g=new m.Terminal({theme:{background:"#1a1a1a",foreground:"#d4d4d4",cursor:"#d4d4d4",selectionBackground:"#264f78"},fontSize:12,fontFamily:"'IBM Plex Mono', 'Menlo', 'Monaco', monospace",cursorBlink:!0,scrollback:5e3,allowProposedApi:!0}),y=new f.FitAddon;g.loadAddon(y),g.open(c),requestAnimationFrame(()=>{try{y.fit()}catch{}}),o.current=g;let x=null;try{const C=await fetch("/api/editor-scenario-prompt",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({prompt:l.current})});C.ok&&(x=(await C.json()).promptFile)}catch{}if(p)return;const w=window.location.protocol==="https:"?"wss:":"ws:",b=window.location.host,v=new URLSearchParams;v.set("entityName","inline-claude");const N=`${w}//${b}/ws/terminal?${v.toString()}`,k=new WebSocket(N);a.current=k,k.onopen=()=>{k.send(JSON.stringify({type:"resize",cols:g.cols,rows:g.rows}))};let E=!1;k.onmessage=C=>{try{const S=JSON.parse(C.data);if(S.type==="session-id"&&!E){E=!0,setTimeout(()=>{const _=x?`claude "Read the file at '${x.replace(/'/g,"'\\''")}' for your instructions."`:"claude";k.send(JSON.stringify({type:"input",data:_+"\r"}))},300);return}if(S.type==="output"&&S.data){g.write(S.data);return}}catch{g.write(C.data)}},k.onclose=()=>{i.current||g.write(`\r
|
|
529
|
+
\x1B[90m--- Session ended ---\x1B[0m\r
|
|
530
|
+
`)},k.onerror=()=>{g.write(`\r
|
|
531
|
+
\x1B[31mConnection error\x1B[0m\r
|
|
532
|
+
`)},g.onData(C=>{k.readyState===WebSocket.OPEN&&k.send(JSON.stringify({type:"input",data:C}))}),u=new ResizeObserver(()=>{try{y.fit(),k.readyState===WebSocket.OPEN&&k.send(JSON.stringify({type:"resize",cols:g.cols,rows:g.rows}))}catch{}}),u.observe(c)}return h(),()=>{var m,f;p=!0,i.current=!0,u==null||u.disconnect(),((m=a.current)==null?void 0:m.readyState)===WebSocket.OPEN&&a.current.close(),(f=o.current)==null||f.dispose()}},[]),d("div",{className:"border-t border-[#2d2d2d]",children:[d("div",{className:"flex items-center justify-between px-3 py-1.5 bg-[#1e1e1e]",children:[n("span",{className:"text-[10px] font-medium text-[#00a0c4]",children:"Claude"}),r&&n("button",{onClick:r,className:"text-gray-500 hover:text-gray-300 text-[10px] bg-transparent border-none cursor-pointer",children:"Close"})]}),n("div",{ref:s,style:{height:t,background:"#1a1a1a",padding:"4px 0",position:"relative",overflow:"hidden"}})]})}const _l=()=>n("svg",{width:"12",height:"12",viewBox:"0 0 12 12",fill:"none",className:"text-gray-500 shrink-0",children:n("path",{d:"M4.5 3L7.5 6L4.5 9",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})});function US(e,t){if(e.length<=t)return e;const r=t-2;return[e[0],"ellipsis",...e.slice(e.length-r)]}function kl({items:e,onNavigate:t}){if(e.length===0)return null;const r=US(e,4);return n("nav",{className:"flex items-center gap-1 text-xs min-w-0",children:r.map((s,a)=>{if(s==="ellipsis")return d("span",{className:"flex items-center gap-1",children:[n(_l,{}),n("span",{className:"text-gray-500",children:"..."})]},"ellipsis");const o=a===r.length-1;return d("span",{className:"flex items-center gap-1 min-w-0",children:[a>0&&n(_l,{}),o?n("span",{className:"text-white font-medium truncate",children:s.name}):n("button",{onClick:()=>t(s.componentName,s.entitySha),className:"text-gray-400 hover:text-white transition-colors cursor-pointer bg-transparent border-none p-0 truncate",children:s.name})]},s.componentName||"app")})})}function Hd(e){var a,o;const t=new Map,r=new Map;for(const i of e)if(i.componentName){const l=r.get(i.componentName)||[];l.push(i),r.set(i.componentName,l)}else if(Ys(i.url)){const l=(a=i.url)==null?void 0:a.match(/[?&]c=([^&]+)/),c=l?decodeURIComponent(l[1]):"Isolated",p=r.get(c)||[];p.push(i),r.set(c,p)}else{const l=i.displayName||((o=i.pageFilePath)!=null&&o.startsWith("app/")?It(_t(i.pageFilePath)):ct(i.url)),c=t.get(l)||[];c.push(i),t.set(l,c)}const s=new Map([...r.entries()].sort(([i],[l])=>i.localeCompare(l)));return{pageGroups:t,componentGroups:s}}function WS(e,t){var s,a;const r=new Map;for(const[o,i]of e){const l=(s=i.find(c=>c.entitySha))==null?void 0:s.entitySha;l&&r.set(o,l)}for(const[o,i]of t){const l=(a=i.find(c=>c.entitySha))==null?void 0:a.entitySha;l&&r.set(o,l)}return r}function JS(e){const t=new Set;for(const[r,s]of Object.entries(e)){t.add(r);for(const a of s)t.add(a)}return t}function HS(e,t,r,s){if(t.has(e))return!0;const a=r.find(o=>o.sha===e);return a?s.has(a.name):!1}function VS(e,t,r,s){const a=[];for(const[o,i]of e){const l=r.get(o);l?s(l)||a.push({name:o,scenarios:i,reason:"incomplete"}):a.push({name:o,scenarios:i,reason:"missing"})}for(const[o,i]of t){const l=r.get(o);l?s(l)||a.push({name:o,scenarios:i,reason:"incomplete"}):a.push({name:o,scenarios:i,reason:"missing"})}return a}function GS(e,t,r){if(!e)return null;const s=t.find(a=>a.sha===e);return s?{sha:e,name:s.name,filePath:s.filePath,entityType:s.entityType,displayName:s.name}:null}const El={new:0,edited:1,impacted:2};function Al({status:e,onClick:t}){const r={new:{label:"New",bg:"bg-green-100",text:"text-green-700",border:"border-green-200"},edited:{label:"Edited",bg:"bg-blue-100",text:"text-blue-700",border:"border-blue-200"},impacted:{label:"Impacted",bg:"bg-amber-100",text:"text-amber-700",border:"border-amber-200"}}[e.status],s=t&&(e.status==="edited"||e.status==="impacted");return n("button",{onClick:s?t:void 0,className:`${r.bg} ${r.text} ${r.border} border text-[9px] font-bold px-1.5 py-0.5 rounded-full uppercase tracking-wider shrink-0 ${s?"cursor-pointer hover:opacity-80 transition-opacity":"cursor-default"}`,children:r.label})}function Pl({filePath:e}){const[t,r]=M(null),[s,a]=M(!0),[o,i]=M(null);return se(()=>{import("react-diff-viewer-continued").then(l=>{i(()=>l.default)})},[]),se(()=>{a(!0),fetch(`/api/editor-file-diff?path=${encodeURIComponent(e)}`).then(l=>l.json()).then(l=>{r({oldContent:l.oldContent,newContent:l.newContent})}).catch(()=>{r(null)}).finally(()=>a(!1))},[e]),s?n("div",{className:"p-2 text-[10px] text-gray-400",children:"Loading diff..."}):!t||!o?n("div",{className:"p-2 text-[10px] text-gray-400",children:"Could not load diff"}):n("div",{className:"mt-2 border border-gray-200 rounded-lg overflow-hidden max-h-[300px] overflow-auto text-xs",children:n(o,{oldValue:t.oldContent,newValue:t.newContent,splitView:!1,useDarkTheme:!1,showDiffOnly:!0,styles:{contentText:{fontSize:"11px",lineHeight:"1.4"},line:{padding:"1px 8px",fontSize:"11px"}}})})}function jl({impactedBy:e,changedEntities:t}){return n("div",{className:"mt-2 bg-amber-50 border border-amber-200 rounded-lg p-2.5",children:e&&e.length>0?d(ye,{children:[n("span",{className:"text-[10px] font-semibold text-amber-700 uppercase tracking-wider",children:"Re-captured because these dependencies changed"}),n("ul",{className:"mt-1.5 space-y-1",children:e.map(r=>d("li",{className:"flex items-center gap-1.5",children:[n("span",{className:`text-[9px] font-bold px-1 py-0 rounded-full uppercase tracking-wider border ${r.changeType==="new"?"bg-green-100 text-green-700 border-green-200":"bg-blue-100 text-blue-700 border-blue-200"}`,children:r.changeType==="new"?"New":"Edited"}),n("span",{className:"text-[11px] font-medium text-amber-800",children:r.name}),n("span",{className:"text-[9px] text-amber-500 truncate",children:r.filePath})]},r.filePath))})]}):t&&t.length>0?d(ye,{children:[n("span",{className:"text-[10px] font-semibold text-amber-700 uppercase tracking-wider",children:"Unchanged — these entities were modified in this session"}),n("ul",{className:"mt-1.5 space-y-1",children:t.map(r=>d("li",{className:"flex items-center gap-1.5",children:[n("span",{className:`text-[9px] font-bold px-1 py-0 rounded-full uppercase tracking-wider border ${r.status==="new"?"bg-green-100 text-green-700 border-green-200":"bg-blue-100 text-blue-700 border-blue-200"}`,children:r.status==="new"?"New":"Edited"}),n("span",{className:"text-[11px] font-medium text-amber-800",children:r.name})]},r.name))})]}):n("span",{className:"text-[10px] text-amber-600",children:"This component was re-captured because a dependency changed"})})}function Tl({scenarioId:e,name:t,isActive:r,onSelect:s,updatedAt:a}){const o=fe(null);return se(()=>{r&&o.current&&o.current.scrollIntoView({block:"nearest",behavior:"smooth"})},[r]),d("button",{ref:o,onClick:s,className:"flex flex-col items-center gap-1.5 cursor-pointer group",title:t,children:[n("div",{className:`w-32 h-32 rounded-lg overflow-hidden border-2 transition-all ${r?"border-[#0ea5e9] ring-2 ring-[#0ea5e9]/40 shadow-lg shadow-[#0ea5e9]/20":"border-gray-200 hover:border-gray-400 shadow-sm"}`,children:n(ea,{scenarioId:e,updatedAt:a,alt:t,className:"w-full h-full bg-white",imgClassName:"w-full h-full object-contain bg-white"})}),n("span",{className:`text-[11px] leading-tight text-center truncate w-32 font-medium ${r?"text-gray-900":"text-gray-600 group-hover:text-gray-900"}`,children:t})]})}function KS({filePath:e}){return e?d("div",{className:"flex items-center gap-1 mt-0.5",children:[d("a",{href:`/api/editor-file?path=${encodeURIComponent(e)}`,target:"_blank",rel:"noopener noreferrer",title:"Open file",className:"flex items-center gap-1 text-gray-400 hover:text-gray-600 transition-colors min-w-0",children:[n("span",{className:"text-[9px] truncate",children:e}),n("svg",{className:"shrink-0",width:"10",height:"10",viewBox:"0 0 12 12",fill:"none",children:n("path",{d:"M4.5 1.5H2.5C1.95 1.5 1.5 1.95 1.5 2.5V9.5C1.5 10.05 1.95 10.5 2.5 10.5H9.5C10.05 10.5 10.5 10.05 10.5 9.5V7.5M7.5 1.5H10.5M10.5 1.5V4.5M10.5 1.5L5 7",stroke:"currentColor",strokeWidth:"1.2",strokeLinecap:"round",strokeLinejoin:"round"})})]}),n(ht,{content:e,icon:!0,iconSize:10,className:"shrink-0 text-gray-400 hover:text-gray-600 transition-colors"})]}):null}function ao({testFile:e,entityName:t}){const{results:r,isRunning:s,runTests:a}=ri(e);if(s&&!r)return d("div",{className:"pt-1 flex items-center gap-1.5",children:[n("span",{className:"w-1.5 h-1.5 rounded-full bg-[#0ea5e9] animate-pulse"}),n("span",{className:"text-[10px] text-gray-400",children:"Running tests..."})]});if(!r)return null;if(r.status==="error")return n("div",{className:"pt-1",children:n("span",{className:"text-[10px] text-red-500",children:r.errorMessage})});const o=t?r.testCases.filter(c=>c.fullName.startsWith(t)):r.testCases,i=o.length>0?o:r.testCases;if(i.length===0)return null;const l=t?`${t} > `:"";return d("div",{className:"pt-1 space-y-0.5",children:[i.map(c=>{var u;const p=l&&c.fullName.startsWith(l)?c.fullName.slice(l.length):c.fullName;return d("div",{children:[d("div",{className:"flex items-center gap-1.5",children:[c.status==="passed"?n("span",{className:"text-green-600 text-[10px]",children:"✓"}):c.status==="failed"?n("span",{className:"text-red-500 text-[10px]",children:"✗"}):n("span",{className:"text-gray-400 text-[10px]",children:"—"}),n("span",{className:`text-[10px] ${c.status==="passed"?"text-green-600":c.status==="failed"?"text-red-500":"text-gray-400"}`,children:p})]}),c.status==="failed"&&((u=c.failureMessages)==null?void 0:u.map((h,m)=>n("div",{className:"pl-4 text-[9px] text-red-400 truncate max-w-full",title:h,children:h.split(`
|
|
533
|
+
`)[0]},m)))]},c.fullName)}),n("button",{onClick:a,disabled:s,className:"mt-1 text-[10px] text-[#0ea5e9] hover:text-[#38bdf8] transition-colors cursor-pointer disabled:opacity-50 bg-transparent border-none p-0",children:s?"Running...":"Re-run"})]})}function Ml(e){const t=e.indexOf(" - ");return t!==-1?e.slice(t+3):e}function $l(e,t){return!t||Object.keys(t).length===0?e:[...e].sort(([r],[s])=>{var l,c;const a=((l=t[r])==null?void 0:l.status)||"impacted",o=((c=t[s])==null?void 0:c.status)||"impacted",i=(El[a]??2)-(El[o]??2);return i!==0?i:r.localeCompare(s)})}function qS({scenarios:e,allScenarios:t=[],glossaryFunctions:r=[],projectRoot:s,activeScenarioId:a,onScenarioSelect:o,onClose:i,entityChangeStatus:l={},modifiedFiles:c=[],featureName:p,userPrompt:u}){const h=ae(()=>{if(t.length===0||Object.keys(l).length===0)return e;const _=new Set(e.map($=>$.id)),j=t.filter($=>{var I,R;if(_.has($.id))return!1;const P=$.componentName||$.displayName||((I=$.pageFilePath)!=null&&I.startsWith("app/")?It(_t($.pageFilePath)):ct($.url));return((R=l[P])==null?void 0:R.status)==="impacted"});return j.length===0?e:[...e,...j]},[e,t,l]),m=ae(()=>Object.entries(l).filter(([,_])=>_.status==="new"||_.status==="edited").map(([_,j])=>({name:_,status:j.status})),[l]),[f,g]=M(null),y=ie(_=>{g(j=>j===_?null:_)},[]),{pageGroups:x,componentGroups:w}=ae(()=>Hd(h),[h]),b=ae(()=>$l([...x.entries()],l),[x,l]),v=ae(()=>$l([...w.entries()],l),[w,l]),N=b,k=v,E=ae(()=>rg(r,l),[r,l]),C=ae(()=>{const _=[];for(const[,j]of N)_.push(...j);for(const[,j]of k)_.push(...j);return _},[N,k]),S=fe(!1);return se(()=>{S.current||C.length!==0&&(a&&C.some(_=>_.id===a)||(S.current=!0,o(C[0])))},[C,a,o]),se(()=>{if(C.length===0)return;const _=j=>{if(j.key!=="ArrowLeft"&&j.key!=="ArrowRight")return;const $=j.target,P=$==null?void 0:$.tagName;if(P==="INPUT"||P==="SELECT"||P==="TEXTAREA"&&!$.classList.contains("xterm-helper-textarea"))return;j.preventDefault();const I=C.findIndex(T=>T.id===a);let R;j.key==="ArrowLeft"?R=I<=0?C.length-1:I-1:R=I>=C.length-1?0:I+1,o(C[R])};return document.addEventListener("keydown",_),()=>document.removeEventListener("keydown",_)},[C,a,o]),h.length===0&&r.length===0?d("div",{className:"h-full bg-white flex items-center justify-center relative",children:[n("button",{onClick:i,className:"absolute top-2 right-3 text-gray-400 hover:text-gray-700 text-lg leading-none cursor-pointer bg-transparent border-none",title:"Close results",children:"×"}),n("span",{className:"text-sm text-gray-400",children:"No scenarios registered yet"})]}):d("div",{className:"h-full bg-white flex flex-col overflow-hidden",children:[d("div",{className:"flex items-center justify-between px-4 py-2.5 border-b border-gray-200 shrink-0",children:[d("div",{className:"min-w-0",children:[n("span",{className:"text-xs font-semibold text-gray-500 uppercase tracking-wider",children:"Working Session Results"}),p&&n("div",{className:"text-[11px] text-gray-400 truncate",title:p,children:p})]}),n("button",{onClick:i,className:"text-gray-400 hover:text-gray-700 text-lg leading-none cursor-pointer bg-transparent border-none shrink-0",title:"Close results",children:"×"})]}),u&&n(Jd,{text:u,theme:"light"}),n("div",{className:"flex-1 overflow-auto p-4",children:d("div",{className:"space-y-5",children:[N.length>0&&d("div",{children:[n("div",{className:"mb-2",children:n("span",{className:"text-xs font-semibold text-gray-500 uppercase tracking-wider",children:"Application"})}),n("div",{className:"space-y-3 pl-1",children:N.map(([_,j])=>{var R;const $=l[_],P=f===_,I=(R=j[0])==null?void 0:R.componentPath;return d("div",{children:[d("div",{className:"mb-1.5 flex items-center gap-2",children:[n("span",{className:"text-[11px] font-medium text-gray-600",children:_}),$&&n(Al,{status:$,onClick:()=>y(_)})]}),P&&($==null?void 0:$.status)==="edited"&&I&&n(Pl,{filePath:I}),P&&($==null?void 0:$.status)==="impacted"&&n(jl,{impactedBy:$.impactedBy,changedEntities:m}),n("div",{className:"flex flex-wrap gap-3",children:j.map(T=>n(Tl,{scenarioId:T.id,name:Ml(T.name),isActive:T.id===a,onSelect:()=>o(T),updatedAt:T.updatedAt},T.id))})]},_)})})]}),k.length>0&&d("div",{className:N.length>0?"pt-3 border-t border-gray-200":"",children:[n("div",{className:"mb-2",children:n("span",{className:"text-xs font-semibold text-gray-500 uppercase tracking-wider",children:"Components"})}),n("div",{className:"space-y-3 pl-1",children:k.map(([_,j])=>{var R;const $=l[_],P=f===_,I=(R=j[0])==null?void 0:R.componentPath;return d("div",{children:[d("div",{className:"mb-1.5 flex items-center gap-2",children:[n("span",{className:"text-[11px] font-medium text-gray-600",children:_}),$&&n(Al,{status:$,onClick:()=>y(_)})]}),P&&($==null?void 0:$.status)==="edited"&&I&&n(Pl,{filePath:I}),P&&($==null?void 0:$.status)==="impacted"&&n(jl,{impactedBy:$.impactedBy,changedEntities:m}),n("div",{className:"flex flex-wrap gap-3",children:j.map(T=>n(Tl,{scenarioId:T.id,name:Ml(T.name),isActive:T.id===a,onSelect:()=>o(T),updatedAt:T.updatedAt},T.id))})]},_)})})]}),E.length>0&&d("div",{className:N.length>0||k.length>0?"pt-3 border-t border-gray-200":"",children:[n("div",{className:"mb-2",children:n("span",{className:"text-xs font-semibold text-gray-500 uppercase tracking-wider",children:"Functions"})}),n("div",{className:"space-y-2 pl-1",children:E.map(_=>d("div",{children:[n("div",{className:"flex items-center gap-2",children:n("span",{className:"text-[11px] font-medium text-gray-700",children:_.name})}),n(KS,{filePath:_.filePath,projectRoot:s}),_.testFile?n(ao,{testFile:_.testFile,entityName:_.name}):n("div",{className:"pt-1",children:n("span",{className:"text-[10px] text-gray-400",children:"No test file"})})]},_.name))})]}),c.length>0&&d("div",{className:N.length>0||k.length>0||E.length>0?"pt-3 border-t border-gray-200":"",children:[n("div",{className:"mb-2",children:d("span",{className:"text-xs font-semibold text-gray-500 uppercase tracking-wider",children:["Modified Files (",c.length,")"]})}),n("div",{className:"space-y-0.5 pl-1 max-h-[200px] overflow-auto",children:c.map(_=>d("div",{className:"flex items-center gap-1.5",children:[n("span",{className:`text-[9px] font-bold uppercase w-[14px] text-center ${_.status==="added"||_.status==="untracked"?"text-green-600":_.status==="modified"?"text-blue-600":_.status==="renamed"?"text-purple-600":"text-gray-400"}`,children:_.status==="added"||_.status==="untracked"?"A":_.status==="modified"?"M":_.status==="renamed"?"R":"?"}),n("span",{className:"text-[10px] text-gray-500 truncate font-mono",children:_.path})]},_.path))})]})]})})]})}function QS(e,t,r,s){var c;const a=s.length>0?s.map(p=>`- "${p.name}" (ID: ${p.id})${p.url?` — URL: ${p.url}`:""}`).join(`
|
|
534
|
+
`):"(no scenarios yet)",o=t.endsWith("/page.tsx")||t.endsWith("/page.js"),i=((c=s.find(p=>p.url))==null?void 0:c.url)||"/",l=[`You are helping edit scenarios for the "${e}" entity in a CodeYam project.`,"","## Entity",`- **Name:** ${e}`,`- **File:** ${t}`,`- **Type:** ${o?"Page (application scenario with seed data)":"Component (component scenario with mock props)"}`,"","## Existing Scenarios",a,""];return o?l.push("## How Seed Data Works","","Application scenarios use `seed` data to populate the database before the page is captured.","The seed is a JSON object where each key is a Prisma model name in camelCase singular (matching the Prisma client accessor name) and the value is an array of records.","","### Seed Key Naming Convention","The key must be the camelCase singular form of the Prisma model name:",'- `model User` → key `"user"`','- `model BlogPost` → key `"blogPost"`','- `model Feedback` → key `"feedback"`',"",'**WARNING:** Do NOT use plural forms like "users", "blogPosts", or "feedbacks" — the seed adapter will silently fail to match them.',"","To understand the data models, read the Prisma schema at `prisma/schema.prisma`.","To see examples of existing seed data, look at `.codeyam/editor-scenarios/*.seed.json` files.","",`Also read the source file at \`${t}\` to understand what data the page queries and renders.`,"","## Registering a Scenario","","For small seed data, pass it inline:","```",`codeyam editor register '{"name":"Scenario Name","type":"application","url":"${i}","dimensions":["Laptop"],"seed":{"user":[...],"feedback":[...]}}'`,"```","","For large seed data, write it to a temp file and use @file syntax:","```","# Write JSON to a temp file","cat > .codeyam/tmp/scenario.json << 'SCENARIO_EOF'",`{"name":"Scenario Name","type":"application","url":"${i}","dimensions":["Laptop"],"seed":{"user":[...],"feedback":[...]}}`,"SCENARIO_EOF","codeyam editor register @.codeyam/tmp/scenario.json","```"):l.push("## Registering a Scenario","",`Read the source file at \`${t}\` to understand what props the component expects.`,"","```",`codeyam editor register '{"name":"Scenario Name","type":"component","componentName":"${e}","componentPath":"${t}","dimensions":["Laptop"],"mockData":{"propName":"value"}}'`,"```"),l.push("","## Deleting a Scenario","","To delete a scenario, use its ID from the list above:","```","codeyam editor delete <scenarioId>","```","","## Validating Seed Data","","Before registering, you can validate seed data structure and check that keys match Prisma models:","```",`codeyam editor validate-seed '{"user":[...]}'`,"```"),l.push("","## Recapturing Scenarios After Code Changes","",`If the user asks you to modify the code for this ${o?"page":"component"} (CSS, layout, logic, etc.), you MUST re-register all existing scenarios after the code change so their screenshots are updated.`,"","Re-registering a scenario with the same name overwrites it and captures a fresh screenshot.","","To recapture, re-register each existing scenario using `codeyam editor register` with its current configuration. You can read the scenario JSON files in `.codeyam/editor-scenarios/` to get the exact registration data for each scenario."),l.push("","## Important","- DO NOT take any action until the user tells you what they want","- Start by briefly listing the existing scenarios",'- Then ask: "Would you like to modify an existing scenario or add a new one?"',"- Wait for the user's answer before proceeding",'- Keep scenario names descriptive: "Empty State", "With Comments", "Admin View", etc.',`- Each scenario should capture a distinct, meaningful state of the ${o?"page":"component"}`),l.join(`
|
|
535
|
+
`)}function Vd(e,t){var a;const r=t.some(o=>!o.componentName),s=t.map(o=>`'${o.id}'`).join(", ");if(r){const o=((a=t.find(l=>l.url))==null?void 0:a.url)||null,i=t.map(l=>`.codeyam/editor-scenarios/${l.id}.json`).join(", ");return[`### Page: "${e}" (${t.length} scenario(s))`,...o?["",`Scenario URL: \`${o}\``]:[],"",...o?["Step A: Find the source file that renders this page. In Next.js App Router, URLs map to page.tsx files:"," - `/` → `app/page.tsx`"," - `/about` → `app/about/page.tsx`"," - `/c/my-slug` → `app/c/[slug]/page.tsx` (dynamic segment)","",`Based on the URL \`${o}\`, find the corresponding page.tsx file. Confirm it exists with \`cat <filepath> | head -5\`.`]:["Step A: Find the source file that renders this page by running:",' find src app -name "App.tsx" -o -name "App.jsx" -o -name "page.tsx" -o -name "page.jsx" -o -name "index.tsx" 2>/dev/null',"","Pick the file that is the main app entry point or the page component for this route. Confirm it exists with `cat <filepath> | head -5`."],"","Step B: Set page_file_path on all scenarios for this page (replace PAGE_FILE_PATH with the path from Step A):",` sqlite3 .codeyam/db.sqlite3 "UPDATE editor_scenarios SET page_file_path = 'PAGE_FILE_PATH' WHERE id IN (${s});"`,"","Step C: Get the entity SHA (after running analyze-imports in the shared step above):",` sqlite3 .codeyam/db.sqlite3 "SELECT sha FROM entities WHERE file_path = 'PAGE_FILE_PATH' ORDER BY created_at DESC LIMIT 1;"`,"","If no rows appear, the path was wrong — go back to Step A.","","Step D: Set entity_sha and display_name on all scenarios (replace ENTITY_SHA with the SHA from Step C):",` sqlite3 .codeyam/db.sqlite3 "UPDATE editor_scenarios SET entity_sha = 'ENTITY_SHA', display_name = '${e}' WHERE id IN (${s});"`,"","Step E: Add pageFilePath to the scenario JSON files so this fix persists across clones.",`For each file (${i}), read it and add \`"pageFilePath": "PAGE_FILE_PATH"\` to the \`_metadata\` object (after the \`"type"\` field). Then commit the updated JSON files.`].join(`
|
|
536
|
+
`)}else return[`### Component: "${e}" (${t.length} scenario(s))`,"","Step A: Get the entity SHA (after running analyze-imports in the shared step above):",` sqlite3 .codeyam/db.sqlite3 "SELECT sha FROM entities WHERE name = '${e}' ORDER BY created_at DESC LIMIT 1;"`,"","If no rows appear, check that .codeyam/glossary.json contains an entry for this component.","","Step B: Set entity_sha and display_name on all scenarios (replace ENTITY_SHA with the SHA from Step A):",` sqlite3 .codeyam/db.sqlite3 "UPDATE editor_scenarios SET entity_sha = 'ENTITY_SHA', display_name = '${e}' WHERE id IN (${s});"`].join(`
|
|
537
|
+
`)}function Il({name:e,scenarios:t,reason:r="missing"}){var o,i;const s=((o=t[0])==null?void 0:o.componentPath)||((i=t[0])==null?void 0:i.pageFilePath)||null,a=r==="incomplete"?[`The "${e}" entity exists but has not been fully analyzed — its components and functions cannot be displayed.`,"","Follow these steps:","",`Step 1: Check if "${e}" is in the glossary:`,` cat .codeyam/glossary.json | grep "${e}"`,"","If not found, add an entry to .codeyam/glossary.json:",` { "name": "${e}", "filePath": "${s||"FILL_IN_PATH"}", "description": "...", "returnType": "JSX.Element" }`,"","Step 2: Run: codeyam editor analyze-imports","","Step 3: Reload the editor page and verify components/functions appear."].join(`
|
|
538
|
+
`):[`The "${e}" ${t.some(l=>!l.componentName)?"page":"component"} is missing entity data in the CodeYam database. Its scenarios are hidden until this is fixed.`,"","IMPORTANT: Do NOT re-register scenarios — that would overwrite their screenshots. Instead, update the database and scenario JSON files directly.","","Follow these steps EXACTLY:","","Step 1: Run: codeyam editor analyze-imports","","Step 2: Fix this entity:","",Vd(e,t),"","Step 3: Reload the editor page in the browser and verify the scenarios appear."].join(`
|
|
539
|
+
`);return n(ht,{content:a,label:"Copy Fix Prompt",copiedLabel:"Copied!",className:"text-[9px] text-amber-400 hover:text-amber-300 bg-transparent border border-amber-400/30 rounded px-1.5 py-0.5 cursor-pointer transition-colors ml-2"})}function ZS({brokenEntities:e}){if(e.length===0)return null;const t=e.reduce((o,i)=>o+i.scenarios.length,0),r=e.filter(o=>o.reason==="incomplete"),s=e.filter(o=>o.reason==="missing"),a=[`${e.length} entities are missing data in the CodeYam database. ${t} total scenario(s) are hidden until this is fixed.`,"","IMPORTANT: Do NOT re-register scenarios — that would overwrite their screenshots. Instead, update the database and scenario JSON files directly.","","Follow these steps EXACTLY:","",...r.length>0?["## Step 1: Add missing entries to the glossary","","Read `.codeyam/glossary.json` and check if these entities have entries. For each one that is missing, add an entry:","",...r.map(o=>{var l,c;const i=((l=o.scenarios[0])==null?void 0:l.componentPath)||((c=o.scenarios[0])==null?void 0:c.pageFilePath)||"FILL_IN_PATH";return`- "${o.name}" (filePath: "${i}")`}),"",'Each glossary entry needs: name, filePath, description, returnType (use "JSX.Element" for components/pages).',""]:["## Step 1: No glossary changes needed",""],"## Step 2: Run import analysis"," codeyam editor analyze-imports","",...s.length>0?["## Step 3: Fix missing entity associations","",...s.map(o=>Vd(o.name,o.scenarios)),""]:[],`## Step ${s.length>0?"4":"3"}: Reload the editor page in the browser and verify all scenarios appear. Then commit the updated scenario JSON files so the fix persists across clones.`].join(`
|
|
540
|
+
`);return d("div",{className:"mb-3 p-2 rounded border border-amber-400/30 bg-amber-400/5",children:[d("p",{className:"text-[10px] text-amber-400/80 m-0 leading-relaxed",children:[e.length," ",e.length===1?"entity is":"entities are"," missing data (",t," hidden scenario",t!==1?"s":"","). Copy this prompt into Claude to fix them all at once."]}),n("div",{className:"mt-1.5",children:n(ht,{content:a,label:"Copy Fix All Prompt",copiedLabel:"Copied!",className:"text-[9px] text-amber-400 hover:text-amber-300 bg-transparent border border-amber-400/30 rounded px-1.5 py-0.5 cursor-pointer transition-colors"})})]})}function XS({scenarios:e,entityName:t,entityFilePath:r,entityType:s,onSwitchToBuild:a,onScenarioSelect:o}){const[i,l]=M(!1),[c,p]=M(null),[u,h]=M(""),[m,f]=M(!1),[g,y]=M(null),[x,w]=M(!1),b=ie(async N=>{if(!(!u.trim()||m)){f(!0);try{(await fetch("/api/editor-rename-scenario",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({scenarioId:N,name:u.trim()})})).ok&&p(null)}catch{}finally{f(!1)}}},[u,m]),v=ie(async N=>{if(confirm(`Delete scenario "${N.name}"?`)){y(N.id);try{const k=N.screenshotPaths?Object.values(N.screenshotPaths):N.screenshotPath?[N.screenshotPath]:[];await fetch("/api/delete-scenario",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({scenarioId:N.id,screenshotPaths:k})})}catch{}finally{y(null)}}},[]);return i?d("div",{className:"border border-[#3d3d3d] rounded-lg overflow-hidden",children:[d("div",{className:"flex items-center justify-between px-3 py-2 bg-[#1e1e1e]",children:[n("span",{className:"text-xs font-medium text-gray-400",children:"Edit Scenarios"}),n("button",{onClick:()=>{l(!1),p(null)},className:"text-gray-500 hover:text-gray-300 text-xs bg-transparent border-none cursor-pointer",children:"Close"})]}),n("div",{className:"divide-y divide-[#2d2d2d]",children:e.map(N=>d("div",{className:"px-3 py-2 flex items-center gap-2 hover:bg-[#252525] cursor-pointer transition-colors",style:{opacity:g===N.id?.4:1},onClick:()=>{c!==N.id&&o(N)},children:[N.screenshotPath?n(ea,{scenarioId:N.id,updatedAt:N.updatedAt,alt:"",className:"rounded w-[40px] h-[40px] shrink-0 overflow-hidden",imgClassName:"w-full h-full object-cover"}):n("div",{className:"rounded bg-[#1e1e1e]",style:{width:40,height:40,flexShrink:0}}),c===N.id?d("form",{className:"flex-1 flex items-center gap-1.5 min-w-0",onSubmit:k=>{k.preventDefault(),b(N.id)},children:[n("input",{type:"text",value:u,onChange:k=>h(k.target.value),className:"flex-1 px-2 py-1 text-xs bg-[#1e1e1e] text-white border border-[#3d3d3d] rounded outline-none focus:border-[#005c75] min-w-0",autoFocus:!0,disabled:m}),n("button",{type:"submit",disabled:m||!u.trim(),className:"px-2 py-1 text-[10px] bg-[#005c75] text-white rounded hover:bg-[#004d63] disabled:opacity-40 cursor-pointer border-none",children:m?"...":"Save"}),n("button",{type:"button",onClick:()=>p(null),className:"px-2 py-1 text-[10px] text-gray-400 hover:text-white cursor-pointer bg-transparent border-none",children:"Cancel"})]}):d(ye,{children:[n("span",{className:"flex-1 text-xs text-gray-300 truncate min-w-0",children:N.name}),n("button",{onClick:k=>{k.stopPropagation(),p(N.id),h(N.name)},className:"text-[10px] text-gray-500 hover:text-gray-300 cursor-pointer bg-transparent border-none px-1",title:"Rename",children:"Rename"}),n("button",{onClick:k=>{k.stopPropagation(),v(N)},disabled:g===N.id,className:"text-[10px] text-red-400/60 hover:text-red-400 cursor-pointer bg-transparent border-none px-1",title:"Delete",children:"Delete"})]})]},N.id))}),x?n(YS,{prompt:QS(t,r,s,e),height:500,onClose:()=>w(!1)}):n("div",{className:"px-3 py-2.5 bg-[#1e1e1e] border-t border-[#2d2d2d] flex justify-center",children:n("button",{onClick:()=>w(!0),className:"px-5 py-2 text-xs font-medium text-white cursor-pointer bg-[#005c75] hover:bg-[#004d63] border-none rounded-md transition-colors",children:"Modify with Claude"})})]}):n("div",{className:"flex justify-center",children:n("button",{onClick:()=>l(!0),className:"px-5 py-2 text-xs font-medium text-gray-300 hover:text-white transition-colors cursor-pointer bg-[#2a2a2a] hover:bg-[#333] border border-[#4a4a4a] hover:border-[#666] rounded-md",children:"Edit Scenarios"})})}function In({scenarioId:e,updatedAt:t,hasScreenshot:r,imgSrc:s,name:a,isActive:o,onSelect:i}){return d("button",{onClick:i,className:"flex flex-col items-center gap-1 cursor-pointer group w-full",title:a,children:[n("div",{className:`w-full aspect-square rounded overflow-hidden border-2 transition-all bg-[#1a1a1a] ${o?"border-[#005c75] ring-1 ring-[#005c75]":"border-transparent hover:border-[#4d4d4d]"}`,children:e&&r?n(ea,{scenarioId:e,updatedAt:t,alt:a,className:"w-full h-full",imgClassName:"w-full h-full object-contain"}):!e&&s?n("img",{src:s,alt:a,className:"w-full h-full object-contain",loading:"lazy"}):n("div",{className:"w-full h-full bg-[#1a1a1a] flex items-center justify-center",children:n("span",{className:"text-[8px] text-gray-600",children:"No img"})})}),n("span",{className:`text-[10px] leading-tight text-center truncate w-full ${o?"text-white":"text-gray-500 group-hover:text-gray-300"}`,children:a})]})}function lr({filePath:e}){return e?d("div",{className:"flex items-center gap-1 mt-0.5",children:[d("a",{href:`/api/editor-file?path=${encodeURIComponent(e)}`,target:"_blank",rel:"noopener noreferrer",title:"Open file",className:"flex items-center gap-1 text-gray-500 hover:text-gray-300 transition-colors min-w-0",children:[n("span",{className:"text-[9px] truncate",children:e}),n("svg",{className:"shrink-0",width:"10",height:"10",viewBox:"0 0 12 12",fill:"none",children:n("path",{d:"M4.5 1.5H2.5C1.95 1.5 1.5 1.95 1.5 2.5V9.5C1.5 10.05 1.95 10.5 2.5 10.5H9.5C10.05 10.5 10.5 10.05 10.5 9.5V7.5M7.5 1.5H10.5M10.5 1.5V4.5M10.5 1.5L5 7",stroke:"currentColor",strokeWidth:"1.2",strokeLinecap:"round",strokeLinejoin:"round"})})]}),n(ht,{content:e,icon:!0,iconSize:10,className:"shrink-0 text-gray-500 hover:text-gray-300 transition-colors"})]}):null}function e1({hasProject:e,scenarios:t,analyzedEntities:r,allEntities:s=[],glossaryFunctions:a=[],glossaryEntries:o=[],projectRoot:i,activeScenarioId:l,onScenarioSelect:c,onAnalyzedScenarioSelect:p,onSwitchToBuild:u,zoomComponent:h,focusedEntity:m,onZoomChange:f,entityImports:g,pageFilePaths:y={},projectTitle:x,projectDescription:w,migrationMode:b="none",migrationState:v,onStartMigration:N,breadcrumbItems:k=[]}){var z;const{pageGroups:E,componentGroups:C}=ae(()=>Hd(t),[t]),S=ae(()=>WS(E,C),[E,C]),_=ae(()=>new Set(r.map(A=>A.sha)),[r]),j=ae(()=>JS(g||{}),[g]),$=ie(A=>HS(A,_,s,j),[_,s,j]),P=ae(()=>{const A=new Map;for(const Y of s)A.set(Y.sha,Y.name);return A},[s]),I=ae(()=>VS(E,C,S,$),[E,C,S,$]),R=ae(()=>r.filter(A=>A.entityType==="visual").sort((A,Y)=>A.name.localeCompare(Y.name)),[r]),T=ae(()=>{const A=new Map;for(const Y of a)A.set(Y.name,Y);return A},[a]),G=fe(null),J=fe(0),F=ie(()=>{G.current&&(J.current=G.current.scrollTop)},[]);se(()=>{G.current&&J.current>0&&(G.current.scrollTop=J.current)});const H=(m==null?void 0:m.sha)??"overview";if(!e)return n("div",{className:"flex-1 flex items-center justify-center",children:d("div",{className:"flex flex-col items-center gap-4",children:[n("h2",{className:"text-lg font-medium text-white font-['IBM_Plex_Sans'] m-0",children:"Ready to build something?"}),n("button",{onClick:u,className:"px-6 py-3 bg-[#005c75] text-white text-sm font-medium rounded-lg hover:bg-[#004d63] transition-colors cursor-pointer",children:"Start Building"})]})});if(b==="candidate")return n("div",{className:"flex-1 flex items-center justify-center",children:d("div",{className:"flex flex-col items-center gap-5 px-8 text-center max-w-[420px]",children:[n("h2",{className:"text-lg font-medium text-white font-['IBM_Plex_Sans'] m-0",children:"Migrate Your Project"}),n("p",{className:"text-sm text-gray-400 m-0 font-['IBM_Plex_Sans'] leading-relaxed",children:"It looks like you have an existing project. Claude can survey your codebase and systematically migrate it — deconstructing pages into clean components, extracting functions with tests, and creating scenarios. One page per session."}),n("button",{onClick:N,className:"px-6 py-3 bg-[#005c75] text-white text-sm font-medium rounded-lg hover:bg-[#004d63] transition-colors cursor-pointer",children:"Get Started"}),n("button",{onClick:u,className:"text-xs text-gray-500 hover:text-gray-300 bg-transparent border-none p-0 cursor-pointer underline",children:"Skip — build a new feature instead"})]})});if(b==="active"&&v){const A=v.pages||[],Y=A.filter(Q=>Q.status==="complete").length,V=A.length,W=V>0?Math.round(Y/V*100):0;return d("div",{className:"flex-1 flex flex-col overflow-auto p-4",children:[n("h2",{className:"text-lg font-medium text-white font-['IBM_Plex_Sans'] m-0 mb-3",children:"Project Migration"}),d("div",{className:"mb-4",children:[n("div",{className:"flex items-center gap-2 mb-1",children:d("span",{className:"text-xs text-gray-400 font-['IBM_Plex_Sans']",children:[Y,"/",V," pages (",W,"%)"]})}),n("div",{className:"w-full h-1.5 bg-[#2d2d2d] rounded-full overflow-hidden",children:n("div",{className:"h-full bg-[#005c75] rounded-full transition-all",style:{width:`${W}%`}})})]}),n("div",{className:"space-y-1.5",children:A.map((Q,B)=>{const D=Q.status==="complete"?"✓":Q.status==="in-progress"?"→":"○",O=Q.status==="complete"?"text-green-400":Q.status==="in-progress"?"text-cyan-400":"text-gray-600";return d("div",{className:"flex items-center gap-2",children:[n("span",{className:`text-xs ${O} w-3 text-center`,children:D}),n("span",{className:`text-xs font-['IBM_Plex_Sans'] ${Q.status==="in-progress"?"text-white font-medium":Q.status==="complete"?"text-gray-400":"text-gray-600"}`,children:Q.name}),n("span",{className:"text-[10px] text-gray-600",children:Q.route}),Q.status==="complete"&&d("span",{className:"text-[10px] text-gray-600",children:[(Q.extractedComponents||[]).length,"c"," ",(Q.extractedFunctions||[]).length,"f"," ",Q.scenarioCount||0,"s"]})]},B)})}),(v.sharedComponents||[]).length>0&&d("div",{className:"mt-4",children:[n("h3",{className:"text-xs font-medium text-gray-400 font-['IBM_Plex_Sans'] mb-1.5",children:"Shared Components"}),(v.sharedComponents||[]).map((Q,B)=>d("div",{className:"text-[10px] text-gray-500 mb-0.5",children:[Q.name," ",d("span",{className:"text-gray-600",children:["— used in: ",(Q.usedInPages||[]).join(", ")]})]},B))]}),n("div",{className:"mt-4",children:n("button",{onClick:u,className:"px-4 py-2 bg-[#005c75] text-white text-xs font-medium rounded-lg hover:bg-[#004d63] transition-colors cursor-pointer",children:"Continue in Chat"})})]})}if(!(t.length>0||R.length>0))return n("div",{className:"flex-1 flex items-center justify-center",children:d("div",{className:"flex flex-col items-center gap-4 px-8 text-center",children:[x?d(ye,{children:[n("h2",{className:"text-lg font-medium text-white font-['IBM_Plex_Sans'] m-0",children:x}),w&&n("p",{className:"text-sm text-gray-400 m-0 font-['IBM_Plex_Sans'] leading-relaxed",children:w})]}):n("h2",{className:"text-lg font-medium text-white font-['IBM_Plex_Sans'] m-0",children:"Your project is ready"}),n("p",{className:"text-sm text-gray-400 m-0 font-['IBM_Plex_Sans'] leading-relaxed",children:"Describe what you want to build in the Chat and your pages and components will appear here."}),n("button",{onClick:u,className:"px-6 py-3 bg-[#005c75] text-white text-sm font-medium rounded-lg hover:bg-[#004d63] transition-colors cursor-pointer",children:"Start Building"})]})});if(m){const A=m.filePath,Y=m.name,V=r.some(Z=>Z.sha===m.sha||Z.filePath===A),W=!!((z=g==null?void 0:g[Y])!=null&&z.length);if(!V&&!W){t.some(de=>de.componentName===Y&&de.entitySha===m.sha);const Z=t.filter(de=>de.entitySha===m.sha),Ne=[`The "${m.displayName}" entity (${A}) exists in the database but has not been fully analyzed. Its components and functions cannot be shown until it has import metadata.`,"","Follow these steps:","",`Step 1: Add "${Y}" to the glossary if it's not already there:`,` Check: cat .codeyam/glossary.json | grep "${Y}"`,"",` If not found, add an entry with name "${Y}" and filePath "${A}" to .codeyam/glossary.json`,"","Step 2: Run import analysis:"," codeyam editor analyze-imports","","Step 3: Reload the editor page and verify components/functions appear."].join(`
|
|
541
|
+
`);return n("div",{ref:G,onScroll:F,className:"flex-1 overflow-auto",children:d("div",{className:"p-4 space-y-3",children:[n(kl,{items:k,onNavigate:f}),n("h2",{className:"text-sm font-semibold text-white m-0 font-['IBM_Plex_Sans'] uppercase tracking-wider",children:m.displayName}),A&&n(lr,{filePath:A,projectRoot:i}),d("div",{className:"py-2",children:[n("p",{className:"text-[11px] text-amber-400/80 m-0 leading-relaxed",children:"This entity has not been fully analyzed. Its components and functions cannot be displayed. Please copy and paste this prompt into Claude to fix the data."}),n("div",{className:"mt-2",children:n(ht,{content:Ne,label:"Copy Fix Prompt",copiedLabel:"Copied!",className:"text-[10px] text-amber-400 hover:text-amber-300 bg-transparent border border-amber-400/30 rounded px-2 py-1 cursor-pointer transition-colors"})})]}),Z.length>0&&n("div",{className:"grid grid-cols-3 gap-2",children:Z.map(de=>n(In,{scenarioId:de.id,updatedAt:de.updatedAt,hasScreenshot:!!de.screenshotPath,name:de.name,isActive:de.id===l,onSelect:()=>c(de)},de.id))})]})},H)}const Q=m.sha,B=t.filter(Z=>!Z.componentName&&(Z.pageFilePath===A||Q&&Z.entitySha===Q)),D=t.filter(Z=>Z.componentName===Y||Z.componentPath===A),O=R.find(Z=>Z.filePath===A||Z.name===Y),q=T.get(Y)||a.find(Z=>Z.filePath===A),re=[...B,...D],le=new Set((g==null?void 0:g[Y])||[]),he=W?[...C.entries()].filter(([Z])=>le.has(Z)):[],oe=W?R.filter(Z=>le.has(Z.name)&&!he.some(([Ne])=>Ne===Z.name)):[],ge=W?o.filter(Z=>le.has(Z.name)&&Z.returnType!=="JSX.Element"&&Z.returnType!=="React.ReactNode").map(Z=>({name:Z.name,filePath:Z.filePath,description:Z.description||"",testFile:Z.testFile,feature:Z.feature})):[],_e=he.length>0||oe.length>0,je=ge.length>0,pe=_e||je;return n("div",{className:"flex-1 overflow-auto",children:d("div",{className:"p-4 space-y-3",children:[n(kl,{items:k,onNavigate:f}),d("div",{children:[n("h2",{className:"text-sm font-semibold text-white m-0 font-['IBM_Plex_Sans'] uppercase tracking-wider",children:m.displayName}),m.filePath&&n(lr,{filePath:m.filePath,projectRoot:i})]}),re.length>0&&n("div",{className:"grid grid-cols-3 gap-2",children:re.map(Z=>n(In,{scenarioId:Z.id,updatedAt:Z.updatedAt,hasScreenshot:!!Z.screenshotPath,name:Z.name,isActive:Z.id===l,onSelect:()=>c(Z)},Z.id))}),O&&(O.scenarios.length>0||O.pendingScenarios.length>0)&&d("div",{className:"grid grid-cols-3 gap-2",children:[O.scenarios.map(Z=>n(In,{imgSrc:Z.screenshotPath?`/api/screenshot/${Z.screenshotPath}`:null,name:Z.name,isActive:!1,onSelect:()=>p({analysisId:O.analysisId,scenarioId:Z.id,scenarioName:Z.name,entitySha:O.sha,entityName:O.name})},Z.id)),O.pendingScenarios.map(Z=>n("div",{className:"px-2.5 py-1 bg-[#2a2a2a] text-gray-400 text-[10px] rounded-full",title:Z,children:Z},Z))]}),q&&q.testFile&&d("div",{children:[d("div",{className:"flex items-center gap-1.5",children:[n("span",{className:"text-[10px] text-gray-500",children:"Tests:"}),n(lr,{filePath:q.testFile,projectRoot:i})]}),n(ao,{testFile:q.testFile,entityName:Y})]}),re.length===0&&!O&&!q&&n("div",{className:"text-xs text-gray-500",children:"No scenarios for this entity"}),re.length>0&&n(XS,{scenarios:re,entityName:m.displayName,entityFilePath:m.filePath,entityType:m.entityType,onSwitchToBuild:u,onScenarioSelect:c}),pe&&d("div",{className:"pt-3 mt-2 border-t border-[#3d3d3d] space-y-3",children:[_e&&d("div",{children:[n("span",{className:"text-xs font-semibold text-gray-500 uppercase tracking-wider",children:"Components"}),he.map(([Z,Ne])=>n("div",{className:"mt-3",children:S.has(Z)?d(ye,{children:[n("div",{className:"py-1",children:n("button",{onClick:()=>f(Z,S.get(Z)),className:"text-[11px] font-medium text-gray-400 cursor-pointer hover:text-white transition-colors bg-transparent border-none p-0",children:Z})}),Ne.length>0&&n("div",{className:"grid grid-cols-3 gap-2 pt-1",children:Ne.map(de=>n(In,{scenarioId:de.id,updatedAt:de.updatedAt,hasScreenshot:!!de.screenshotPath,name:de.name,isActive:de.id===l,onSelect:()=>c(de)},de.id))})]}):d("div",{className:"py-2",children:[n("span",{className:"text-[11px] font-medium text-gray-500",children:Z}),n("p",{className:"text-[10px] text-amber-400/80 m-0 mt-1.5 leading-relaxed",children:"There is data missing that is required to show the scenarios for this component. Please copy and paste this prompt into Claude to ask Claude to fix the data."}),n("div",{className:"mt-1.5",children:n(Il,{name:Z,scenarios:Ne})})]})},Z)),oe.map(Z=>d("div",{className:"mt-3",children:[n("div",{className:"py-1",children:n("button",{onClick:()=>f(Z.name,Z.sha),className:"text-[11px] font-medium text-gray-400 cursor-pointer hover:text-white transition-colors bg-transparent border-none p-0",children:Z.name})}),(Z.scenarios.length>0||Z.pendingScenarios.length>0)&&d("div",{className:"grid grid-cols-3 gap-2 pt-1",children:[Z.scenarios.map(Ne=>n(In,{imgSrc:Ne.screenshotPath?`/api/screenshot/${Ne.screenshotPath}`:null,name:Ne.name,isActive:!1,onSelect:()=>p({analysisId:Z.analysisId,scenarioId:Ne.id,scenarioName:Ne.name,entitySha:Z.sha,entityName:Z.name})},Ne.id)),Z.pendingScenarios.map(Ne=>n("div",{className:"px-2.5 py-1 bg-[#2a2a2a] text-gray-400 text-[10px] rounded-full",title:Ne,children:Ne},Ne))]})]},Z.sha))]}),je&&d("div",{children:[n("span",{className:"text-xs font-semibold text-gray-500 uppercase tracking-wider",children:"Functions"}),ge.map(Z=>d("div",{className:"mt-2",children:[n("div",{className:"py-1",children:n("button",{onClick:()=>f(Z.name,S.get(Z.name)),className:"text-[11px] font-medium text-gray-400 cursor-pointer hover:text-white transition-colors bg-transparent border-none p-0",children:Z.name})}),n(lr,{filePath:Z.filePath,projectRoot:i}),Z.testFile&&d("div",{className:"mt-0.5",children:[d("div",{className:"flex items-center gap-1.5",children:[n("span",{className:"text-[9px] text-gray-600",children:"test:"}),n("span",{className:"text-[9px] text-gray-500 truncate",children:Z.testFile})]}),n(ao,{testFile:Z.testFile,entityName:Z.name})]})]},Z.name))]})]})]})})}return n("div",{ref:G,onScroll:F,className:"flex-1 overflow-auto",children:d("div",{className:"p-4 space-y-4",children:[x&&d("div",{children:[n("h2",{className:"text-base font-semibold text-white m-0 font-['IBM_Plex_Sans']",children:x}),w&&n("p",{className:"text-xs text-gray-400 m-0 mt-1 font-['IBM_Plex_Sans'] leading-relaxed",children:w})]}),I.length>1&&n(ZS,{brokenEntities:I}),E.size>0&&d("div",{children:[d("div",{className:"flex items-center justify-between",children:[n("span",{className:"text-xs font-semibold text-gray-500 uppercase tracking-wider",children:"Application"}),n("button",{onClick:u,className:"px-2.5 py-1 text-[10px] font-medium text-gray-400 bg-[#2a2a2a] border border-[#4d4d4d] rounded hover:bg-[#333] hover:text-white hover:border-[#005c75] transition-colors cursor-pointer",children:"+ New Page"})]}),d("p",{className:"text-[11px] text-gray-500 m-0 mt-1.5 font-['IBM_Plex_Sans'] leading-relaxed",children:["Select a page scenario below and switch to"," ",n("button",{onClick:u,className:"text-[#00a0c4] hover:text-[#00c4eb] bg-transparent border-none p-0 cursor-pointer underline font-inherit text-inherit",children:"Build"})," ","to change or enhance an existing page or"," ",n("button",{onClick:u,className:"text-[#00a0c4] hover:text-[#00c4eb] bg-transparent border-none p-0 cursor-pointer underline font-inherit text-inherit",children:"create a new page"})]}),[...E.entries()].sort(([A],[Y])=>A==="Home"?-1:Y==="Home"?1:A.localeCompare(Y)).map(([A,Y])=>{var V,W;return n("div",{className:"mt-2",children:S.has(A)&&$(S.get(A))?d(ye,{children:[n("div",{className:"py-1",children:(()=>{const Q=S.get(A),D=(Q?P.get(Q):void 0)||A;return n("button",{onClick:()=>f(A,S.get(A)),className:"text-[11px] font-medium text-gray-400 cursor-pointer hover:text-white transition-colors bg-transparent border-none p-0",children:D})})()}),(((V=Y[0])==null?void 0:V.pageFilePath)||y[A])&&n(lr,{filePath:((W=Y[0])==null?void 0:W.pageFilePath)||y[A],projectRoot:i}),n("div",{className:"grid grid-cols-3 gap-2 pt-1",children:Y.map(Q=>n(In,{scenarioId:Q.id,updatedAt:Q.updatedAt,hasScreenshot:!!Q.screenshotPath,name:Q.name,isActive:Q.id===l,onSelect:()=>c(Q)},Q.id))})]}):d("div",{className:"py-2",children:[n("span",{className:"text-[11px] font-medium text-gray-500",children:(()=>{const Q=S.get(A);return Q&&P.get(Q)||A})()}),n("p",{className:"text-[10px] text-amber-400/80 m-0 mt-1.5 leading-relaxed",children:"There is data missing that is required to show the scenarios for this page. Please copy and paste this prompt into Claude to ask Claude to fix the data."}),n("div",{className:"mt-1.5",children:n(Il,{name:A,scenarios:Y,reason:S.has(A)?"incomplete":"missing"})})]})},A)})]})]})},H)}const t1=[{key:"app",label:"App"},{key:"build",label:"Build"},{key:"data",label:"Structure"},{key:"journal",label:"Journal"}];function n1({activeTab:e,onTabChange:t,buildIdle:r}){return d("div",{className:"bg-[#3d3d3d] h-10 flex items-center px-3 gap-3 shrink-0 z-20 border-b border-[#2d2d2d]",children:[d("div",{className:"flex items-center gap-2 shrink-0",children:[n("img",{src:Ps,alt:"CodeYam",className:"h-5 brightness-0 invert"}),n("span",{className:"text-white font-medium text-xs whitespace-nowrap",children:"Codeyam Editor"})]}),n("div",{className:"flex-1"}),n("div",{className:"flex items-center gap-2 shrink-0",children:n("div",{className:"flex items-center gap-0.5 bg-[#4a3232] rounded-lg p-0.5",children:t1.map(s=>d("button",{onClick:()=>t(s.key),className:`px-2.5 py-1 text-xs font-medium rounded-md transition-colors cursor-pointer ${e===s.key?"bg-[#7a4444] text-white":"text-gray-300 hover:text-white"}`,children:[s.label,s.key==="build"&&r&&e!=="build"&&n("span",{className:"ml-1 inline-block w-1.5 h-1.5 rounded-full bg-amber-400 animate-pulse"})]},s.key))})})]})}function r1({onMouseDown:e,onDoubleClick:t,isDragging:r}){return d("div",{className:"shrink-0 relative flex items-center justify-center cursor-col-resize group",style:{width:12},onMouseDown:e,onDoubleClick:t,children:[n("div",{className:"absolute inset-y-0 left-1/2 -translate-x-1/2",style:{width:r?3:1,backgroundColor:r?"#3b82f6":"#3d3d3d",transition:"width 100ms, background-color 100ms"}}),!r&&n("div",{className:"absolute inset-0 bg-blue-500/0 group-hover:bg-blue-500/20 transition-colors pointer-events-none"}),d("div",{className:"relative z-10 flex flex-col gap-[3px] opacity-0 group-hover:opacity-100 transition-opacity",style:r?{opacity:1}:void 0,children:[n("div",{className:"w-2 h-px bg-gray-400"}),n("div",{className:"w-2 h-px bg-gray-400"}),n("div",{className:"w-2 h-px bg-gray-400"})]})]})}const Rl=300,rs=150;function s1(e){const[t,r]=M(null),[s,a]=M(!1),o=fe(0),i=fe(null);se(()=>{e.current&&r(Math.round(e.current.offsetWidth*.5))},[e]);const l=ie(()=>{var x;return((x=e.current)==null?void 0:x.offsetWidth)??(typeof window<"u"?window.innerWidth:1024)},[e]),c=ie(x=>{x.preventDefault(),a(!0)},[]),p=ie(()=>{r(Math.round(l()*.5))},[l]),u=ie(()=>{r(x=>(x&&x>0&&(i.current=x),0))},[]),h=ie(()=>{const x=i.current;i.current=null,r(x&&x>=Rl?x:Math.round(l()*.5))},[l]),m=ie(()=>{r(Math.round(l()*.5))},[l]);se(()=>{if(!s)return;document.body.style.cursor="col-resize",document.body.style.userSelect="none";const x=b=>{cancelAnimationFrame(o.current),o.current=requestAnimationFrame(()=>{var _;const v=(_=e.current)==null?void 0:_.getBoundingClientRect(),N=(v==null?void 0:v.left)??0,E=((v==null?void 0:v.width)??window.innerWidth)-rs,C=b.clientX-N,S=Math.min(Math.max(C,Rl),E);r(S)})},w=b=>{var C;cancelAnimationFrame(o.current),a(!1);const v=(C=e.current)==null?void 0:C.getBoundingClientRect(),N=(v==null?void 0:v.left)??0,k=(v==null?void 0:v.width)??window.innerWidth,E=b.clientX-N;E<rs?r(0):k-E<rs&&r(k)};return document.addEventListener("mousemove",x),document.addEventListener("mouseup",w),()=>{cancelAnimationFrame(o.current),document.removeEventListener("mousemove",x),document.removeEventListener("mouseup",w),document.body.style.cursor="",document.body.style.userSelect=""}},[s,e]),se(()=>{const x=()=>{r(w=>{if(w===null||w===0)return w;const b=l();return w>=b?b:Math.min(w,b-rs)})};if(!(typeof window>"u"))return window.addEventListener("resize",x),()=>window.removeEventListener("resize",x)},[l]);const f=l(),g=t===0,y=t!==null&&t>=f;return{editorWidth:t,isDragging:s,isEditorCollapsed:g,isPreviewCollapsed:y,handleMouseDown:c,handleDoubleClick:p,collapseEditor:u,expandEditor:h,expandPreview:m}}function a1({preview:e,onDismiss:t,onLoadCommit:r}){return d("div",{className:"flex flex-col items-center gap-6 max-w-[700px] w-full",children:[d("div",{className:"text-center",children:[n("h2",{className:"text-lg font-semibold text-[#333] m-0 font-['IBM_Plex_Sans']",children:"Journal Screenshot"}),n("p",{className:"text-sm text-[#888] mt-1 m-0 font-['IBM_Plex_Sans']",children:"This is a snapshot from a previous version — not a live preview"})]}),n("div",{className:"rounded-lg overflow-hidden border-2 border-[#ccc] shadow-md max-w-full w-fit",children:n("img",{src:e.screenshotUrl,alt:e.scenarioName,className:"max-w-full h-auto block"})}),d("div",{className:"flex items-center gap-2 text-sm text-[#666]",children:[e.commitSha&&n("span",{className:"font-mono text-xs text-[#00a0c4] bg-[#00a0c4]/15 px-2 py-0.5 rounded",children:e.commitSha.slice(0,7)}),d("span",{className:"truncate",children:[e.scenarioName,e.commitMessage&&` — ${e.commitMessage}`]})]}),n("div",{className:"flex items-center gap-3",children:e.commitSha&&r&&n(o1,{commitSha:e.commitSha,onLoadCommit:r})})]})}function o1({commitSha:e,onLoadCommit:t}){const[r,s]=M(!1),[a,o]=M(null);return d(ye,{children:[n("button",{onClick:()=>{s(!0),o(null),t(e).then(i=>{i.success||o(i.error||"Failed to load commit")}).catch(i=>{o(i instanceof Error?i.message:"Network error")}).finally(()=>s(!1))},disabled:r,className:"bg-[#005c75] hover:bg-[#004d63] disabled:opacity-50 text-white text-sm font-medium px-4 py-1.5 rounded transition-colors cursor-pointer",children:r?"Reverting...":"Revert to this code and load this version"}),a&&n("div",{className:"bg-red-50 border border-red-200 rounded px-4 py-2 text-sm text-red-600 w-full text-center",children:a})]})}function i1({analysisId:e,scenarioId:t,scenarioName:r,entityName:s,projectSlug:a,onStateChange:o}){const{interactiveServerUrl:i,isStarting:l,isLoading:c}=vn({analysisId:e,scenarioId:t,scenarioName:r,entityName:s,projectSlug:a,enabled:!0});return se(()=>{o(i,l||c)},[i,l,c,o]),null}function l1({onSaveToCurrent:e,onSaveAsNew:t,onDismiss:r,isSaving:s,scenarioName:a}){return d("div",{className:"flex items-center justify-between px-4 py-1.5 bg-emerald-900/60 border-b border-emerald-700/50 text-emerald-200 text-xs",children:[n("span",{className:"font-medium",children:a?d(ye,{children:["Data modified in “",a,"”."]}):"Data modified."}),d("div",{className:"flex items-center gap-2",children:[n("button",{onClick:e,disabled:s,className:"px-2.5 py-0.5 bg-emerald-600 hover:bg-emerald-500 disabled:opacity-50 text-white text-xs font-medium rounded transition-colors cursor-pointer disabled:cursor-not-allowed",children:s?"Saving...":"Save to Scenario"}),n("button",{onClick:t,disabled:s,className:"px-2.5 py-0.5 bg-emerald-800 hover:bg-emerald-700 disabled:opacity-50 text-emerald-200 text-xs font-medium rounded transition-colors cursor-pointer disabled:cursor-not-allowed",children:"Save as New"}),n("button",{onClick:r,disabled:s,className:"text-emerald-400 hover:text-emerald-200 disabled:opacity-50 transition-colors cursor-pointer disabled:cursor-not-allowed",title:"Dismiss",children:d("svg",{width:"14",height:"14",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",children:[n("line",{x1:"18",y1:"6",x2:"6",y2:"18"}),n("line",{x1:"6",y1:"6",x2:"18",y2:"18"})]})})]})]})}function c1(e,t){return t.status==="error"?{url:null,proxyUrl:null,isStarting:!1,error:t.errorMessage||"Dev server crashed",canStartServer:e.canStartServer,autoStartAttempted:e.autoStartAttempted,shouldAutoStart:!1}:t.url?{url:t.url,proxyUrl:t.proxyUrl||null,isStarting:!1,error:null,canStartServer:!0,autoStartAttempted:e.autoStartAttempted,shouldAutoStart:!1}:t.status==="starting"?{...e,isStarting:!0,error:null,canStartServer:!0,shouldAutoStart:!1}:t.status==="stopped"?e.url?{...e,url:null,isStarting:!1,shouldAutoStart:!1}:e.autoStartAttempted?{...e,isStarting:!1,shouldAutoStart:!1}:{...e,autoStartAttempted:!0,shouldAutoStart:!0}:{...e,shouldAutoStart:!1}}function d1(e){const[t,r]=M({url:null,proxyUrl:null,isStarting:!1,error:null,canStartServer:!0,autoStartAttempted:!1}),s=fe(t);s.current=t,se(()=>{let i=!1,l=null;const c=async()=>{try{const p=await fetch("/api/editor-dev-server");if(i)return;const u=await p.json(),h=c1(s.current,u),{shouldAutoStart:m,...f}=h;if(r(f),m&&!(e!=null&&e.skipAutoStart))try{const g=await fetch("/api/editor-dev-server",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({action:"start"})});if(i)return;g.ok?r(y=>({...y,isStarting:!0})):r(y=>({...y,canStartServer:!1}))}catch{}}catch{}};return c(),l=setInterval(()=>void c(),2e3),()=>{i=!0,l&&clearInterval(l)}},[t.url]);const a=ie(()=>{r(i=>({...i,error:null,isStarting:!0})),fetch("/api/editor-dev-server",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({action:"restart"})}).catch(()=>{})},[]),o=ie(()=>{r(i=>({...i,error:null,isStarting:!0})),fetch("/api/editor-dev-server",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({action:"start"})}).catch(()=>{})},[]);return{devServerUrl:t.url,proxyUrl:t.proxyUrl,isStarting:t.isStarting,error:t.error,canStartServer:t.canStartServer,retryServer:a,startServer:o}}function u1(e){const t=fe(null),r=fe(null);se(()=>{if(typeof document>"u")return;r.current||(r.current=document.createElement("canvas"),r.current.width=64,r.current.height=64);const s=document.querySelector('link[rel="icon"]');if(!s)return;if(t.current||(t.current=s.href),!e){s.href=t.current;return}const a=new Image;a.crossOrigin="anonymous",a.onload=()=>{const o=r.current,i=o.getContext("2d");i.clearRect(0,0,64,64);const l=56,c=(64-l)/2;i.drawImage(a,c,c,l,l);const p=12,u=64-p-1,h=p+1;i.beginPath(),i.arc(u,h,p+3,0,2*Math.PI),i.fillStyle="#ffffff",i.fill(),i.beginPath(),i.arc(u,h,p,0,2*Math.PI),i.fillStyle="#ef4444",i.fill(),s.href=o.toDataURL("image/png")},a.src=t.current},[e]),se(()=>()=>{if(typeof document>"u")return;const s=document.querySelector('link[rel="icon"]');s&&t.current&&(s.href=t.current)},[])}function p1(e){if(!e||typeof e!="object")return[];for(const t of Object.values(e))if(Array.isArray(t))return t;return[]}function h1(e){return L.join(e,".codeyam","migration-state.json")}function Gd(e){const t=h1(e);try{const r=K.readFileSync(t,"utf8"),s=JSON.parse(r);return m1(s)}catch{return null}}function m1(e){const t=Array.isArray(e.pages)?e.pages:[],r=Array.isArray(e.sharedComponents)?e.sharedComponents:[];return{status:e.status||"surveyed",startedAt:e.startedAt||new Date().toISOString(),completedAt:e.completedAt??null,currentPageIndex:typeof e.currentPageIndex=="number"?e.currentPageIndex:0,pages:t.map(s=>({name:s.name||"Unknown",route:s.route||"/",filePath:s.filePath||"",status:s.status||"pending",startedAt:s.startedAt??null,completedAt:s.completedAt??null,extractedComponents:Array.isArray(s.extractedComponents)?s.extractedComponents:[],extractedFunctions:Array.isArray(s.extractedFunctions)?s.extractedFunctions:[],scenarioCount:typeof s.scenarioCount=="number"?s.scenarioCount:0})),sharedComponents:r.map(s=>({name:s.name||"",filePath:s.filePath||"",extractedFromPage:s.extractedFromPage||"",usedInPages:Array.isArray(s.usedInPages)?s.usedInPages:[]}))}}function f1(e,t){if(!K.existsSync(L.join(e,"package.json"))||t!=null&&t.hasEditorScenarios)return!1;const r=L.join(e,".codeyam","glossary.json");if(K.existsSync(r))try{const o=JSON.parse(K.readFileSync(r,"utf8"));if((Array.isArray(o)?o:p1(o)).length>0)return!1}catch{}const s=L.join(e,".codeyam","editor-step.json");if(K.existsSync(s))try{const o=JSON.parse(K.readFileSync(s,"utf8"));if(o.feature||o.scaffolded)return!1}catch{}const a=Gd(e);return(a==null?void 0:a.status)!=="complete"}function g1(e){const t=L.join(e,".codeyam","editor-step.json");try{const r=K.readFileSync(t,"utf8");return!!JSON.parse(r).migration}catch{return!1}}function y1({currentUrl:e,nextUrl:t,formMethod:r,defaultShouldRevalidate:s}){return r||e.pathname===t.pathname?s:e.pathname.startsWith("/editor")&&t.pathname.startsWith("/editor")?!1:s}const x1=()=>[{title:"Editor - CodeYam"},{name:"description",content:"CodeYam Code + Data Editor"}];function b1(e){const t=new URL(e).pathname.match(/\/editor\/entity\/([^/]+)/);return t?t[1]:null}async function w1({request:e}){var G;const t=await ze();let r=!1,s=[],a=[];const o=we()||process.cwd();let i={map:{},allFiles:[]};try{i=Fo(o)}catch{}let l=[];try{l=Kn()}catch{}if(t){const{project:J}=await Oe(t);r=((G=J.metadata)==null?void 0:G.editorMode)??!1;try{const F=Te();try{const A=await F.selectFrom("editor_scenarios").select(["id","url"]).where("project_id","=",J.id).where("component_name","is",null).where("page_file_path","is",null).execute();if(A.length>0){const{allFiles:Y}=i;for(const V of A){const W=V;if(!W.url)continue;const Q=Pc(W.url,Y);Q&&await F.updateTable("editor_scenarios").set({page_file_path:Q}).where("id","=",W.id).execute()}}}catch(A){console.warn("[editor] page_file_path backfill failed (non-fatal):",A instanceof Error?A.message:A)}const H=await F.selectFrom("editor_scenarios").selectAll().where("project_id","=",J.id).orderBy("created_at","asc").execute(),U=A=>{const Y=A;let V=null,W=null;try{Y.dimensions&&(V=JSON.parse(Y.dimensions))}catch{}try{Y.screenshot_paths&&(W=JSON.parse(Y.screenshot_paths))}catch{}return{id:A.id,name:A.name,description:A.description||"",componentName:A.component_name||null,componentPath:A.component_path||null,screenshotPath:A.screenshot_path||null,url:Y.url||null,type:Y.type||null,viewportWidth:Y.viewport_width||null,viewportHeight:Y.viewport_height||null,dimensions:V,screenshotPaths:W,pageFilePath:Y.page_file_path||null,entitySha:Y.entity_sha||null,displayName:Y.display_name||null,updatedAt:Y.updated_at||null}};a=Tt(H,A=>`${A.name}::${A.url||"/"}`).map(U);const z=cd(o);if(z){const A=Us(z),Y=H.filter(V=>Ic(V,A));s=Tt(Y,V=>`${V.name}::${V.url||"/"}`).map(U)}else s=a}catch{}}const c=[...new Set(a.map(J=>J.componentName).filter(J=>J!==null))];let p=[];try{const J=L.join(o,".codeyam","glossary.json");if(K.existsSync(J)){const F=K.readFileSync(J,"utf8");p=JSON.parse(F)}}catch{}const u=lg(p);let h=[],m=[];try{const J=await wn()||[];h=J.map(F=>({sha:F.sha,name:F.name,entityType:F.entityType||"visual",filePath:F.filePath||""})),m=cg(J,p)}catch{}let f=[];try{if(h.length>0){const J=h.map(F=>F.sha);await Ue(),f=await Xe({shas:J})||[]}}catch{}let g={};try{if(f.length>0){const J=new Set([...m.map(F=>F.name),...h.map(F=>F.name),...c,...p.map(F=>F.name)]);g=dg(f,J)}}catch{}const y=i.map,x=i.allFiles;if(Object.keys(y).length>0&&f.length>0&&(g=ug(g,y,f)),x.length>0&&f.length>0){const J=new Map;for(const F of f)F.filePath&&J.set(F.filePath,F.name);for(const F of x){const H=It(_t(F));if(g[H])continue;const U=J.get(F);U&&g[U]&&(g[H]=g[U])}}let w={};try{w=(await Pr({projectRoot:o,scenarioInputs:a,glossaryInputs:u,precomputedPageFilePaths:i,precomputedGitFiles:l,precomputedEntities:f})).entityChangeStatus}catch{}const b=l.filter(J=>J.status!=="deleted").map(J=>({path:J.path,status:J.status})),v=Lo(o),N=zo(o),k=dd(o),E=ud(o);let C=null,S=null,_=null,j=null;try{const J=L.join(o,".codeyam","config.json");if(K.existsSync(J)){const F=JSON.parse(K.readFileSync(J,"utf8"));C=F.projectTitle||null,S=F.projectDescription||null,_=F.defaultScreenSize||null,j=F.screenSizes||null}}catch{}const $=b1(e.url);let P=null,I=null;if($&&t)try{await Ue();const J=await Xe({}),F=J==null?void 0:J.find(H=>H.sha===$);if(F){const H=F.name,U=F.filePath||"",z=F.entityType||"visual";I={name:H,filePath:U,entityType:z,displayName:H};const A=J==null?void 0:J.find(Y=>Y.name===F.name&&Y.filePath===F.filePath&&Y.sha!==$&&Y.createdAt&&F.createdAt&&Y.createdAt>F.createdAt);A&&(P=A.sha)}}catch{}let R="none",T=null;try{if(T=Gd(projRoot),(T==null?void 0:T.status)==="complete")R="complete";else if((T==null?void 0:T.status)==="in-progress"||(T==null?void 0:T.status)==="surveyed")R="active";else if(g1(projRoot))R="active";else if(t){const J=a.length>0;f1(projRoot,{hasEditorScenarios:J})&&(R="candidate")}}catch{}return X({projectSlug:t,projectRoot:we(),hasProject:!!t,editorMode:r,scenarios:s,allScenarios:a,components:c,analyzedEntities:m,allEntities:h,glossaryFunctions:u,glossaryEntries:p,entityImports:g,pageFilePaths:y,entityChangeStatus:w,modifiedFiles:b,featureName:v,userPrompt:N,projectTitle:C,projectDescription:S,defaultScreenSize:_,screenSizes:j,editorStep:(k==null?void 0:k.step)??null,editorStepLabel:(k==null?void 0:k.label)??null,claudeSessionId:E,focusedEntitySha:$,newerEntitySha:P,focusedEntity:I,migrationMode:R,migrationState:T})}class v1 extends Cu{constructor(){super(...arguments);Ft(this,"state",{error:null,errorInfo:null})}static getDerivedStateFromError(r){return{error:r,errorInfo:null}}componentDidCatch(r,s){console.error("[EditorErrorBoundary] Error:",r.message),console.error("[EditorErrorBoundary] Component stack:",s.componentStack),console.error("[EditorErrorBoundary] Loader snapshot:",JSON.stringify(this.props.loaderSnapshot,null,2)),this.setState({errorInfo:s})}render(){var r;return this.state.error?n("div",{className:"fixed inset-0 bg-[#1e1e1e] flex items-center justify-center p-8",children:d("div",{className:"max-w-[600px] w-full space-y-4",children:[n("h2",{className:"text-lg font-semibold text-red-400 font-['IBM_Plex_Sans'] m-0",children:"Something went wrong"}),n("pre",{className:"text-xs text-gray-300 bg-[#2d2d2d] p-3 rounded overflow-auto max-h-[120px]",children:this.state.error.message}),((r=this.state.errorInfo)==null?void 0:r.componentStack)&&d("details",{className:"text-xs text-gray-500",children:[n("summary",{className:"cursor-pointer hover:text-gray-300 transition-colors",children:"Component stack"}),n("pre",{className:"mt-2 bg-[#2d2d2d] p-3 rounded overflow-auto max-h-[200px] text-yellow-300",children:this.state.errorInfo.componentStack})]}),n("p",{className:"text-xs text-gray-500 m-0",children:"Full diagnostics are in the browser console."}),n("button",{onClick:()=>window.location.reload(),className:"px-4 py-2 bg-[#005c75] text-white text-sm rounded hover:bg-[#004d63] transition-colors cursor-pointer",children:"Reload"})]})}):this.props.children}}const N1=Qe(function(){var li;const{projectSlug:t,projectRoot:r,hasProject:s,scenarios:a,allScenarios:o,analyzedEntities:i,allEntities:l,glossaryFunctions:c,glossaryEntries:p,entityImports:u,pageFilePaths:h,entityChangeStatus:m,modifiedFiles:f,featureName:g,userPrompt:y,projectTitle:x,projectDescription:w,defaultScreenSize:b,screenSizes:v,editorStep:N,editorStepLabel:k,claudeSessionId:E,focusedEntitySha:C,newerEntitySha:S,focusedEntity:_,migrationMode:j,migrationState:$}=tt(),[P,I]=Bn(),R=Mt(),T=fe(null),G=fe(null),J=fe(null),F=fe(null),[H,U]=M(C);se(()=>{U(C)},[C]);const z=ae(()=>GS(H,l),[H,l,o]),A=(z==null?void 0:z.displayName)??void 0,Y=P.get("scenario")||void 0,[V,W]=M(()=>A?[A]:[]),Q=fe(null),B=fe([]),D=fe(null);se(()=>{var Ve;const te=Y||((Ve=Ii(o))==null?void 0:Ve.id);if(!Cg(te,Q.current))return;const xe=o.find(lt=>lt.id===te);if(!xe)return;Q.current=te;const Ae=Na(xe,B.current,D.current);Ae&&kt(Ae);const Ye=Zt(xe.name);fetch("/api/editor-switch-scenario",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({scenarioSlug:Ye,scenarioId:xe.id,scenarioName:xe.name,scenarioType:xe.type})}).catch(()=>{})},[Y,o]),se(()=>{const te=new BroadcastChannel("codeyam-editor");return te.onmessage=xe=>{var Ae;if(((Ae=xe.data)==null?void 0:Ae.type)==="switch-scenario"&&xe.data.scenarioId){const Ye=xe.data.scenarioId,Ve=o.find(Tn=>Tn.id===Ye);if(!Ve)return;Q.current=Ye;const lt=new URLSearchParams(P);lt.set("scenario",Ye),lt.delete("zoom"),I(lt),Z(null),de(null),Fe(null),xt(!0);const rr=Zt(Ve.name);fetch("/api/editor-switch-scenario",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({scenarioSlug:rr,scenarioId:Ye,scenarioType:Ve.type})}).then(()=>{je(!1),Ze(Tn=>Tn+1)}).catch(()=>{xt(!1)})}},()=>te.close()},[P,I,o]),se(()=>{if(P.get("ref")!=="link"||!Y)return;const te=new BroadcastChannel("codeyam-editor");te.postMessage({type:"switch-scenario",scenarioId:Y}),te.close(),window.close()},[]);const{devServerUrl:O,proxyUrl:q,isStarting:re,error:le,canStartServer:he,retryServer:oe,startServer:ge}=d1({skipAutoStart:j==="candidate"||j==="active"}),[_e,je]=M(!1),[pe,Z]=M(null),[Ne,de]=M(null),[ne,be]=M(!1),[Ce,Fe]=M(null),Se=ie(async te=>{const Ae=await(await fetch("/api/editor-load-commit",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({commitSha:te})})).json();return Ae.success&&(Fe(null),je(!1)),Ae},[]),Re=ie((te,xe)=>{de(Ae=>(te&&te!==Ae&&je(!1),te)),!xe&&te&&je(!0),be(xe)},[]),Be=ie(te=>{Fe(null),Z(Ae=>(Ae&&Ae.analysisId===te.analysisId||(de(null),Ze(Ve=>Ve+1)),te)),be(!0),je(!1);const xe=new URLSearchParams(P);xe.delete("scenario"),xe.delete("zoom"),I(xe)},[P,I]),[Me,kt]=M(b?{name:b.name,width:b.width,height:b.height}:{name:"Desktop",width:1440,height:900}),[Nn,Cn]=M(!1),[Ge,mt]=M(!1),ft=b?{name:b.name,width:b.width,height:b.height}:null;D.current=ft;const Sn=Cr(),nt=ae(()=>{const te=Sn.pathname.split("/").filter(Boolean),xe=te[te.length-1];return xe==="build"||xe==="journal"?xe:xe==="structure"?"data":"app"},[Sn.pathname]),st=ie(te=>{U(null),W([]);const xe=te==="app"?"":`/${te==="data"?"structure":te}`,Ae=P.get("scenario"),Ye=Ae?`?scenario=${Ae}`:"";R(`/editor${xe}${Ye}`)},[R,P]),gt=ie(()=>{st("build"),He(!0)},[st]),Rt=ie(()=>{st("build"),He(!0),setTimeout(()=>{var te;(te=T.current)==null||te.sendInput("codeyam editor migrate")},300)},[st]),[at,He]=M(nt==="build"),ta=!!(g&&N),[Vt,Tr]=M(ta?"pending":"no-session");se(()=>{Vt==="pending"&&(st("build"),He(!0))},[Vt,st]);const na=ie(()=>{Tr("continue")},[]),[_n,kn]=M(!1),[ra,Mr]=M(!1),$r=fe(!1),En=fe(0),sa=ie(te=>{kn(te),te&&!$r.current&&(Mr(!1),En.current=Date.now()),te||(En.current=0),$r.current=te},[]);u1(_n);const{editorWidth:Ir,isDragging:Rr,isEditorCollapsed:yt,isPreviewCollapsed:qn,handleMouseDown:Dr,handleDoubleClick:Or,collapseEditor:Fr,expandEditor:Qn,expandPreview:Lr}=s1(F),[An,Zn]=M(!1),zr=ie(()=>{Zn(!0),st("build"),He(!0)},[st]),Xn=ie(()=>{Zn(!1)},[]),Br=ie(te=>{kt(te),fetch("/api/editor-project-info",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({defaultScreenSize:te,skipBroadcast:!0})})},[]),[er,tr]=M(Rn);se(()=>{const te=Kf();tr(te),te.systemNotification&&typeof Notification<"u"&&Notification.permission==="default"&&Notification.requestPermission()},[]);const Yr=ie(te=>{tr(te),qf(te)},[]);se(()=>{if(nt==="build"){kn(!1);const te=setTimeout(()=>{var xe,Ae;(xe=T.current)==null||xe.scrollToBottom(),(Ae=T.current)==null||Ae.focus()},50);return()=>clearTimeout(te)}},[nt]),se(()=>{function te(){!document.hidden&&nt==="build"&&kn(!1)}return document.addEventListener("visibilitychange",te),()=>document.removeEventListener("visibilitychange",te)},[nt]);const[Dt,Ur]=M(null);se(()=>{const te=J.current;if(!te)return;const xe=new ResizeObserver(Ae=>{const Ye=Ae[0];Ye&&Ur({width:Ye.contentRect.width,height:Ye.contentRect.height})});return xe.observe(te),()=>xe.disconnect()},[]);const me=ae(()=>Dt?Sg(Dt,Me):1,[Dt,Me]),[$e,Ze]=M(0),[We,ot]=M(null),[Ot,xt]=M(!1),[it,Ke]=M(!1),[rn,Pn]=M(!1),aa=fe(0);se(()=>{$e>0&&(aa.current=Date.now()+3e3)},[$e]);const Kd=ie(()=>{if(Date.now()<aa.current)return;const te=En.current;te===0||Date.now()-te<5e3||Ke(!0)},[]);se(()=>{const te=xe=>{var Ae;if(((Ae=xe.data)==null?void 0:Ae.type)==="codeyam-localstorage-changed"){if(Date.now()<aa.current)return;const Ye=En.current;if(Ye===0||Date.now()-Ye<5e3)return;Ke(!0)}};return window.addEventListener("message",te),()=>window.removeEventListener("message",te)},[]);const si=ie(async te=>{Pn(!0);try{let xe;const Ae=G.current;Ae!=null&&Ae.contentWindow&&(xe=await new Promise(lt=>{const rr=setTimeout(()=>lt(void 0),2e3),Tn=ci=>{var di;((di=ci.data)==null?void 0:di.type)==="codeyam-localstorage-state"&&(clearTimeout(rr),window.removeEventListener("message",Tn),lt(ci.data.data))};window.addEventListener("message",Tn),Ae.contentWindow.postMessage({type:"codeyam-get-localstorage"},"*")}));const Ve=await(await fetch("/api/editor-save-seed-state",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({mode:te,localStorage:xe})})).json();Ve.success?Ke(!1):console.error("[editor] Save seed state failed:",Ve.error)}catch(xe){console.error("[editor] Save seed state error:",xe)}finally{Pn(!1)}},[]),qd=ie((te,xe)=>{if(ot(te||null),xe){const Ae=new URLSearchParams(P);Ae.set("scenario",xe),Q.current=xe,I(Ae);const Ye=o.find(Ve=>Ve.id===xe);if(Ye){const Ve=Na(Ye,B.current,D.current);Ve&&kt(Ve)}}Fe(null),je(!1),Ze(Ae=>Ae+1)},[P,I,o]),{customSizes:oa,addCustomSize:Qd,removeCustomSize:Zd}=Bs(t),ia=ae(()=>jS(v),[v]),la=ae(()=>[...ia,...oa],[ia,oa]);B.current=la;const ai=ae(()=>{const te=new Map;for(const xe of l){te.set(xe.name,xe.sha);const Ae=It(_t(xe.filePath));Ae!==xe.name&&te.set(Ae,xe.sha)}return te},[l]),Xd=ae(()=>{const te=[{name:"App"}];for(const xe of V)te.push({name:xe,componentName:xe,entitySha:ai.get(xe)});return te},[V,ai]),oi=ie((te,xe)=>{if(!te){W([]),U(null);const lt=P.get("scenario"),rr=lt?`?scenario=${lt}`:"";R(`/editor${rr}`);return}if(!xe){console.error(`[editor] No entity SHA for "${te}" — entity missing from database`);return}const Ae=V.indexOf(te);Ae>=0?W(V.slice(0,Ae+1)):W([...V,te]);const Ye=o.find(lt=>lt.entitySha===xe);U(xe);const Ve=Ye?`?scenario=${Ye.id}`:"";R(`/editor/entity/${xe}${Ve}`)},[R,o,V,P]),nr=ie(te=>{Z(null),de(null),Fe(null),ot(null);const xe=Na(te,la,ft);xe&&kt(xe),Q.current=te.id;const Ae=new URLSearchParams(P);Ae.set("scenario",te.id),I(Ae),xt(!0),Ke(!1);const Ye=Zt(te.name);fetch("/api/editor-switch-scenario",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({scenarioSlug:Ye,scenarioId:te.id,scenarioType:te.type,skipBroadcast:!0})}).then(()=>{je(!1),Ze(Ve=>Ve+1)}).catch(()=>{xt(!1)})},[P,I,la]),eu=ie(te=>{if(!te.commitSha){const xe=o.find(Ae=>Ae.name===te.scenarioName);if(xe){nr(xe);return}}Fe(te)},[o,nr]),tu=te=>{const xe={name:te.name,width:te.width,height:te.height};kt(xe),fetch("/api/editor-project-info",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({defaultScreenSize:xe,skipBroadcast:!0})})},nu=(te,xe,Ae)=>{Qd(te,xe,Ae)},ru=te=>{kt(te),fetch("/api/editor-project-info",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({defaultScreenSize:te,skipBroadcast:!0})})},ii=()=>{pe||je(!0),xt(!1)},jn=ae(()=>Ng({activeAnalyzedScenario:!!pe,analyzedPreviewUrl:Ne,activeScenarioId:Y||null,scenarios:o,proxyUrl:q,devServerUrl:O,zoomComponent:A||null}),[q,O,A,Y,o,pe,Ne]),ca=ae(()=>{const te=Rc(jn,We);if(!te)return null;const xe=te.includes("?")?"&":"?";return`${te}${xe}__cb=${$e}`},[jn,We,$e]),su=ae(()=>({projectSlug:t,hasProject:s,scenarioCount:a==null?void 0:a.length,allScenarioCount:o==null?void 0:o.length,analyzedEntityCount:i==null?void 0:i.length,glossaryFunctionCount:c==null?void 0:c.length,entityChangeStatusKeys:m?Object.keys(m):[],featureName:g}),[t,s,a,o,i,c,m,g]);return d(ye,{children:[n(v1,{loaderSnapshot:su,children:d("div",{className:"fixed inset-0 bg-[#2d2d2d] flex flex-col",children:[pe&&n(i1,{analysisId:pe.analysisId,scenarioId:pe.scenarioId,scenarioName:pe.scenarioName,entityName:pe.entityName,projectSlug:t,onStateChange:Re},pe.analysisId),d("div",{ref:F,className:"flex-1 flex min-h-0",children:[yt&&n("div",{className:"shrink-0 flex items-center justify-center cursor-pointer hover:bg-[#3d3d3d] transition-colors",style:{width:8,backgroundColor:"#2d2d2d"},onClick:Qn,title:"Expand editor",children:n("svg",{width:"6",height:"10",viewBox:"0 0 6 10",fill:"none",stroke:"#888",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round",children:n("path",{d:"M1 1l4 4-4 4"})})}),d("aside",{className:"bg-[#1e1e1e] shrink-0 flex flex-col overflow-hidden",style:{...yt?{display:"none"}:Ir!==null?{width:`${Ir}px`}:{width:"50%"}},children:[S&&z&&d("div",{className:"px-3 py-2 text-xs flex items-center justify-between",style:{background:"#2a1f00",borderBottom:"1px solid #3d2e00",color:"#f0c040"},children:[d("span",{children:["Viewing an older version of"," ",n("strong",{children:z.name}),". A newer version exists."]}),n("a",{href:`/editor/entity/${S}`,className:"px-2 py-0.5 rounded text-xs",style:{background:"#3d2e00",color:"#f0c040",textDecoration:"none"},children:"View latest"})]}),n(n1,{activeTab:nt,onTabChange:te=>{st(te),te==="build"&&He(!0),fetch("/api/telemetry-page-view",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({route:`/editor/${te}`})}).catch(()=>{})},buildIdle:_n}),d("div",{className:"flex-1 min-h-0 overflow-hidden relative",children:[_n&&nt!=="build"&&!ra&&d("div",{className:"absolute top-3 left-1/2 -translate-x-1/2 z-50 animate-[slideDown_0.3s_ease-out]",children:[n("style",{children:`
|
|
542
|
+
@keyframes slideDown {
|
|
543
|
+
from { transform: translate(-50%, -100%); opacity: 0; }
|
|
544
|
+
to { transform: translate(-50%, 0); opacity: 1; }
|
|
545
|
+
}
|
|
546
|
+
`}),d("div",{className:"flex items-center gap-1 bg-amber-50 border-2 border-amber-300 rounded-lg shadow-lg",children:[d("button",{onClick:()=>{st("build"),He(!0)},className:"flex items-center gap-2 px-4 py-2 cursor-pointer hover:bg-amber-100 transition-colors rounded-l-md",children:[n("span",{className:"inline-block w-2 h-2 rounded-full bg-amber-400 animate-pulse"}),n("span",{className:"text-sm font-medium text-amber-900",children:"Claude is waiting for you"}),n("span",{className:"text-xs text-amber-600 ml-1",children:"Go to Build"})]}),n("button",{onClick:te=>{te.stopPropagation(),Mr(!0)},className:"px-2 py-2 cursor-pointer hover:bg-amber-100 transition-colors rounded-r-md text-amber-400 hover:text-amber-600","aria-label":"Dismiss",children:n("svg",{width:"14",height:"14",viewBox:"0 0 14 14",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",children:n("path",{d:"M3 3l8 8M11 3l-8 8"})})})]})]}),at&&d("div",{className:"absolute inset-0 flex flex-col overflow-hidden",style:{visibility:nt==="build"?"visible":"hidden"},children:[n("div",{className:"flex-1 min-h-0",style:An?{flex:"1 1 50%"}:void 0,children:Vt==="pending"?n(TS,{featureName:g,editorStep:N,editorStepLabel:k,onContinue:na}):n(Ac,{ref:T,entityName:"Editor",projectSlug:t,entityFilePath:null,scenarioName:null,onRefreshPreview:qd,onShowResults:zr,onHideResults:Xn,onSetViewport:Br,onDataMutationForwarded:Kd,editorMode:!0,onIdleChange:sa,notificationSettings:er,buildTabActive:nt==="build",claudeStartMode:Vt==="continue"?"resume":"fresh",claudeSessionId:E,resultsOpen:An})}),An&&n("div",{style:{flex:"1 1 50%"},className:"min-h-0 border-t-2 border-gray-300",children:n(qS,{scenarios:a,allScenarios:o,glossaryFunctions:c,projectRoot:r,activeScenarioId:Y,onScenarioSelect:nr,onClose:Xn,entityChangeStatus:m,modifiedFiles:f,featureName:g,userPrompt:y})})]}),n("div",{className:"absolute inset-0 flex flex-col overflow-hidden",style:{visibility:nt==="app"?"visible":"hidden"},children:n(e1,{hasProject:s,scenarios:o,analyzedEntities:i,allEntities:l,glossaryFunctions:c,glossaryEntries:p,projectRoot:r,activeScenarioId:Y,onScenarioSelect:nr,onAnalyzedScenarioSelect:Be,onSwitchToBuild:gt,zoomComponent:A,focusedEntity:z,onZoomChange:oi,entityImports:u,pageFilePaths:h,projectTitle:x,projectDescription:w,breadcrumbItems:Xd,migrationMode:j,migrationState:$,onStartMigration:Rt})}),n("div",{className:"absolute inset-0 flex flex-col overflow-hidden",style:{visibility:nt==="data"?"visible":"hidden"},children:n(MS,{scenarios:o,projectRoot:r,activeScenarioId:Y,onScenarioSelect:nr,zoomComponent:A,focusedEntity:z,onZoomChange:oi,analyzedEntities:[],glossaryFunctions:c,activeAnalyzedScenarioId:pe==null?void 0:pe.scenarioId,onAnalyzedScenarioSelect:Be,entityImports:u,pageFilePaths:h})}),n("div",{className:"absolute inset-0 flex flex-col overflow-hidden",style:{visibility:nt==="journal"?"visible":"hidden"},children:n(BS,{isActive:nt==="journal",onScreenshotClick:eu,glossaryFunctions:c})})]}),n(Ec,{serverUrl:O,isStarting:re,projectSlug:t,devServerError:le,onStartServer:he?ge:void 0,notificationSettings:er,onChangeNotificationSettings:Yr})]}),!yt&&!qn&&n(r1,{onMouseDown:Dr,onDoubleClick:Or,isDragging:Rr}),qn&&n("div",{className:"shrink-0 flex items-center justify-center cursor-pointer hover:bg-[#3d3d3d] transition-colors",style:{width:8,backgroundColor:"#2d2d2d"},onClick:Lr,title:"Expand preview",children:n("svg",{width:"6",height:"10",viewBox:"0 0 6 10",fill:"none",stroke:"#888",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round",children:n("path",{d:"M5 1l-4 4 4 4"})})}),d("div",{className:"flex-1 flex flex-col min-w-0",style:{...qn?{display:"none"}:void 0,...Rr?{pointerEvents:"none"}:void 0},children:[d("div",{className:"bg-[#2d2d2d] border-b border-[#3d3d3d] shrink-0 z-10 h-10 flex items-center pr-4 relative",children:[n("div",{className:"flex items-center gap-1 shrink-0 z-10",children:n("button",{onClick:()=>{yt?(Qn(),setTimeout(()=>{var te;return(te=T.current)==null?void 0:te.focus()},50)):Fr()},className:`p-1.5 rounded transition-colors cursor-pointer ${yt?"text-white bg-[#666] hover:bg-[#777]":"text-gray-500 hover:text-gray-300"}`,title:yt?"Show chat":"Hide chat",children:n("svg",{width:"14",height:"14",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round",children:yt?d(ye,{children:[n("path",{d:"M13 17l5-5-5-5"}),n("path",{d:"M6 17l5-5-5-5"})]}):d(ye,{children:[n("path",{d:"M11 17l-5-5 5-5"}),n("path",{d:"M18 17l-5-5 5-5"})]})})})}),n("div",{className:"absolute inset-0 flex items-center justify-center gap-1 pointer-events-none",children:d("div",{className:"flex items-center gap-1 pointer-events-auto",children:[Cs.map(te=>d("button",{onClick:()=>{Ge&&mt(!1),tu(te)},className:`p-1.5 rounded transition-colors cursor-pointer ${!Ge&&Me.name===te.name?"text-white bg-[#555]":"text-gray-500 hover:text-gray-300"}`,title:`${te.name} (${te.width}×${te.height})`,children:[te.name==="Desktop"&&d("svg",{width:"16",height:"16",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round",children:[n("rect",{x:"2",y:"3",width:"20",height:"14",rx:"2"}),n("path",{d:"M8 21h8M12 17v4"})]}),te.name==="Laptop"&&d("svg",{width:"16",height:"16",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round",children:[n("path",{d:"M4 6a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8H4V6z"}),n("path",{d:"M2 18h20"})]}),te.name==="Tablet"&&d("svg",{width:"16",height:"16",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round",children:[n("rect",{x:"5",y:"2",width:"14",height:"20",rx:"2"}),n("path",{d:"M12 18h.01"})]}),te.name==="Mobile"&&d("svg",{width:"16",height:"16",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round",children:[n("rect",{x:"7",y:"2",width:"10",height:"20",rx:"2"}),n("path",{d:"M12 18h.01"})]})]},te.name)),d("div",{className:"relative",children:[d("button",{onClick:()=>{Ge||Cn(te=>!te)},className:`flex items-center gap-1.5 px-2 py-1 rounded transition-colors ${Ge?"":"cursor-pointer"} ${Ge||Nn||!Cs.some(te=>te.name===Me.name)?"text-white bg-[#555]":"text-gray-400 hover:text-gray-200 hover:bg-[#444]"}`,title:"Custom dimensions",children:[n("svg",{width:"14",height:"14",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round",children:n("path",{d:"M17 3a2.83 2.83 0 1 1 4 4L7.5 20.5 2 22l1.5-5.5L17 3z"})}),n("span",{className:"text-xs font-mono",children:Ge&&Dt?`${Math.round(Dt.width)} × ${Math.round(Dt.height)}`:`${Me.width} × ${Me.height??900}`})]}),Nn&&n(Uf,{currentWidth:Me.width,currentHeight:Me.height??900,devicePresets:ia,customSizes:oa,onApply:ru,onSave:nu,onRemove:Zd,onClose:()=>Cn(!1)})]}),n("button",{onClick:()=>{mt(te=>!te)},className:`p-1.5 rounded transition-colors cursor-pointer ${Ge?"text-white bg-[#555]":"text-gray-500 hover:text-gray-300"}`,title:Ge?"Exit fullscreen":"Fill page with preview",children:n("svg",{width:"14",height:"14",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round",children:Ge?d(ye,{children:[n("polyline",{points:"4 14 10 14 10 20"}),n("polyline",{points:"20 10 14 10 14 4"}),n("line",{x1:"14",y1:"10",x2:"21",y2:"3"}),n("line",{x1:"3",y1:"21",x2:"10",y2:"14"})]}):d(ye,{children:[n("polyline",{points:"15 3 21 3 21 9"}),n("polyline",{points:"9 21 3 21 3 15"}),n("line",{x1:"21",y1:"3",x2:"14",y2:"10"}),n("line",{x1:"3",y1:"21",x2:"10",y2:"14"})]})})}),n("button",{onClick:()=>{const te=ca||jn;te&&window.open(te,"_blank")},className:"p-1.5 rounded text-gray-500 hover:text-gray-300 transition-colors cursor-pointer",title:"Open preview in new window",children:d("svg",{width:"14",height:"14",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round",children:[n("path",{d:"M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"}),n("polyline",{points:"15 3 21 3 21 9"}),n("line",{x1:"10",y1:"14",x2:"21",y2:"3"})]})})]})})]}),it&&n(l1,{onSaveToCurrent:()=>void si("overwrite"),onSaveAsNew:()=>void si("new"),onDismiss:()=>Ke(!1),isSaving:rn,scenarioName:(li=o.find(te=>{var xe;return te.id===(Y||((xe=Ii(o))==null?void 0:xe.id))}))==null?void 0:li.name}),n("div",{ref:J,className:`flex-1 flex overflow-hidden ${Ge?"":"items-center justify-center p-8"}`,style:Ge?{backgroundColor:"#fff"}:Ce?{backgroundColor:"#f5f0e8",backgroundImage:"repeating-linear-gradient(0deg, transparent, transparent 19px, #e8e0d0 19px, #e8e0d0 20px), repeating-linear-gradient(90deg, transparent, transparent 19px, #e8e0d0 19px, #e8e0d0 20px)"}:{backgroundImage:`
|
|
547
|
+
linear-gradient(45deg, #333 25%, transparent 25%),
|
|
548
|
+
linear-gradient(-45deg, #333 25%, transparent 25%),
|
|
549
|
+
linear-gradient(45deg, transparent 75%, #333 75%),
|
|
550
|
+
linear-gradient(-45deg, transparent 75%, #333 75%)
|
|
551
|
+
`,backgroundSize:"16px 16px",backgroundPosition:"0 0, 0 8px, 8px -8px, -8px 0px",backgroundColor:"#2d2d2d"},children:Ce?n(a1,{preview:Ce,onDismiss:()=>Fe(null),onLoadCommit:Se}):jn?Ge?d("div",{className:"relative w-full h-full bg-white",children:[!_e&&!Ot&&n("div",{className:"absolute inset-0 flex items-center justify-center z-10",children:d("div",{className:"flex flex-col items-center justify-center gap-6 bg-[#2a2a2a] rounded-lg p-8 w-[500px] h-[300px]",children:[n("div",{className:"mb-4",children:n(Bt,{})}),d("div",{className:"flex flex-col gap-3 text-center",children:[n("h2",{className:"text-xl font-medium text-gray-200 leading-[28px] m-0 font-['IBM_Plex_Sans']",children:"Loading Preview"}),n("p",{className:"text-sm text-gray-400 leading-5 m-0 font-['IBM_Plex_Sans']",children:"Waiting for the app to render"})]})]})}),Ot&&n("div",{className:"absolute inset-0 z-20 flex items-center justify-center",style:{backgroundColor:"rgba(0, 0, 0, 0.25)",backdropFilter:"blur(1px)",transition:"opacity 200ms ease-out"},children:d("div",{className:"flex flex-col items-center gap-3 animate-pulse",children:[n("svg",{className:"w-6 h-6 text-white/80 animate-spin",viewBox:"0 0 24 24",fill:"none",children:n("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeWidth:"3",strokeLinecap:"round",strokeDasharray:"50 100"})}),n("span",{className:"text-white/70 text-xs font-['IBM_Plex_Sans']",children:"Switching scenario"})]})}),n("iframe",{ref:G,src:ca||jn,className:"w-full h-full border-none",title:"Editor preview",onLoad:ii,style:{opacity:_e?1:0}},$e)]}):n("div",{style:{width:`${Me.width*me}px`,height:`${(Me.height??900)*me}px`},children:d("div",{className:"relative bg-white origin-top-left",style:{width:`${Me.width}px`,height:`${Me.height??900}px`,transform:me<1?`scale(${me})`:void 0},children:[!_e&&!Ot&&n("div",{className:"absolute inset-0 flex items-center justify-center z-10",children:d("div",{className:"flex flex-col items-center justify-center gap-6 bg-[#2a2a2a] rounded-lg p-8 w-[500px] h-[300px]",children:[n("div",{className:"mb-4",children:n(Bt,{})}),d("div",{className:"flex flex-col gap-3 text-center",children:[n("h2",{className:"text-xl font-medium text-gray-200 leading-[28px] m-0 font-['IBM_Plex_Sans']",children:"Loading Preview"}),n("p",{className:"text-sm text-gray-400 leading-5 m-0 font-['IBM_Plex_Sans']",children:"Waiting for the app to render"})]})]})}),Ot&&n("div",{className:"absolute inset-0 z-20 flex items-center justify-center",style:{backgroundColor:"rgba(0, 0, 0, 0.25)",backdropFilter:"blur(1px)",transition:"opacity 200ms ease-out"},children:d("div",{className:"flex flex-col items-center gap-3 animate-pulse",children:[n("svg",{className:"w-6 h-6 text-white/80 animate-spin",viewBox:"0 0 24 24",fill:"none",children:n("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeWidth:"3",strokeLinecap:"round",strokeDasharray:"50 100"})}),n("span",{className:"text-white/70 text-xs font-['IBM_Plex_Sans']",children:"Switching scenario"})]})}),n("iframe",{ref:G,src:ca||jn,className:"w-full h-full border-none",title:"Editor preview",onLoad:ii,style:{opacity:_e?1:0}},$e)]})}):n("div",{className:"bg-[#2a2a2a] rounded-lg flex flex-col items-center justify-center",style:{width:`${Me.width*me}px`,height:`${(Me.height??900)*me}px`},children:le?d("div",{className:"flex flex-col gap-4 text-center px-8 max-w-[600px]",children:[n("h2",{className:"text-xl font-medium text-red-400 leading-[28px] m-0 font-['IBM_Plex_Sans']",children:"Dev Server Failed"}),n("pre",{className:"text-xs text-left bg-[#1e1e1e] text-gray-300 p-4 rounded overflow-auto max-h-[300px] w-full font-mono whitespace-pre-wrap",children:le}),n("button",{onClick:oe,className:"mx-auto px-4 py-2 bg-[#005c75] text-white text-sm font-medium rounded hover:bg-[#004d63] transition-colors cursor-pointer",children:"Retry"})]}):re||ne?d(ye,{children:[n("div",{className:"mb-4",children:n(Bt,{})}),d("div",{className:"flex flex-col gap-3 text-center",children:[n("h2",{className:"text-xl font-medium text-gray-200 leading-[28px] m-0 font-['IBM_Plex_Sans']",children:ne?"Starting Interactive Mode":"Starting Dev Server"}),n("p",{className:"text-sm text-gray-400 leading-5 m-0 font-['IBM_Plex_Sans']",children:ne?"Loading component preview...":"Your dev server is starting up..."})]})]}):d("div",{className:"flex flex-col gap-3 text-center px-8",children:[n("h2",{className:"text-xl font-medium text-gray-200 leading-[28px] m-0 font-['IBM_Plex_Sans']",children:"Live Preview"}),n("p",{className:"text-sm text-gray-500 leading-5 m-0 font-['IBM_Plex_Sans']",children:"Describe what you want to build in the Build tab"})]})})})]})]})]})}),n(Dl,{})]})}),C1=Object.freeze(Object.defineProperty({__proto__:null,default:N1,loader:w1,meta:x1,shouldRevalidate:y1},Symbol.toStringTag,{value:"Module"})),S1=Qe(function(){return null}),cr=Object.freeze(Object.defineProperty({__proto__:null,default:S1},Symbol.toStringTag,{value:"Module"})),T2={entry:{module:"/assets/entry.client-SuW9syRS.js",imports:["/assets/jsx-runtime-D_zvdyIk.js","/assets/chunk-JZWAC4HX-BAdwhyCx.js","/assets/index-CWV9XZiG.js"],css:[]},routes:{root:{id:"root",parentId:void 0,path:"",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!0,hasErrorBoundary:!0,module:"/assets/root-DB3O9_9j.js",imports:["/assets/jsx-runtime-D_zvdyIk.js","/assets/chunk-JZWAC4HX-BAdwhyCx.js","/assets/index-CWV9XZiG.js","/assets/preload-helper-ckwbz45p.js","/assets/cy-logo-cli-DcX-ZS3p.js","/assets/ReportIssueModal-C2PLkej3.js","/assets/useReportContext-Cy5Qg_UR.js","/assets/loader-circle-De-7qQ2u.js","/assets/createLucideIcon-4ImjHTVC.js","/assets/book-open-CL-lMgHh.js","/assets/useToast-5HR2j9ZE.js","/assets/useLastLogLine-BNd5hYuW.js","/assets/LogViewer-CM5zg40N.js","/assets/EntityTypeIcon-CD7lGABo.js","/assets/TruncatedFilePath-CK7-NaPZ.js","/assets/chevron-down-GmAjGS9-.js","/assets/circle-check-DFcQkN5j.js","/assets/CopyButton-CLe80MMu.js","/assets/triangle-alert-DqJ0j69l.js","/assets/copy-C6iF61Xs.js"],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/entity.$sha.scenarios.$scenarioId.fullscreen":{id:"routes/entity.$sha.scenarios.$scenarioId.fullscreen",parentId:"root",path:"entity/:sha/scenarios/:scenarioId/fullscreen",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!0,hasErrorBoundary:!1,module:"/assets/entity._sha.scenarios._scenarioId.fullscreen-C6eeL24i.js",imports:["/assets/chunk-JZWAC4HX-BAdwhyCx.js","/assets/jsx-runtime-D_zvdyIk.js","/assets/Spinner-D0LgAaSa.js","/assets/useLastLogLine-BNd5hYuW.js","/assets/ViewportInspectBar-BA_Ry-rs.js","/assets/useCustomSizes-DhXHbEjP.js","/assets/cy-logo-cli-DcX-ZS3p.js","/assets/InlineSpinner-CgTNOhnu.js"],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/entity.$sha.scenarios.$scenarioId.dev":{id:"routes/entity.$sha.scenarios.$scenarioId.dev",parentId:"root",path:"entity/:sha/scenarios/:scenarioId/dev",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!0,hasErrorBoundary:!1,module:"/assets/entity._sha.scenarios._scenarioId.dev-KTQuL0aj.js",imports:["/assets/chunk-JZWAC4HX-BAdwhyCx.js","/assets/jsx-runtime-D_zvdyIk.js","/assets/Spinner-D0LgAaSa.js","/assets/useLastLogLine-BNd5hYuW.js","/assets/ViewportInspectBar-BA_Ry-rs.js","/assets/useCustomSizes-DhXHbEjP.js","/assets/cy-logo-cli-DcX-ZS3p.js","/assets/InlineSpinner-CgTNOhnu.js","/assets/editorPreview-oepecPae.js","/assets/SafeScreenshot-DanvyBPb.js","/assets/preload-helper-ckwbz45p.js"],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-journal-screenshot":{id:"routes/api.editor-journal-screenshot",parentId:"root",path:"api/editor-journal-screenshot",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-journal-screenshot-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/entity.$sha_.edit.$scenarioId":{id:"routes/entity.$sha_.edit.$scenarioId",parentId:"root",path:"entity/:sha/edit/:scenarioId",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!0,hasErrorBoundary:!1,module:"/assets/entity._sha_.edit._scenarioId-CAoXLsQr.js",imports:["/assets/chunk-JZWAC4HX-BAdwhyCx.js","/assets/jsx-runtime-D_zvdyIk.js","/assets/InteractivePreview-CKeQT5Ty.js","/assets/Spinner-D0LgAaSa.js","/assets/preload-helper-ckwbz45p.js","/assets/useLastLogLine-BNd5hYuW.js","/assets/InlineSpinner-CgTNOhnu.js"],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-register-scenario":{id:"routes/api.editor-register-scenario",parentId:"root",path:"api/editor-register-scenario",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-register-scenario-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-scenario-coverage":{id:"routes/api.editor-scenario-coverage",parentId:"root",path:"api/editor-scenario-coverage",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-scenario-coverage-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/entity.$sha_.create-scenario":{id:"routes/entity.$sha_.create-scenario",parentId:"root",path:"entity/:sha/create-scenario",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!0,hasErrorBoundary:!1,module:"/assets/entity._sha_.create-scenario-DQM8E7L4.js",imports:["/assets/chunk-JZWAC4HX-BAdwhyCx.js","/assets/jsx-runtime-D_zvdyIk.js","/assets/InteractivePreview-CKeQT5Ty.js","/assets/Spinner-D0LgAaSa.js","/assets/executionFlowCoverage-BWhdfn70.js","/assets/preload-helper-ckwbz45p.js","/assets/useLastLogLine-BNd5hYuW.js","/assets/InlineSpinner-CgTNOhnu.js"],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-capture-scenario":{id:"routes/api.editor-capture-scenario",parentId:"root",path:"api/editor-capture-scenario",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-capture-scenario-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-scenario-image.$":{id:"routes/api.editor-scenario-image.$",parentId:"root",path:"api/editor-scenario-image/*",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-scenario-image._-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-journal-image.$":{id:"routes/api.editor-journal-image.$",parentId:"root",path:"api/editor-journal-image/*",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-journal-image._-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-rename-scenario":{id:"routes/api.editor-rename-scenario",parentId:"root",path:"api/editor-rename-scenario",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-rename-scenario-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-save-seed-state":{id:"routes/api.editor-save-seed-state",parentId:"root",path:"api/editor-save-seed-state",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-save-seed-state-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-scenario-prompt":{id:"routes/api.editor-scenario-prompt",parentId:"root",path:"api/editor-scenario-prompt",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-scenario-prompt-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-switch-scenario":{id:"routes/api.editor-switch-scenario",parentId:"root",path:"api/editor-switch-scenario",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-switch-scenario-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.generate-scenario-data":{id:"routes/api.generate-scenario-data",parentId:"root",path:"api/generate-scenario-data",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.generate-scenario-data-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-journal-update":{id:"routes/api.editor-journal-update",parentId:"root",path:"api/editor-journal-update",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-journal-update-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-client-errors":{id:"routes/api.editor-client-errors",parentId:"root",path:"api/editor-client-errors",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-client-errors-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-entity-status":{id:"routes/api.editor-entity-status",parentId:"root",path:"api/editor-entity-status",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-entity-status-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-journal-entry":{id:"routes/api.editor-journal-entry",parentId:"root",path:"api/editor-journal-entry",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-journal-entry-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-scenario-data":{id:"routes/api.editor-scenario-data",parentId:"root",path:"api/editor-scenario-data",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-scenario-data-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.llm-calls.$entitySha":{id:"routes/api.llm-calls.$entitySha",parentId:"root",path:"api/llm-calls/:entitySha",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.llm-calls._entitySha-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-project-info":{id:"routes/api.editor-project-info",parentId:"root",path:"api/editor-project-info",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-project-info-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-test-results":{id:"routes/api.editor-test-results",parentId:"root",path:"api/editor-test-results",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-test-results-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.branch-entity-diff":{id:"routes/api.branch-entity-diff",parentId:"root",path:"api/branch-entity-diff",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.branch-entity-diff-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.capture-screenshot":{id:"routes/api.capture-screenshot",parentId:"root",path:"api/capture-screenshot",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.capture-screenshot-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-load-commit":{id:"routes/api.editor-load-commit",parentId:"root",path:"api/editor-load-commit",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-load-commit-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.recapture-scenario":{id:"routes/api.recapture-scenario",parentId:"root",path:"api/recapture-scenario",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.recapture-scenario-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.agent-transcripts":{id:"routes/api.agent-transcripts",parentId:"root",path:"api/agent-transcripts",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.agent-transcripts-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-dev-server":{id:"routes/api.editor-dev-server",parentId:"root",path:"api/editor-dev-server",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-dev-server-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.logs.$projectSlug":{id:"routes/api.logs.$projectSlug",parentId:"root",path:"api/logs/:projectSlug",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.logs._projectSlug-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-file-diff":{id:"routes/api.editor-file-diff",parentId:"root",path:"api/editor-file-diff",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-file-diff-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-scenarios":{id:"routes/api.editor-scenarios",parentId:"root",path:"api/editor-scenarios",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-scenarios-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.execute-function":{id:"routes/api.execute-function",parentId:"root",path:"api/execute-function",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.execute-function-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.interactive-mode":{id:"routes/api.interactive-mode",parentId:"root",path:"api/interactive-mode",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.interactive-mode-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.delete-scenario":{id:"routes/api.delete-scenario",parentId:"root",path:"api/delete-scenario",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.delete-scenario-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.dev-mode-events":{id:"routes/api.dev-mode-events",parentId:"root",path:"api/dev-mode-events",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.dev-mode-events-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.generate-report":{id:"routes/api.generate-report",parentId:"root",path:"api/generate-report",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.generate-report-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-journal":{id:"routes/api.editor-journal",parentId:"root",path:"api/editor-journal",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-journal-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-refresh":{id:"routes/api.editor-refresh",parentId:"root",path:"api/editor-refresh",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-refresh-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-session":{id:"routes/api.editor-session",parentId:"root",path:"api/editor-session",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-session-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.memory-profile":{id:"routes/api.memory-profile",parentId:"root",path:"api/memory-profile",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.memory-profile-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.process-status":{id:"routes/api.process-status",parentId:"root",path:"api/process-status",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.process-status-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.restart-server":{id:"routes/api.restart-server",parentId:"root",path:"api/restart-server",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.restart-server-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.save-scenarios":{id:"routes/api.save-scenarios",parentId:"root",path:"api/save-scenarios",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.save-scenarios-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/agent-transcripts":{id:"routes/agent-transcripts",parentId:"root",path:"agent-transcripts",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!0,hasErrorBoundary:!1,module:"/assets/agent-transcripts-Bg3e7q4S.js",imports:["/assets/chunk-JZWAC4HX-BAdwhyCx.js","/assets/jsx-runtime-D_zvdyIk.js","/assets/useReportContext-Cy5Qg_UR.js","/assets/createLucideIcon-4ImjHTVC.js","/assets/terminal-CrplD4b1.js","/assets/search-BdBb5aqc.js","/assets/chevron-down-GmAjGS9-.js","/assets/book-open-CL-lMgHh.js","/assets/triangle-alert-DqJ0j69l.js","/assets/copy-C6iF61Xs.js"],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-commit":{id:"routes/api.editor-commit",parentId:"root",path:"api/editor-commit",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-commit-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-audit":{id:"routes/api.editor-audit",parentId:"root",path:"api/editor-audit",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-audit-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.kill-process":{id:"routes/api.kill-process",parentId:"root",path:"api/kill-process",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.kill-process-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.save-fixture":{id:"routes/api.save-fixture",parentId:"root",path:"api/save-fixture",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.save-fixture-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.screenshot.$":{id:"routes/api.screenshot.$",parentId:"root",path:"api/screenshot/*",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.screenshot._-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/activity.($tab)":{id:"routes/activity.($tab)",parentId:"root",path:"activity/:tab?",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!0,hasErrorBoundary:!1,module:"/assets/activity.(_tab)-BOARiB-g.js",imports:["/assets/chunk-JZWAC4HX-BAdwhyCx.js","/assets/jsx-runtime-D_zvdyIk.js","/assets/LogViewer-CM5zg40N.js","/assets/useLastLogLine-BNd5hYuW.js","/assets/useReportContext-Cy5Qg_UR.js","/assets/EntityTypeIcon-CD7lGABo.js","/assets/EntityTypeBadge-CQgyEGV-.js","/assets/SafeScreenshot-DanvyBPb.js","/assets/LoadingDots-By5zI316.js","/assets/loader-circle-De-7qQ2u.js","/assets/pause-CFxEKL1u.js","/assets/createLucideIcon-4ImjHTVC.js"],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.debug-setup":{id:"routes/api.debug-setup",parentId:"root",path:"api/debug-setup",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.debug-setup-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-file":{id:"routes/api.editor-file",parentId:"root",path:"api/editor-file",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-file-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.labs-unlock":{id:"routes/api.labs-unlock",parentId:"root",path:"api/labs-unlock",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.labs-unlock-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.recapture":{id:"routes/api.recapture",parentId:"root",path:"api/recapture",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.recapture-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.rule-path":{id:"routes/api.rule-path",parentId:"root",path:"api/rule-path",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.rule-path-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/entity.$sha.$":{id:"routes/entity.$sha.$",parentId:"root",path:"entity/:sha/*",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!0,hasErrorBoundary:!1,module:"/assets/entity._sha._-Blfy9UlN.js",imports:["/assets/chunk-JZWAC4HX-BAdwhyCx.js","/assets/jsx-runtime-D_zvdyIk.js","/assets/useLastLogLine-BNd5hYuW.js","/assets/Spinner-D0LgAaSa.js","/assets/InteractivePreview-CKeQT5Ty.js","/assets/SafeScreenshot-DanvyBPb.js","/assets/LibraryFunctionPreview-D3s1MFkb.js","/assets/LoadingDots-By5zI316.js","/assets/scenarioStatus-B_8jpV3e.js","/assets/ScenarioViewer-DUMfcNVK.js","/assets/createLucideIcon-4ImjHTVC.js","/assets/executionFlowCoverage-BWhdfn70.js","/assets/EntityTypeIcon-CD7lGABo.js","/assets/CopyButton-CLe80MMu.js","/assets/LogViewer-CM5zg40N.js","/assets/useReportContext-Cy5Qg_UR.js","/assets/preload-helper-ckwbz45p.js","/assets/InlineSpinner-CgTNOhnu.js","/assets/ViewportInspectBar-BA_Ry-rs.js","/assets/useCustomSizes-DhXHbEjP.js","/assets/ReportIssueModal-C2PLkej3.js","/assets/circle-check-DFcQkN5j.js","/assets/triangle-alert-DqJ0j69l.js","/assets/copy-C6iF61Xs.js"],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.analyze":{id:"routes/api.analyze",parentId:"root",path:"api/analyze",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.analyze-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/simulations":{id:"routes/simulations",parentId:"root",path:"simulations",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!0,hasErrorBoundary:!1,module:"/assets/simulations-DSCdE99u.js",imports:["/assets/chunk-JZWAC4HX-BAdwhyCx.js","/assets/jsx-runtime-D_zvdyIk.js","/assets/useReportContext-Cy5Qg_UR.js","/assets/SafeScreenshot-DanvyBPb.js","/assets/LoadingDots-By5zI316.js","/assets/EntityTypeIcon-CD7lGABo.js","/assets/fileTableUtils-Daa96Fr1.js","/assets/chevron-down-GmAjGS9-.js","/assets/search-BdBb5aqc.js","/assets/loader-circle-De-7qQ2u.js","/assets/createLucideIcon-4ImjHTVC.js"],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.events":{id:"routes/api.events",parentId:"root",path:"api/events",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.events-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.health":{id:"routes/api.health",parentId:"root",path:"api/health",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.health-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.memory":{id:"routes/api.memory",parentId:"root",path:"api/memory",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.memory-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.queue":{id:"routes/api.queue",parentId:"root",path:"api/queue",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.queue-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/dev.empty":{id:"routes/dev.empty",parentId:"root",path:"dev/empty",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!0,hasErrorBoundary:!1,module:"/assets/dev.empty-C8y4mmyv.js",imports:["/assets/chunk-JZWAC4HX-BAdwhyCx.js","/assets/jsx-runtime-D_zvdyIk.js","/assets/ScenarioViewer-DUMfcNVK.js","/assets/InteractivePreview-CKeQT5Ty.js","/assets/ViewportInspectBar-BA_Ry-rs.js","/assets/useCustomSizes-DhXHbEjP.js","/assets/LogViewer-CM5zg40N.js","/assets/SafeScreenshot-DanvyBPb.js","/assets/useLastLogLine-BNd5hYuW.js","/assets/Spinner-D0LgAaSa.js","/assets/preload-helper-ckwbz45p.js","/assets/ReportIssueModal-C2PLkej3.js","/assets/createLucideIcon-4ImjHTVC.js","/assets/circle-check-DFcQkN5j.js","/assets/triangle-alert-DqJ0j69l.js","/assets/copy-C6iF61Xs.js","/assets/scenarioStatus-B_8jpV3e.js","/assets/InlineSpinner-CgTNOhnu.js"],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/settings":{id:"routes/settings",parentId:"root",path:"settings",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!0,hasErrorBoundary:!1,module:"/assets/settings-DdE-Untf.js",imports:["/assets/chunk-JZWAC4HX-BAdwhyCx.js","/assets/jsx-runtime-D_zvdyIk.js","/assets/useReportContext-Cy5Qg_UR.js","/assets/CopyButton-CLe80MMu.js","/assets/copy-C6iF61Xs.js","/assets/createLucideIcon-4ImjHTVC.js"],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/static.$":{id:"routes/static.$",parentId:"root",path:"static/*",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/static._-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/_index":{id:"routes/_index",parentId:"root",path:void 0,index:!0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!0,hasErrorBoundary:!1,module:"/assets/_index-BAWd-Xjf.js",imports:["/assets/chunk-JZWAC4HX-BAdwhyCx.js","/assets/jsx-runtime-D_zvdyIk.js","/assets/useLastLogLine-BNd5hYuW.js","/assets/useToast-5HR2j9ZE.js","/assets/useReportContext-Cy5Qg_UR.js","/assets/LogViewer-CM5zg40N.js","/assets/EntityTypeIcon-CD7lGABo.js","/assets/SafeScreenshot-DanvyBPb.js","/assets/scenarioStatus-B_8jpV3e.js","/assets/createLucideIcon-4ImjHTVC.js","/assets/circle-check-DFcQkN5j.js","/assets/loader-circle-De-7qQ2u.js"],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/memory":{id:"routes/memory",parentId:"root",path:"memory",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!0,hasErrorBoundary:!1,module:"/assets/memory-Cx2xEx7s.js",imports:["/assets/chunk-JZWAC4HX-BAdwhyCx.js","/assets/jsx-runtime-D_zvdyIk.js","/assets/useReportContext-Cy5Qg_UR.js","/assets/createLucideIcon-4ImjHTVC.js","/assets/terminal-CrplD4b1.js","/assets/copy-C6iF61Xs.js","/assets/CopyButton-CLe80MMu.js","/assets/chevron-down-GmAjGS9-.js","/assets/search-BdBb5aqc.js","/assets/pause-CFxEKL1u.js","/assets/book-open-CL-lMgHh.js"],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/files":{id:"routes/files",parentId:"root",path:"files",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!0,hasErrorBoundary:!1,module:"/assets/files-D-xGrg29.js",imports:["/assets/chunk-JZWAC4HX-BAdwhyCx.js","/assets/jsx-runtime-D_zvdyIk.js","/assets/useReportContext-Cy5Qg_UR.js","/assets/EntityItem-Crt_KN_U.js","/assets/fileTableUtils-Daa96Fr1.js","/assets/chevron-down-GmAjGS9-.js","/assets/search-BdBb5aqc.js","/assets/createLucideIcon-4ImjHTVC.js","/assets/useToast-5HR2j9ZE.js","/assets/TruncatedFilePath-CK7-NaPZ.js","/assets/SafeScreenshot-DanvyBPb.js","/assets/LibraryFunctionPreview-D3s1MFkb.js","/assets/scenarioStatus-B_8jpV3e.js","/assets/triangle-alert-DqJ0j69l.js","/assets/EntityTypeIcon-CD7lGABo.js","/assets/EntityTypeBadge-CQgyEGV-.js"],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/labs":{id:"routes/labs",parentId:"root",path:"labs",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!0,hasErrorBoundary:!1,module:"/assets/labs-B_IX45ih.js",imports:["/assets/chunk-JZWAC4HX-BAdwhyCx.js","/assets/jsx-runtime-D_zvdyIk.js","/assets/useReportContext-Cy5Qg_UR.js"],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/git":{id:"routes/git",parentId:"root",path:"git",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!0,hasErrorBoundary:!1,module:"/assets/git-Bq_fbXP5.js",imports:["/assets/chunk-JZWAC4HX-BAdwhyCx.js","/assets/jsx-runtime-D_zvdyIk.js","/assets/useReportContext-Cy5Qg_UR.js","/assets/EntityItem-Crt_KN_U.js","/assets/LogViewer-CM5zg40N.js","/assets/index-DE3jI_dv.js","/assets/fileTableUtils-Daa96Fr1.js","/assets/createLucideIcon-4ImjHTVC.js","/assets/useToast-5HR2j9ZE.js","/assets/TruncatedFilePath-CK7-NaPZ.js","/assets/SafeScreenshot-DanvyBPb.js","/assets/LibraryFunctionPreview-D3s1MFkb.js","/assets/scenarioStatus-B_8jpV3e.js","/assets/triangle-alert-DqJ0j69l.js","/assets/EntityTypeIcon-CD7lGABo.js","/assets/EntityTypeBadge-CQgyEGV-.js"],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/editor.entity.($sha)":{id:"routes/editor.entity.($sha)",parentId:"root",path:"editor",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!0,hasErrorBoundary:!1,module:"/assets/editor.entity.(_sha)-Bnx7yUP0.js",imports:["/assets/chunk-JZWAC4HX-BAdwhyCx.js","/assets/jsx-runtime-D_zvdyIk.js","/assets/useCustomSizes-DhXHbEjP.js","/assets/editorPreview-oepecPae.js","/assets/CopyButton-CLe80MMu.js","/assets/preload-helper-ckwbz45p.js","/assets/cy-logo-cli-DcX-ZS3p.js","/assets/Spinner-D0LgAaSa.js","/assets/copy-C6iF61Xs.js","/assets/createLucideIcon-4ImjHTVC.js","/assets/useLastLogLine-BNd5hYuW.js"],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"editor-tab-index":{id:"editor-tab-index",parentId:"routes/editor.entity.($sha)",path:void 0,index:!0,caseSensitive:void 0,hasAction:!1,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!0,hasErrorBoundary:!1,module:"/assets/editor._tab-Gbk_i5Js.js",imports:["/assets/chunk-JZWAC4HX-BAdwhyCx.js"],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"editor-tab-build":{id:"editor-tab-build",parentId:"routes/editor.entity.($sha)",path:"build",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!0,hasErrorBoundary:!1,module:"/assets/editor._tab-Gbk_i5Js.js",imports:["/assets/chunk-JZWAC4HX-BAdwhyCx.js"],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"editor-tab-structure":{id:"editor-tab-structure",parentId:"routes/editor.entity.($sha)",path:"structure",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!0,hasErrorBoundary:!1,module:"/assets/editor._tab-Gbk_i5Js.js",imports:["/assets/chunk-JZWAC4HX-BAdwhyCx.js"],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"editor-tab-journal":{id:"editor-tab-journal",parentId:"routes/editor.entity.($sha)",path:"journal",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!0,hasErrorBoundary:!1,module:"/assets/editor._tab-Gbk_i5Js.js",imports:["/assets/chunk-JZWAC4HX-BAdwhyCx.js"],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"editor-tab-entity":{id:"editor-tab-entity",parentId:"routes/editor.entity.($sha)",path:"entity/:sha",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!0,hasErrorBoundary:!1,module:"/assets/editor._tab-Gbk_i5Js.js",imports:["/assets/chunk-JZWAC4HX-BAdwhyCx.js"],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0}},url:"/assets/manifest-3157d6b8.js",version:"3157d6b8",sri:void 0},M2="build/client",$2="/",I2={unstable_optimizeDeps:!1,unstable_subResourceIntegrity:!1,unstable_trailingSlashAwareDataRequests:!1,unstable_previewServerPrerendering:!1,v8_middleware:!1,v8_splitRouteModules:!1,v8_viteEnvironmentApi:!1},R2=!0,D2=!1,O2=[],F2={mode:"lazy",manifestPath:"/__manifest"},L2="/",z2={module:Ap},B2={root:{id:"root",parentId:void 0,path:"",index:void 0,caseSensitive:void 0,module:Bf},"routes/entity.$sha.scenarios.$scenarioId.fullscreen":{id:"routes/entity.$sha.scenarios.$scenarioId.fullscreen",parentId:"root",path:"entity/:sha/scenarios/:scenarioId/fullscreen",index:void 0,caseSensitive:void 0,module:Vf},"routes/entity.$sha.scenarios.$scenarioId.dev":{id:"routes/entity.$sha.scenarios.$scenarioId.dev",parentId:"root",path:"entity/:sha/scenarios/:scenarioId/dev",index:void 0,caseSensitive:void 0,module:Eg},"routes/api.editor-journal-screenshot":{id:"routes/api.editor-journal-screenshot",parentId:"root",path:"api/editor-journal-screenshot",index:void 0,caseSensitive:void 0,module:Pg},"routes/entity.$sha_.edit.$scenarioId":{id:"routes/entity.$sha_.edit.$scenarioId",parentId:"root",path:"entity/:sha/edit/:scenarioId",index:void 0,caseSensitive:void 0,module:Qg},"routes/api.editor-register-scenario":{id:"routes/api.editor-register-scenario",parentId:"root",path:"api/editor-register-scenario",index:void 0,caseSensitive:void 0,module:Q0},"routes/api.editor-scenario-coverage":{id:"routes/api.editor-scenario-coverage",parentId:"root",path:"api/editor-scenario-coverage",index:void 0,caseSensitive:void 0,module:ty},"routes/entity.$sha_.create-scenario":{id:"routes/entity.$sha_.create-scenario",parentId:"root",path:"entity/:sha/create-scenario",index:void 0,caseSensitive:void 0,module:ly},"routes/api.editor-capture-scenario":{id:"routes/api.editor-capture-scenario",parentId:"root",path:"api/editor-capture-scenario",index:void 0,caseSensitive:void 0,module:uy},"routes/api.editor-scenario-image.$":{id:"routes/api.editor-scenario-image.$",parentId:"root",path:"api/editor-scenario-image/*",index:void 0,caseSensitive:void 0,module:hy},"routes/api.editor-journal-image.$":{id:"routes/api.editor-journal-image.$",parentId:"root",path:"api/editor-journal-image/*",index:void 0,caseSensitive:void 0,module:fy},"routes/api.editor-rename-scenario":{id:"routes/api.editor-rename-scenario",parentId:"root",path:"api/editor-rename-scenario",index:void 0,caseSensitive:void 0,module:yy},"routes/api.editor-save-seed-state":{id:"routes/api.editor-save-seed-state",parentId:"root",path:"api/editor-save-seed-state",index:void 0,caseSensitive:void 0,module:by},"routes/api.editor-scenario-prompt":{id:"routes/api.editor-scenario-prompt",parentId:"root",path:"api/editor-scenario-prompt",index:void 0,caseSensitive:void 0,module:vy},"routes/api.editor-switch-scenario":{id:"routes/api.editor-switch-scenario",parentId:"root",path:"api/editor-switch-scenario",index:void 0,caseSensitive:void 0,module:Cy},"routes/api.generate-scenario-data":{id:"routes/api.generate-scenario-data",parentId:"root",path:"api/generate-scenario-data",index:void 0,caseSensitive:void 0,module:jx},"routes/api.editor-journal-update":{id:"routes/api.editor-journal-update",parentId:"root",path:"api/editor-journal-update",index:void 0,caseSensitive:void 0,module:Ux},"routes/api.editor-client-errors":{id:"routes/api.editor-client-errors",parentId:"root",path:"api/editor-client-errors",index:void 0,caseSensitive:void 0,module:Jx},"routes/api.editor-entity-status":{id:"routes/api.editor-entity-status",parentId:"root",path:"api/editor-entity-status",index:void 0,caseSensitive:void 0,module:Vx},"routes/api.editor-journal-entry":{id:"routes/api.editor-journal-entry",parentId:"root",path:"api/editor-journal-entry",index:void 0,caseSensitive:void 0,module:Kx},"routes/api.editor-scenario-data":{id:"routes/api.editor-scenario-data",parentId:"root",path:"api/editor-scenario-data",index:void 0,caseSensitive:void 0,module:Qx},"routes/api.llm-calls.$entitySha":{id:"routes/api.llm-calls.$entitySha",parentId:"root",path:"api/llm-calls/:entitySha",index:void 0,caseSensitive:void 0,module:eb},"routes/api.editor-project-info":{id:"routes/api.editor-project-info",parentId:"root",path:"api/editor-project-info",index:void 0,caseSensitive:void 0,module:rb},"routes/api.editor-test-results":{id:"routes/api.editor-test-results",parentId:"root",path:"api/editor-test-results",index:void 0,caseSensitive:void 0,module:ib},"routes/api.branch-entity-diff":{id:"routes/api.branch-entity-diff",parentId:"root",path:"api/branch-entity-diff",index:void 0,caseSensitive:void 0,module:mb},"routes/api.capture-screenshot":{id:"routes/api.capture-screenshot",parentId:"root",path:"api/capture-screenshot",index:void 0,caseSensitive:void 0,module:gb},"routes/api.editor-load-commit":{id:"routes/api.editor-load-commit",parentId:"root",path:"api/editor-load-commit",index:void 0,caseSensitive:void 0,module:Eb},"routes/api.recapture-scenario":{id:"routes/api.recapture-scenario",parentId:"root",path:"api/recapture-scenario",index:void 0,caseSensitive:void 0,module:Tb},"routes/api.agent-transcripts":{id:"routes/api.agent-transcripts",parentId:"root",path:"api/agent-transcripts",index:void 0,caseSensitive:void 0,module:Jb},"routes/api.editor-dev-server":{id:"routes/api.editor-dev-server",parentId:"root",path:"api/editor-dev-server",index:void 0,caseSensitive:void 0,module:Kb},"routes/api.logs.$projectSlug":{id:"routes/api.logs.$projectSlug",parentId:"root",path:"api/logs/:projectSlug",index:void 0,caseSensitive:void 0,module:Zb},"routes/api.editor-file-diff":{id:"routes/api.editor-file-diff",parentId:"root",path:"api/editor-file-diff",index:void 0,caseSensitive:void 0,module:ew},"routes/api.editor-scenarios":{id:"routes/api.editor-scenarios",parentId:"root",path:"api/editor-scenarios",index:void 0,caseSensitive:void 0,module:nw},"routes/api.execute-function":{id:"routes/api.execute-function",parentId:"root",path:"api/execute-function",index:void 0,caseSensitive:void 0,module:aw},"routes/api.interactive-mode":{id:"routes/api.interactive-mode",parentId:"root",path:"api/interactive-mode",index:void 0,caseSensitive:void 0,module:lw},"routes/api.delete-scenario":{id:"routes/api.delete-scenario",parentId:"root",path:"api/delete-scenario",index:void 0,caseSensitive:void 0,module:dw},"routes/api.dev-mode-events":{id:"routes/api.dev-mode-events",parentId:"root",path:"api/dev-mode-events",index:void 0,caseSensitive:void 0,module:hw},"routes/api.generate-report":{id:"routes/api.generate-report",parentId:"root",path:"api/generate-report",index:void 0,caseSensitive:void 0,module:Sw},"routes/api.editor-journal":{id:"routes/api.editor-journal",parentId:"root",path:"api/editor-journal",index:void 0,caseSensitive:void 0,module:kw},"routes/api.editor-refresh":{id:"routes/api.editor-refresh",parentId:"root",path:"api/editor-refresh",index:void 0,caseSensitive:void 0,module:Iw},"routes/api.editor-session":{id:"routes/api.editor-session",parentId:"root",path:"api/editor-session",index:void 0,caseSensitive:void 0,module:Dw},"routes/api.memory-profile":{id:"routes/api.memory-profile",parentId:"root",path:"api/memory-profile",index:void 0,caseSensitive:void 0,module:Bw},"routes/api.process-status":{id:"routes/api.process-status",parentId:"root",path:"api/process-status",index:void 0,caseSensitive:void 0,module:Jw},"routes/api.restart-server":{id:"routes/api.restart-server",parentId:"root",path:"api/restart-server",index:void 0,caseSensitive:void 0,module:Kw},"routes/api.save-scenarios":{id:"routes/api.save-scenarios",parentId:"root",path:"api/save-scenarios",index:void 0,caseSensitive:void 0,module:Qw},"routes/agent-transcripts":{id:"routes/agent-transcripts",parentId:"root",path:"agent-transcripts",index:void 0,caseSensitive:void 0,module:hv},"routes/api.editor-commit":{id:"routes/api.editor-commit",parentId:"root",path:"api/editor-commit",index:void 0,caseSensitive:void 0,module:fv},"routes/api.editor-audit":{id:"routes/api.editor-audit",parentId:"root",path:"api/editor-audit",index:void 0,caseSensitive:void 0,module:Pv},"routes/api.kill-process":{id:"routes/api.kill-process",parentId:"root",path:"api/kill-process",index:void 0,caseSensitive:void 0,module:Tv},"routes/api.save-fixture":{id:"routes/api.save-fixture",parentId:"root",path:"api/save-fixture",index:void 0,caseSensitive:void 0,module:Ov},"routes/api.screenshot.$":{id:"routes/api.screenshot.$",parentId:"root",path:"api/screenshot/*",index:void 0,caseSensitive:void 0,module:Lv},"routes/activity.($tab)":{id:"routes/activity.($tab)",parentId:"root",path:"activity/:tab?",index:void 0,caseSensitive:void 0,module:Kv},"routes/api.debug-setup":{id:"routes/api.debug-setup",parentId:"root",path:"api/debug-setup",index:void 0,caseSensitive:void 0,module:Zv},"routes/api.editor-file":{id:"routes/api.editor-file",parentId:"root",path:"api/editor-file",index:void 0,caseSensitive:void 0,module:eN},"routes/api.labs-unlock":{id:"routes/api.labs-unlock",parentId:"root",path:"api/labs-unlock",index:void 0,caseSensitive:void 0,module:sN},"routes/api.recapture":{id:"routes/api.recapture",parentId:"root",path:"api/recapture",index:void 0,caseSensitive:void 0,module:oN},"routes/api.rule-path":{id:"routes/api.rule-path",parentId:"root",path:"api/rule-path",index:void 0,caseSensitive:void 0,module:uN},"routes/entity.$sha.$":{id:"routes/entity.$sha.$",parentId:"root",path:"entity/:sha/*",index:void 0,caseSensitive:void 0,module:IN},"routes/api.analyze":{id:"routes/api.analyze",parentId:"root",path:"api/analyze",index:void 0,caseSensitive:void 0,module:ON},"routes/simulations":{id:"routes/simulations",parentId:"root",path:"simulations",index:void 0,caseSensitive:void 0,module:WN},"routes/api.events":{id:"routes/api.events",parentId:"root",path:"api/events",index:void 0,caseSensitive:void 0,module:HN},"routes/api.health":{id:"routes/api.health",parentId:"root",path:"api/health",index:void 0,caseSensitive:void 0,module:GN},"routes/api.memory":{id:"routes/api.memory",parentId:"root",path:"api/memory",index:void 0,caseSensitive:void 0,module:lC},"routes/api.queue":{id:"routes/api.queue",parentId:"root",path:"api/queue",index:void 0,caseSensitive:void 0,module:uC},"routes/dev.empty":{id:"routes/dev.empty",parentId:"root",path:"dev/empty",index:void 0,caseSensitive:void 0,module:mC},"routes/settings":{id:"routes/settings",parentId:"root",path:"settings",index:void 0,caseSensitive:void 0,module:vC},"routes/static.$":{id:"routes/static.$",parentId:"root",path:"static/*",index:void 0,caseSensitive:void 0,module:CC},"routes/_index":{id:"routes/_index",parentId:"root",path:void 0,index:!0,caseSensitive:void 0,module:MC},"routes/memory":{id:"routes/memory",parentId:"root",path:"memory",index:void 0,caseSensitive:void 0,module:rS},"routes/files":{id:"routes/files",parentId:"root",path:"files",index:void 0,caseSensitive:void 0,module:cS},"routes/labs":{id:"routes/labs",parentId:"root",path:"labs",index:void 0,caseSensitive:void 0,module:xS},"routes/git":{id:"routes/git",parentId:"root",path:"git",index:void 0,caseSensitive:void 0,module:PS},"routes/editor.entity.($sha)":{id:"routes/editor.entity.($sha)",parentId:"root",path:"editor",index:void 0,caseSensitive:void 0,module:C1},"editor-tab-index":{id:"editor-tab-index",parentId:"routes/editor.entity.($sha)",path:void 0,index:!0,caseSensitive:void 0,module:cr},"editor-tab-build":{id:"editor-tab-build",parentId:"routes/editor.entity.($sha)",path:"build",index:void 0,caseSensitive:void 0,module:cr},"editor-tab-structure":{id:"editor-tab-structure",parentId:"routes/editor.entity.($sha)",path:"structure",index:void 0,caseSensitive:void 0,module:cr},"editor-tab-journal":{id:"editor-tab-journal",parentId:"routes/editor.entity.($sha)",path:"journal",index:void 0,caseSensitive:void 0,module:cr},"editor-tab-entity":{id:"editor-tab-entity",parentId:"routes/editor.entity.($sha)",path:"entity/:sha",index:void 0,caseSensitive:void 0,module:cr}},Y2=!1;export{wh as $,fm as A,pm as B,xm as C,cm as D,Te as E,$h as F,Ih as G,bn as H,b2 as I,Zp as J,eh as K,th as L,nh as M,Zl as N,sh as O,ah as P,Xl as Q,ih as R,lh as S,Ch as T,ec as U,ph as V,mh as W,fh as X,gh as Y,xh as Z,bh as _,Jp as a,vh as a0,qp as a1,Qp as a2,Nh as a3,hs as a4,_h as a5,kh as a6,Eh as a7,Ah as a8,jh as a9,D2 as aA,O2 as aB,F2 as aC,L2 as aD,z2 as aE,B2 as aF,Y2 as aG,T2 as aH,Ph as aa,S2 as ab,So as ac,_2 as ad,E2 as ae,k2 as af,C2 as ag,j2 as ah,Oe as ai,jm as aj,Am as ak,Bm as al,Ds as am,w2 as an,oc as ao,Cm as ap,Sm as aq,jw as ar,P2 as as,nn as at,v2 as au,N2 as av,M2 as aw,$2 as ax,I2 as ay,R2 as az,gn as b,fn as c,Wt as d,kr as e,bo as f,js as g,Ql as h,Up as i,Vh as j,Gh as k,Xt as l,Jt as m,vo as n,nm as o,fs as p,Xe as q,rc as r,sc as s,No as t,qt as u,ac as v,Jn as w,Ln as x,Jh as y,Si as z};
|