@autobe/agent 0.24.2 → 0.25.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/AutoBeAgent.js +11 -1
- package/lib/AutoBeAgent.js.map +1 -1
- package/lib/AutoBeMockAgent.js +1 -0
- package/lib/AutoBeMockAgent.js.map +1 -1
- package/lib/constants/AutoBeSystemPromptConstant.d.ts +21 -21
- package/lib/context/IAutoBeApplication.d.ts +101 -6
- package/lib/context/IAutoBeApplicationProps.d.ts +6 -2
- package/lib/factory/createAgenticaHistory.js +1 -1
- package/lib/factory/createAgenticaHistory.js.map +1 -1
- package/lib/factory/createAutoBeApplication.js +80 -90
- package/lib/factory/createAutoBeApplication.js.map +1 -1
- package/lib/factory/createAutoBeContext.js +6 -5
- package/lib/factory/createAutoBeContext.js.map +1 -1
- package/lib/index.mjs +3914 -2594
- package/lib/index.mjs.map +1 -1
- package/lib/orchestrate/analyze/histories/transformAnalyzeReviewHistories.js +5 -1
- package/lib/orchestrate/analyze/histories/transformAnalyzeReviewHistories.js.map +1 -1
- package/lib/orchestrate/analyze/histories/transformAnalyzeScenarioHistories.d.ts +1 -1
- package/lib/orchestrate/analyze/histories/transformAnalyzeScenarioHistories.js +18 -3
- package/lib/orchestrate/analyze/histories/transformAnalyzeScenarioHistories.js.map +1 -1
- package/lib/orchestrate/analyze/histories/transformAnalyzeWriteHistories.d.ts +5 -1
- package/lib/orchestrate/analyze/histories/transformAnalyzeWriteHistories.js +19 -7
- package/lib/orchestrate/analyze/histories/transformAnalyzeWriteHistories.js.map +1 -1
- package/lib/orchestrate/analyze/orchestrateAnalyze.js +3 -2
- package/lib/orchestrate/analyze/orchestrateAnalyze.js.map +1 -1
- package/lib/orchestrate/analyze/orchestrateAnalyzeScenario.d.ts +1 -1
- package/lib/orchestrate/analyze/orchestrateAnalyzeScenario.js +2 -2
- package/lib/orchestrate/analyze/orchestrateAnalyzeScenario.js.map +1 -1
- package/lib/orchestrate/analyze/orchestrateAnalyzeWrite.d.ts +1 -0
- package/lib/orchestrate/analyze/orchestrateAnalyzeWrite.js +2 -2
- package/lib/orchestrate/analyze/orchestrateAnalyzeWrite.js.map +1 -1
- package/lib/orchestrate/common/histories/transformCommonCorrectCastingHistories.js +1 -1
- package/lib/orchestrate/common/histories/transformCommonCorrectCastingHistories.js.map +1 -1
- package/lib/orchestrate/common/orchestrateCommonCorrectCasting.js +36 -23
- package/lib/orchestrate/common/orchestrateCommonCorrectCasting.js.map +1 -1
- package/lib/orchestrate/common/structures/IAutoBeCommonCorrectCastingApplication.d.ts +22 -42
- package/lib/orchestrate/facade/transformFacadeStateMessage.js +1 -1
- package/lib/orchestrate/facade/transformFacadeStateMessage.js.map +1 -1
- package/lib/orchestrate/interface/histories/transformInterfaceAssetHistories.js +2 -1
- package/lib/orchestrate/interface/histories/transformInterfaceAssetHistories.js.map +1 -1
- package/lib/orchestrate/interface/histories/transformInterfaceAuthorizationsHistories.d.ts +5 -1
- package/lib/orchestrate/interface/histories/transformInterfaceAuthorizationsHistories.js +20 -7
- package/lib/orchestrate/interface/histories/transformInterfaceAuthorizationsHistories.js.map +1 -1
- package/lib/orchestrate/interface/histories/transformInterfaceCommonPrerequisiteHistories.d.ts +3 -0
- package/lib/orchestrate/interface/histories/{transformInterfacePrerequisiteHistories.js → transformInterfaceCommonPrerequisiteHistories.js} +4 -4
- package/lib/orchestrate/interface/histories/transformInterfaceCommonPrerequisiteHistories.js.map +1 -0
- package/lib/orchestrate/interface/histories/transformInterfaceComplementHistories.d.ts +6 -1
- package/lib/orchestrate/interface/histories/transformInterfaceComplementHistories.js +31 -23
- package/lib/orchestrate/interface/histories/transformInterfaceComplementHistories.js.map +1 -1
- package/lib/orchestrate/interface/histories/transformInterfaceEndpointHistories.d.ts +6 -1
- package/lib/orchestrate/interface/histories/transformInterfaceEndpointHistories.js +22 -6
- package/lib/orchestrate/interface/histories/transformInterfaceEndpointHistories.js.map +1 -1
- package/lib/orchestrate/interface/histories/transformInterfaceEndpointsReviewHistories.js +1 -1
- package/lib/orchestrate/interface/histories/transformInterfaceEndpointsReviewHistories.js.map +1 -1
- package/lib/orchestrate/interface/histories/transformInterfaceGroupHistories.d.ts +4 -1
- package/lib/orchestrate/interface/histories/transformInterfaceGroupHistories.js +27 -6
- package/lib/orchestrate/interface/histories/transformInterfaceGroupHistories.js.map +1 -1
- package/lib/orchestrate/interface/histories/transformInterfaceOperationHistories.d.ts +5 -1
- package/lib/orchestrate/interface/histories/transformInterfaceOperationHistories.js +21 -5
- package/lib/orchestrate/interface/histories/transformInterfaceOperationHistories.js.map +1 -1
- package/lib/orchestrate/interface/histories/transformInterfaceOperationsReviewHistories.js +1 -1
- package/lib/orchestrate/interface/histories/transformInterfaceOperationsReviewHistories.js.map +1 -1
- package/lib/orchestrate/interface/histories/transformInterfacePrerequisitesHistories.d.ts +3 -0
- package/lib/orchestrate/interface/histories/transformInterfacePrerequisitesHistories.js +102 -0
- package/lib/orchestrate/interface/histories/transformInterfacePrerequisitesHistories.js.map +1 -0
- package/lib/orchestrate/interface/histories/transformInterfaceSchemaHistories.d.ts +5 -1
- package/lib/orchestrate/interface/histories/transformInterfaceSchemaHistories.js +20 -4
- package/lib/orchestrate/interface/histories/transformInterfaceSchemaHistories.js.map +1 -1
- package/lib/orchestrate/interface/histories/transformInterfaceSchemasReviewHistories.js +2 -2
- package/lib/orchestrate/interface/histories/transformInterfaceSchemasReviewHistories.js.map +1 -1
- package/lib/orchestrate/interface/orchestrateInterface.js +45 -11
- package/lib/orchestrate/interface/orchestrateInterface.js.map +1 -1
- package/lib/orchestrate/interface/orchestrateInterfaceAuthorizations.d.ts +1 -1
- package/lib/orchestrate/interface/orchestrateInterfaceAuthorizations.js +277 -37
- package/lib/orchestrate/interface/orchestrateInterfaceAuthorizations.js.map +1 -1
- package/lib/orchestrate/interface/orchestrateInterfaceComplement.d.ts +4 -1
- package/lib/orchestrate/interface/orchestrateInterfaceComplement.js +69 -70
- package/lib/orchestrate/interface/orchestrateInterfaceComplement.js.map +1 -1
- package/lib/orchestrate/interface/orchestrateInterfaceEndpoints.d.ts +6 -1
- package/lib/orchestrate/interface/orchestrateInterfaceEndpoints.js +28 -13
- package/lib/orchestrate/interface/orchestrateInterfaceEndpoints.js.map +1 -1
- package/lib/orchestrate/interface/orchestrateInterfaceGroups.d.ts +4 -1
- package/lib/orchestrate/interface/orchestrateInterfaceGroups.js +11 -8
- package/lib/orchestrate/interface/orchestrateInterfaceGroups.js.map +1 -1
- package/lib/orchestrate/interface/orchestrateInterfaceOperations.d.ts +5 -1
- package/lib/orchestrate/interface/orchestrateInterfaceOperations.js +36 -21
- package/lib/orchestrate/interface/orchestrateInterfaceOperations.js.map +1 -1
- package/lib/orchestrate/interface/orchestrateInterfaceOperationsReview.js +260 -29
- package/lib/orchestrate/interface/orchestrateInterfaceOperationsReview.js.map +1 -1
- package/lib/orchestrate/interface/orchestrateInterfacePrerequisites.d.ts +5 -0
- package/lib/orchestrate/interface/orchestrateInterfacePrerequisites.js +713 -0
- package/lib/orchestrate/interface/orchestrateInterfacePrerequisites.js.map +1 -0
- package/lib/orchestrate/interface/orchestrateInterfaceSchemas.d.ts +5 -1
- package/lib/orchestrate/interface/orchestrateInterfaceSchemas.js +83 -53
- package/lib/orchestrate/interface/orchestrateInterfaceSchemas.js.map +1 -1
- package/lib/orchestrate/interface/orchestrateInterfaceSchemasReview.js +41 -7
- package/lib/orchestrate/interface/orchestrateInterfaceSchemasReview.js.map +1 -1
- package/lib/orchestrate/interface/structures/IAutoBeInterfaceComplementApplication.d.ts +0 -38
- package/lib/orchestrate/interface/structures/IAutoBeInterfaceGroupApplication.d.ts +6 -10
- package/lib/orchestrate/interface/structures/IAutoBeInterfacePrerequisitesApplication.d.ts +52 -0
- package/lib/orchestrate/{common/structures/IAutoBeCommonCorrectDateApplication.js → interface/structures/IAutoBeInterfacePrerequisitesApplication.js} +1 -1
- package/lib/orchestrate/interface/structures/IAutoBeInterfacePrerequisitesApplication.js.map +1 -0
- package/lib/orchestrate/interface/structures/IAutoBeInterfaceSchemaApplication.d.ts +0 -33
- package/lib/orchestrate/interface/utils/JsonSchemaFactory.d.ts +6 -2
- package/lib/orchestrate/interface/utils/JsonSchemaFactory.js +105 -5
- package/lib/orchestrate/interface/utils/JsonSchemaFactory.js.map +1 -1
- package/lib/orchestrate/interface/utils/JsonSchemaValidator.js +20 -1
- package/lib/orchestrate/interface/utils/JsonSchemaValidator.js.map +1 -1
- package/lib/orchestrate/interface/utils/OperationValidator.d.ts +3 -4
- package/lib/orchestrate/interface/utils/OperationValidator.js +1 -1
- package/lib/orchestrate/interface/utils/OperationValidator.js.map +1 -1
- package/lib/orchestrate/prisma/histories/transformPrismaComponentsHistories.d.ts +4 -1
- package/lib/orchestrate/prisma/histories/transformPrismaComponentsHistories.js +19 -8
- package/lib/orchestrate/prisma/histories/transformPrismaComponentsHistories.js.map +1 -1
- package/lib/orchestrate/prisma/histories/transformPrismaReviewHistories.js +1 -1
- package/lib/orchestrate/prisma/histories/transformPrismaReviewHistories.js.map +1 -1
- package/lib/orchestrate/prisma/histories/transformPrismaSchemaHistories.d.ts +6 -1
- package/lib/orchestrate/prisma/histories/transformPrismaSchemaHistories.js +20 -6
- package/lib/orchestrate/prisma/histories/transformPrismaSchemaHistories.js.map +1 -1
- package/lib/orchestrate/prisma/orchestratePrisma.js +3 -3
- package/lib/orchestrate/prisma/orchestratePrisma.js.map +1 -1
- package/lib/orchestrate/prisma/orchestratePrismaComponent.d.ts +1 -1
- package/lib/orchestrate/prisma/orchestratePrismaComponent.js +6 -3
- package/lib/orchestrate/prisma/orchestratePrismaComponent.js.map +1 -1
- package/lib/orchestrate/prisma/orchestratePrismaSchemas.d.ts +1 -1
- package/lib/orchestrate/prisma/orchestratePrismaSchemas.js +12 -6
- package/lib/orchestrate/prisma/orchestratePrismaSchemas.js.map +1 -1
- package/lib/orchestrate/{common/histories/transformCommonCorrectDateHistories.d.ts → realize/histories/transformRealizeCorrectCastingHistories.d.ts} +1 -2
- package/lib/orchestrate/realize/histories/transformRealizeCorrectCastingHistories.js +32 -0
- package/lib/orchestrate/realize/histories/transformRealizeCorrectCastingHistories.js.map +1 -0
- package/lib/orchestrate/realize/histories/transformRealizeCorrectHistories.js +14 -22
- package/lib/orchestrate/realize/histories/transformRealizeCorrectHistories.js.map +1 -1
- package/lib/orchestrate/realize/histories/transformRealizeWriteAuthorizationsHistories.js +6 -6
- package/lib/orchestrate/realize/histories/transformRealizeWriteHistories.js +8 -2
- package/lib/orchestrate/realize/histories/transformRealizeWriteHistories.js.map +1 -1
- package/lib/orchestrate/realize/internal/compileRealizeFiles.js +1 -2
- package/lib/orchestrate/realize/internal/compileRealizeFiles.js.map +1 -1
- package/lib/orchestrate/realize/orchestRateRealizeCorrectCasting.d.ts +2 -1
- package/lib/orchestrate/realize/orchestRateRealizeCorrectCasting.js +119 -42
- package/lib/orchestrate/realize/orchestRateRealizeCorrectCasting.js.map +1 -1
- package/lib/orchestrate/realize/orchestrateRealize.js +82 -52
- package/lib/orchestrate/realize/orchestrateRealize.js.map +1 -1
- package/lib/orchestrate/realize/orchestrateRealizeCorrect.js +128 -88
- package/lib/orchestrate/realize/orchestrateRealizeCorrect.js.map +1 -1
- package/lib/orchestrate/realize/orchestrateRealizeWrite.d.ts +2 -1
- package/lib/orchestrate/realize/orchestrateRealizeWrite.js +117 -54
- package/lib/orchestrate/realize/orchestrateRealizeWrite.js.map +1 -1
- package/lib/orchestrate/realize/structures/IAutoBeRealizeCorrectApplication.d.ts +52 -26
- package/lib/orchestrate/realize/structures/IAutoBeRealizeWriteApplication.d.ts +44 -34
- package/lib/orchestrate/realize/utils/InternalFileSystem.js +1 -1
- package/lib/orchestrate/realize/utils/InternalFileSystem.js.map +1 -1
- package/lib/orchestrate/realize/utils/generateRealizeScenario.js +1 -5
- package/lib/orchestrate/realize/utils/generateRealizeScenario.js.map +1 -1
- package/lib/orchestrate/realize/utils/getRealizeWriteCodeTemplate.d.ts +8 -3
- package/lib/orchestrate/realize/utils/getRealizeWriteCodeTemplate.js +44 -17
- package/lib/orchestrate/realize/utils/getRealizeWriteCodeTemplate.js.map +1 -1
- package/lib/orchestrate/realize/utils/getRealizeWriteImportStatements.d.ts +4 -1
- package/lib/orchestrate/realize/utils/getRealizeWriteImportStatements.js +24 -9
- package/lib/orchestrate/realize/utils/getRealizeWriteImportStatements.js.map +1 -1
- package/lib/orchestrate/realize/utils/printErrorHints.d.ts +8 -0
- package/lib/orchestrate/realize/utils/printErrorHints.js +48 -0
- package/lib/orchestrate/realize/utils/printErrorHints.js.map +1 -0
- package/lib/orchestrate/realize/utils/replaceImportStatements.d.ts +1 -0
- package/lib/orchestrate/realize/utils/replaceImportStatements.js +93 -53
- package/lib/orchestrate/realize/utils/replaceImportStatements.js.map +1 -1
- package/lib/orchestrate/test/histories/transformTestCorrectHistories.d.ts +5 -1
- package/lib/orchestrate/test/histories/transformTestCorrectHistories.js +11 -7
- package/lib/orchestrate/test/histories/transformTestCorrectHistories.js.map +1 -1
- package/lib/orchestrate/test/histories/transformTestCorrectInvalidRequestHistories.js +1 -1
- package/lib/orchestrate/test/histories/transformTestCorrectInvalidRequestHistories.js.map +1 -1
- package/lib/orchestrate/test/histories/transformTestScenarioHistories.d.ts +7 -1
- package/lib/orchestrate/test/histories/transformTestScenarioHistories.js +35 -96
- package/lib/orchestrate/test/histories/transformTestScenarioHistories.js.map +1 -1
- package/lib/orchestrate/test/histories/transformTestScenarioReviewHistories.d.ts +6 -3
- package/lib/orchestrate/test/histories/transformTestScenarioReviewHistories.js +33 -77
- package/lib/orchestrate/test/histories/transformTestScenarioReviewHistories.js.map +1 -1
- package/lib/orchestrate/test/histories/transformTestWriteHistories.d.ts +5 -1
- package/lib/orchestrate/test/histories/transformTestWriteHistories.js +111 -94
- package/lib/orchestrate/test/histories/transformTestWriteHistories.js.map +1 -1
- package/lib/orchestrate/test/orchestrateTest.js +20 -14
- package/lib/orchestrate/test/orchestrateTest.js.map +1 -1
- package/lib/orchestrate/test/orchestrateTestCorrect.d.ts +4 -1
- package/lib/orchestrate/test/orchestrateTestCorrect.js +81 -50
- package/lib/orchestrate/test/orchestrateTestCorrect.js.map +1 -1
- package/lib/orchestrate/test/orchestrateTestCorrectInvalidRequest.js +31 -13
- package/lib/orchestrate/test/orchestrateTestCorrectInvalidRequest.js.map +1 -1
- package/lib/orchestrate/test/orchestrateTestScenario.d.ts +1 -1
- package/lib/orchestrate/test/orchestrateTestScenario.js +18 -7
- package/lib/orchestrate/test/orchestrateTestScenario.js.map +1 -1
- package/lib/orchestrate/test/orchestrateTestScenarioReview.d.ts +5 -1
- package/lib/orchestrate/test/orchestrateTestScenarioReview.js +20 -12
- package/lib/orchestrate/test/orchestrateTestScenarioReview.js.map +1 -1
- package/lib/orchestrate/test/orchestrateTestWrite.d.ts +4 -1
- package/lib/orchestrate/test/orchestrateTestWrite.js +46 -25
- package/lib/orchestrate/test/orchestrateTestWrite.js.map +1 -1
- package/lib/orchestrate/test/structures/IAutoBeTestCorrectApplication.d.ts +9 -5
- package/lib/orchestrate/test/structures/IAutoBeTestCorrectInvalidRequestApplication.d.ts +8 -2
- package/lib/orchestrate/test/structures/IAutoBeTestWriteApplication.d.ts +11 -7
- package/lib/orchestrate/test/utils/getPrerequisites.d.ts +5 -0
- package/lib/orchestrate/test/utils/getPrerequisites.js +36 -0
- package/lib/orchestrate/test/utils/getPrerequisites.js.map +1 -0
- package/lib/orchestrate/test/utils/getReferenceIds.js +1 -1
- package/lib/orchestrate/test/utils/getReferenceIds.js.map +1 -1
- package/package.json +5 -5
- package/src/AutoBeAgent.ts +17 -1
- package/src/AutoBeMockAgent.ts +1 -0
- package/src/constants/AutoBeSystemPromptConstant.ts +21 -21
- package/src/context/IAutoBeApplication.ts +101 -6
- package/src/context/IAutoBeApplicationProps.ts +6 -2
- package/src/factory/createAgenticaHistory.ts +11 -5
- package/src/factory/createAutoBeContext.ts +6 -5
- package/src/orchestrate/analyze/histories/transformAnalyzeReviewHistories.ts +5 -1
- package/src/orchestrate/analyze/histories/transformAnalyzeScenarioHistories.ts +16 -0
- package/src/orchestrate/analyze/histories/transformAnalyzeWriteHistories.ts +22 -7
- package/src/orchestrate/analyze/orchestrateAnalyze.ts +3 -2
- package/src/orchestrate/analyze/orchestrateAnalyzeScenario.ts +2 -1
- package/src/orchestrate/analyze/orchestrateAnalyzeWrite.ts +3 -2
- package/src/orchestrate/common/orchestrateCommonCorrectCasting.ts +2 -2
- package/src/orchestrate/common/structures/IAutoBeCommonCorrectCastingApplication.ts +25 -45
- package/src/orchestrate/interface/histories/transformInterfaceAssetHistories.ts +2 -1
- package/src/orchestrate/interface/histories/transformInterfaceAuthorizationsHistories.ts +23 -9
- package/src/orchestrate/interface/histories/{transformInterfacePrerequisiteHistories.ts → transformInterfaceCommonPrerequisiteHistories.ts} +1 -1
- package/src/orchestrate/interface/histories/transformInterfaceComplementHistories.ts +33 -24
- package/src/orchestrate/interface/histories/transformInterfaceEndpointHistories.ts +26 -9
- package/src/orchestrate/interface/histories/transformInterfaceGroupHistories.ts +30 -6
- package/src/orchestrate/interface/histories/transformInterfaceOperationHistories.ts +24 -7
- package/src/orchestrate/interface/histories/transformInterfacePrerequisitesHistories.ts +118 -0
- package/src/orchestrate/interface/histories/transformInterfaceSchemaHistories.ts +23 -6
- package/src/orchestrate/interface/orchestrateInterface.ts +65 -20
- package/src/orchestrate/interface/orchestrateInterfaceAuthorizations.ts +22 -12
- package/src/orchestrate/interface/orchestrateInterfaceComplement.ts +34 -47
- package/src/orchestrate/interface/orchestrateInterfaceEndpoints.ts +40 -28
- package/src/orchestrate/interface/orchestrateInterfaceGroups.ts +9 -3
- package/src/orchestrate/interface/orchestrateInterfaceOperations.ts +51 -35
- package/src/orchestrate/interface/orchestrateInterfacePrerequisites.ts +274 -0
- package/src/orchestrate/interface/orchestrateInterfaceSchemas.ts +52 -33
- package/src/orchestrate/interface/orchestrateInterfaceSchemasReview.ts +1 -1
- package/src/orchestrate/interface/structures/IAutoBeInterfaceComplementApplication.ts +0 -39
- package/src/orchestrate/interface/structures/IAutoBeInterfaceGroupApplication.ts +6 -10
- package/src/orchestrate/interface/structures/IAutoBeInterfacePrerequisitesApplication.ts +58 -0
- package/src/orchestrate/interface/structures/IAutoBeInterfaceSchemaApplication.ts +0 -34
- package/src/orchestrate/interface/utils/JsonSchemaFactory.ts +92 -4
- package/src/orchestrate/interface/utils/JsonSchemaValidator.ts +19 -1
- package/src/orchestrate/interface/utils/OperationValidator.ts +9 -7
- package/src/orchestrate/prisma/histories/transformPrismaComponentsHistories.ts +20 -6
- package/src/orchestrate/prisma/histories/transformPrismaSchemaHistories.ts +24 -9
- package/src/orchestrate/prisma/orchestratePrisma.ts +7 -3
- package/src/orchestrate/prisma/orchestratePrismaComponent.ts +5 -1
- package/src/orchestrate/prisma/orchestratePrismaSchemas.ts +15 -10
- package/src/orchestrate/realize/histories/transformRealizeCorrectCastingHistories.ts +44 -0
- package/src/orchestrate/realize/histories/transformRealizeCorrectHistories.ts +13 -24
- package/src/orchestrate/realize/histories/transformRealizeWriteAuthorizationsHistories.ts +6 -6
- package/src/orchestrate/realize/histories/transformRealizeWriteHistories.ts +6 -4
- package/src/orchestrate/realize/internal/compileRealizeFiles.ts +1 -5
- package/src/orchestrate/realize/orchestRateRealizeCorrectCasting.ts +102 -16
- package/src/orchestrate/realize/orchestrateRealize.ts +121 -81
- package/src/orchestrate/realize/orchestrateRealizeCorrect.ts +50 -7
- package/src/orchestrate/realize/orchestrateRealizeWrite.ts +14 -4
- package/src/orchestrate/realize/structures/IAutoBeRealizeCorrectApplication.ts +54 -29
- package/src/orchestrate/realize/structures/IAutoBeRealizeWriteApplication.ts +46 -35
- package/src/orchestrate/realize/utils/InternalFileSystem.ts +1 -1
- package/src/orchestrate/realize/utils/generateRealizeScenario.ts +1 -5
- package/src/orchestrate/realize/utils/getRealizeWriteCodeTemplate.ts +54 -22
- package/src/orchestrate/realize/utils/getRealizeWriteImportStatements.ts +28 -16
- package/src/orchestrate/realize/utils/printErrorHints.ts +55 -0
- package/src/orchestrate/realize/utils/replaceImportStatements.ts +99 -97
- package/src/orchestrate/test/histories/transformTestCorrectHistories.ts +14 -7
- package/src/orchestrate/test/histories/transformTestScenarioHistories.ts +50 -115
- package/src/orchestrate/test/histories/transformTestScenarioReviewHistories.ts +41 -111
- package/src/orchestrate/test/histories/transformTestWriteHistories.ts +35 -12
- package/src/orchestrate/test/orchestrateTest.ts +19 -13
- package/src/orchestrate/test/orchestrateTestCorrect.ts +71 -51
- package/src/orchestrate/test/orchestrateTestCorrectInvalidRequest.ts +13 -1
- package/src/orchestrate/test/orchestrateTestScenario.ts +27 -17
- package/src/orchestrate/test/orchestrateTestScenarioReview.ts +32 -19
- package/src/orchestrate/test/orchestrateTestWrite.ts +20 -10
- package/src/orchestrate/test/structures/IAutoBeTestCorrectApplication.ts +9 -228
- package/src/orchestrate/test/structures/IAutoBeTestCorrectInvalidRequestApplication.ts +8 -2
- package/src/orchestrate/test/structures/IAutoBeTestWriteApplication.ts +11 -78
- package/src/orchestrate/test/utils/getPrerequisites.ts +51 -0
- package/src/orchestrate/test/utils/getReferenceIds.ts +2 -1
- package/lib/orchestrate/common/histories/transformCommonCorrectDateHistories.js +0 -48
- package/lib/orchestrate/common/histories/transformCommonCorrectDateHistories.js.map +0 -1
- package/lib/orchestrate/common/structures/IAutoBeCommonCorrectDateApplication.d.ts +0 -35
- package/lib/orchestrate/common/structures/IAutoBeCommonCorrectDateApplication.js.map +0 -1
- package/lib/orchestrate/interface/histories/transformInterfacePrerequisiteHistories.d.ts +0 -3
- package/lib/orchestrate/interface/histories/transformInterfacePrerequisiteHistories.js.map +0 -1
- package/lib/orchestrate/interface/utils/OpenApiEndpointComparator.d.ts +0 -6
- package/lib/orchestrate/interface/utils/OpenApiEndpointComparator.js +0 -22
- package/lib/orchestrate/interface/utils/OpenApiEndpointComparator.js.map +0 -1
- package/lib/orchestrate/realize/orchestrateRealizeCorrectDate.d.ts +0 -4
- package/lib/orchestrate/realize/orchestrateRealizeCorrectDate.js +0 -540
- package/lib/orchestrate/realize/orchestrateRealizeCorrectDate.js.map +0 -1
- package/src/orchestrate/common/histories/transformCommonCorrectDateHistories.ts +0 -60
- package/src/orchestrate/common/structures/IAutoBeCommonCorrectDateApplication.ts +0 -40
- package/src/orchestrate/interface/utils/OpenApiEndpointComparator.ts +0 -23
- package/src/orchestrate/realize/orchestrateRealizeCorrectDate.ts +0 -372
|
@@ -157,16 +157,15 @@ const claude = {
|
|
|
157
157
|
{
|
|
158
158
|
name: "analyze",
|
|
159
159
|
parameters: {
|
|
160
|
-
description: "Current Type: {@link IAutoBeApplicationProps}",
|
|
161
160
|
type: "object",
|
|
162
161
|
properties: {
|
|
163
|
-
|
|
164
|
-
description: "
|
|
162
|
+
instruction: {
|
|
163
|
+
description: "Requirements-focused instructions extracted from user utterances.\n\nContains AI-interpreted guidance specifically for the requirements\nanalysis phase. Should focus ONLY on features, business rules, user\nstories, and functional specifications. Must NOT include database design,\nAPI patterns, or implementation details which belong to other phases.\n\n**CRITICAL**: Only include what the user actually said. NEVER fabricate\nor invent requirements the user didn't mention.\n\nExamples:\n\n- \"Focus on inventory management with real-time stock tracking\"\n- \"Prioritize user authentication with role-based permissions\"\n- \"Emphasize order processing workflow with approval stages\"",
|
|
165
164
|
type: "string"
|
|
166
165
|
}
|
|
167
166
|
},
|
|
168
167
|
required: [
|
|
169
|
-
"
|
|
168
|
+
"instruction"
|
|
170
169
|
],
|
|
171
170
|
additionalProperties: false,
|
|
172
171
|
$defs: {
|
|
@@ -207,21 +206,21 @@ const claude = {
|
|
|
207
206
|
$ref: "#/$defs/IAutoBeApplicationResult"
|
|
208
207
|
},
|
|
209
208
|
description: "Run Analyze Agent.\n\nExecutes the Analyze agent to process user requirements and generate a\nstructured specification document. This agent analyzes all conversation\nhistory between users and AI, separates business logic from technical\nrequirements, and establishes development priorities and scope.\n\n**IMPORTANT**: Only call this function when sufficient requirements have\nbeen discussed to generate a comprehensive specification. The context must\ncontain enough detail about the system's purpose, core features, data\nmodels, and business rules. If requirements are unclear or incomplete,\ncontinue gathering information through conversation instead.\n\nThe agent will automatically generate follow-up questions for any ambiguous\nrequirements and continuously refine its understanding through iterative\nconversation. When executed after other agents have generated code, it can\nalso interpret change requests in the context of existing implementations.",
|
|
210
|
-
validate: (() => { const _io0 = input => "string" === typeof input.
|
|
211
|
-
path: _path + ".
|
|
209
|
+
validate: (() => { const _io0 = input => "string" === typeof input.instruction; const _vo0 = (input, _path, _exceptionable = true) => ["string" === typeof input.instruction || _report(_exceptionable, {
|
|
210
|
+
path: _path + ".instruction",
|
|
212
211
|
expected: "string",
|
|
213
|
-
value: input.
|
|
212
|
+
value: input.instruction
|
|
214
213
|
})].every(flag => flag); const __is = input => "object" === typeof input && null !== input && _io0(input); let errors; let _report; return input => {
|
|
215
214
|
if (false === __is(input)) {
|
|
216
215
|
errors = [];
|
|
217
216
|
_report = __typia_transform__validateReport._validateReport(errors);
|
|
218
217
|
((input, _path, _exceptionable = true) => ("object" === typeof input && null !== input || _report(true, {
|
|
219
218
|
path: _path + "",
|
|
220
|
-
expected: "
|
|
219
|
+
expected: "__type",
|
|
221
220
|
value: input
|
|
222
221
|
})) && _vo0(input, _path + "", true) || _report(true, {
|
|
223
222
|
path: _path + "",
|
|
224
|
-
expected: "
|
|
223
|
+
expected: "__type",
|
|
225
224
|
value: input
|
|
226
225
|
}))(input, "$input", true);
|
|
227
226
|
const success = 0 === errors.length;
|
|
@@ -243,16 +242,15 @@ const claude = {
|
|
|
243
242
|
{
|
|
244
243
|
name: "prisma",
|
|
245
244
|
parameters: {
|
|
246
|
-
description: "Current Type: {@link IAutoBeApplicationProps}",
|
|
247
245
|
type: "object",
|
|
248
246
|
properties: {
|
|
249
|
-
|
|
250
|
-
description: "
|
|
247
|
+
instruction: {
|
|
248
|
+
description: "Database design instructions extracted from user utterances.\n\nContains AI-interpreted guidance specifically for the database schema\ndesign phase. Should focus ONLY on schema structure, relationships,\nconstraints, and indexing strategies. Must NOT include API design or\nbusiness logic implementation details.\n\n**CRITICAL**: Only include what the user actually said. NEVER fabricate\nor invent requirements the user didn't mention.\n\nExamples:\n\n- \"Design flexible product catalog with variant support\"\n- \"Optimize for high-volume transaction queries\"\n- \"Implement strict referential integrity for financial data\"",
|
|
251
249
|
type: "string"
|
|
252
250
|
}
|
|
253
251
|
},
|
|
254
252
|
required: [
|
|
255
|
-
"
|
|
253
|
+
"instruction"
|
|
256
254
|
],
|
|
257
255
|
additionalProperties: false,
|
|
258
256
|
$defs: {
|
|
@@ -293,21 +291,21 @@ const claude = {
|
|
|
293
291
|
$ref: "#/$defs/IAutoBeApplicationResult"
|
|
294
292
|
},
|
|
295
293
|
description: "Run prisma agent.\n\nExecutes the Prisma agent to generate database schema files and ERD\ndocumentation. This agent reads the requirements specification created by\nthe {@link analyze Analyze agent} and produces a complete Prisma schema with\ncomprehensive documentation for each entity and attribute.\n\n**PREREQUISITE**: Only call this function after the {@link analyze} function\nhas been successfully executed and a requirements specification document\nhas been generated. The Prisma agent depends on the structured requirements\nanalysis to design the database schema properly. Without a completed\nrequirements specification, this function should NOT be called.\n\nThe agent will automatically validate the generated schema using the Prisma\ncompiler, self-correct any compilation errors through feedback loops, and\ngenerate ERD documentation using prisma-markdown. An internal review\nprocess ensures schema quality and optimization.",
|
|
296
|
-
validate: (() => { const _io0 = input => "string" === typeof input.
|
|
297
|
-
path: _path + ".
|
|
294
|
+
validate: (() => { const _io0 = input => "string" === typeof input.instruction; const _vo0 = (input, _path, _exceptionable = true) => ["string" === typeof input.instruction || _report(_exceptionable, {
|
|
295
|
+
path: _path + ".instruction",
|
|
298
296
|
expected: "string",
|
|
299
|
-
value: input.
|
|
297
|
+
value: input.instruction
|
|
300
298
|
})].every(flag => flag); const __is = input => "object" === typeof input && null !== input && _io0(input); let errors; let _report; return input => {
|
|
301
299
|
if (false === __is(input)) {
|
|
302
300
|
errors = [];
|
|
303
301
|
_report = __typia_transform__validateReport._validateReport(errors);
|
|
304
302
|
((input, _path, _exceptionable = true) => ("object" === typeof input && null !== input || _report(true, {
|
|
305
303
|
path: _path + "",
|
|
306
|
-
expected: "
|
|
304
|
+
expected: "__type",
|
|
307
305
|
value: input
|
|
308
306
|
})) && _vo0(input, _path + "", true) || _report(true, {
|
|
309
307
|
path: _path + "",
|
|
310
|
-
expected: "
|
|
308
|
+
expected: "__type",
|
|
311
309
|
value: input
|
|
312
310
|
}))(input, "$input", true);
|
|
313
311
|
const success = 0 === errors.length;
|
|
@@ -329,16 +327,15 @@ const claude = {
|
|
|
329
327
|
{
|
|
330
328
|
name: "interface",
|
|
331
329
|
parameters: {
|
|
332
|
-
description: "Current Type: {@link IAutoBeApplicationProps}",
|
|
333
330
|
type: "object",
|
|
334
331
|
properties: {
|
|
335
|
-
|
|
336
|
-
description: "
|
|
332
|
+
instruction: {
|
|
333
|
+
description: "API design instructions extracted from user utterances.\n\nContains AI-interpreted guidance specifically for the API interface\ndesign phase. Should focus ONLY on endpoint patterns, request/response\nformats, DTO schemas, and operation specifications. Must NOT include\ndatabase details or implementation logic.\n\n**CRITICAL**: Only include what the user actually said. NEVER fabricate\nor invent requirements the user didn't mention.\n\nExamples:\n\n- \"Create RESTful endpoints with pagination for all list operations\"\n- \"Design mobile-friendly APIs with minimal response payloads\"\n- \"Follow OpenAPI 3.0 patterns with comprehensive error responses\"",
|
|
337
334
|
type: "string"
|
|
338
335
|
}
|
|
339
336
|
},
|
|
340
337
|
required: [
|
|
341
|
-
"
|
|
338
|
+
"instruction"
|
|
342
339
|
],
|
|
343
340
|
additionalProperties: false,
|
|
344
341
|
$defs: {
|
|
@@ -379,21 +376,21 @@ const claude = {
|
|
|
379
376
|
$ref: "#/$defs/IAutoBeApplicationResult"
|
|
380
377
|
},
|
|
381
378
|
description: "Run interface agent.\n\nExecutes the Interface agent to design and generate API interfaces. This\nagent creates OpenAPI schemas and TypeScript/NestJS code based on the\nrequirements specification and ERD documentation from previous agents.\n\nThe agent follows a sophisticated pipeline: first constructing formal\nOpenAPI Operation Schemas and JSON Schemas, then validating these schemas,\nand finally transforming them into NestJS controllers and DTOs. Each\ngenerated interface includes comprehensive JSDoc comments and undergoes\ninternal review for consistency.",
|
|
382
|
-
validate: (() => { const _io0 = input => "string" === typeof input.
|
|
383
|
-
path: _path + ".
|
|
379
|
+
validate: (() => { const _io0 = input => "string" === typeof input.instruction; const _vo0 = (input, _path, _exceptionable = true) => ["string" === typeof input.instruction || _report(_exceptionable, {
|
|
380
|
+
path: _path + ".instruction",
|
|
384
381
|
expected: "string",
|
|
385
|
-
value: input.
|
|
382
|
+
value: input.instruction
|
|
386
383
|
})].every(flag => flag); const __is = input => "object" === typeof input && null !== input && _io0(input); let errors; let _report; return input => {
|
|
387
384
|
if (false === __is(input)) {
|
|
388
385
|
errors = [];
|
|
389
386
|
_report = __typia_transform__validateReport._validateReport(errors);
|
|
390
387
|
((input, _path, _exceptionable = true) => ("object" === typeof input && null !== input || _report(true, {
|
|
391
388
|
path: _path + "",
|
|
392
|
-
expected: "
|
|
389
|
+
expected: "__type",
|
|
393
390
|
value: input
|
|
394
391
|
})) && _vo0(input, _path + "", true) || _report(true, {
|
|
395
392
|
path: _path + "",
|
|
396
|
-
expected: "
|
|
393
|
+
expected: "__type",
|
|
397
394
|
value: input
|
|
398
395
|
}))(input, "$input", true);
|
|
399
396
|
const success = 0 === errors.length;
|
|
@@ -415,16 +412,15 @@ const claude = {
|
|
|
415
412
|
{
|
|
416
413
|
name: "test",
|
|
417
414
|
parameters: {
|
|
418
|
-
description: "Current Type: {@link IAutoBeApplicationProps}",
|
|
419
415
|
type: "object",
|
|
420
416
|
properties: {
|
|
421
|
-
|
|
422
|
-
description: "
|
|
417
|
+
instruction: {
|
|
418
|
+
description: "Testing strategy instructions extracted from user utterances.\n\nContains AI-interpreted guidance specifically for the test code\ngeneration phase. Should focus ONLY on test scenarios, coverage\npriorities, edge cases, and validation strategies. Must NOT include\nimplementation or API design details.\n\n**CRITICAL**: Only include what the user actually said. NEVER fabricate\nor invent requirements the user didn't mention.\n\nExamples:\n\n- \"Prioritize payment flow testing with failure scenarios\"\n- \"Generate comprehensive tests for concurrent user operations\"\n- \"Focus on data integrity validation across all endpoints\"",
|
|
423
419
|
type: "string"
|
|
424
420
|
}
|
|
425
421
|
},
|
|
426
422
|
required: [
|
|
427
|
-
"
|
|
423
|
+
"instruction"
|
|
428
424
|
],
|
|
429
425
|
additionalProperties: false,
|
|
430
426
|
$defs: {
|
|
@@ -465,21 +461,21 @@ const claude = {
|
|
|
465
461
|
$ref: "#/$defs/IAutoBeApplicationResult"
|
|
466
462
|
},
|
|
467
463
|
description: "Run test program agent.\n\nExecutes the Test agent to generate comprehensive E2E test suites for all\n{@link interface API interfaces}. This agent synthesizes outputs from\nprevious agents to create tests that validate both individual endpoints and\ntheir interactions.\n\n**PREREQUISITE**: Only call this function after the {@link interface}\nfunction has been successfully executed and API interfaces have been\ngenerated. The Test agent requires the completed API interface definitions,\nOpenAPI schemas, and TypeScript code to generate appropriate test\nscenarios. Without completed interface design, this function should NOT be\ncalled.\n\nThe agent will analyze dependency relationships between API functions,\nstructure integrated test scenarios with correct execution sequences, and\nenhance pre-generated test scaffolds with business logic validation.\nTypeScript compiler validation and internal review ensure test quality and\noptimal coverage.",
|
|
468
|
-
validate: (() => { const _io0 = input => "string" === typeof input.
|
|
469
|
-
path: _path + ".
|
|
464
|
+
validate: (() => { const _io0 = input => "string" === typeof input.instruction; const _vo0 = (input, _path, _exceptionable = true) => ["string" === typeof input.instruction || _report(_exceptionable, {
|
|
465
|
+
path: _path + ".instruction",
|
|
470
466
|
expected: "string",
|
|
471
|
-
value: input.
|
|
467
|
+
value: input.instruction
|
|
472
468
|
})].every(flag => flag); const __is = input => "object" === typeof input && null !== input && _io0(input); let errors; let _report; return input => {
|
|
473
469
|
if (false === __is(input)) {
|
|
474
470
|
errors = [];
|
|
475
471
|
_report = __typia_transform__validateReport._validateReport(errors);
|
|
476
472
|
((input, _path, _exceptionable = true) => ("object" === typeof input && null !== input || _report(true, {
|
|
477
473
|
path: _path + "",
|
|
478
|
-
expected: "
|
|
474
|
+
expected: "__type",
|
|
479
475
|
value: input
|
|
480
476
|
})) && _vo0(input, _path + "", true) || _report(true, {
|
|
481
477
|
path: _path + "",
|
|
482
|
-
expected: "
|
|
478
|
+
expected: "__type",
|
|
483
479
|
value: input
|
|
484
480
|
}))(input, "$input", true);
|
|
485
481
|
const success = 0 === errors.length;
|
|
@@ -501,16 +497,15 @@ const claude = {
|
|
|
501
497
|
{
|
|
502
498
|
name: "realize",
|
|
503
499
|
parameters: {
|
|
504
|
-
description: "Current Type: {@link IAutoBeApplicationProps}",
|
|
505
500
|
type: "object",
|
|
506
501
|
properties: {
|
|
507
|
-
|
|
508
|
-
description: "
|
|
502
|
+
instruction: {
|
|
503
|
+
description: "Implementation instructions extracted from user utterances.\n\nContains AI-interpreted guidance specifically for the business logic\nimplementation phase. Should focus ONLY on architectural patterns,\nperformance requirements, business logic details, and service layer\ndecisions. Must NOT include database schema or API interface\nspecifications.\n\n**CRITICAL**: Only include what the user actually said. NEVER fabricate\nor invent requirements the user didn't mention.\n\nExamples:\n\n- \"Implement with caching for frequently accessed data\"\n- \"Use transaction patterns for financial operations\"\n- \"Optimize for 10K concurrent users with rate limiting\"",
|
|
509
504
|
type: "string"
|
|
510
505
|
}
|
|
511
506
|
},
|
|
512
507
|
required: [
|
|
513
|
-
"
|
|
508
|
+
"instruction"
|
|
514
509
|
],
|
|
515
510
|
additionalProperties: false,
|
|
516
511
|
$defs: {
|
|
@@ -551,21 +546,21 @@ const claude = {
|
|
|
551
546
|
$ref: "#/$defs/IAutoBeApplicationResult"
|
|
552
547
|
},
|
|
553
548
|
description: "Run realize agent.\n\nExecutes the Realize agent to implement the actual business logic for each\nAPI endpoint. This agent synthesizes all outputs from previous agents to\ngenerate fully functional service provider code.\n\n**PREREQUISITE**: Only call this function after the {@link interface}\nfunction has been successfully executed and API interfaces have been\ngenerated. The Realize agent requires the completed API interface\ndefinitions to implement the corresponding service logic. It also benefits\nfrom having test code available for validation. Without completed interface\ndesign, this function should NOT be called.\n\nThe agent will create service implementations with multiple validation\nlayers: TypeScript compiler feedback, runtime validation through test\nexecution, and quality optimization through internal review. The generated\ncode handles database interactions through Prisma, implements security and\nvalidation checks, and processes business rules according to\nspecifications.",
|
|
554
|
-
validate: (() => { const _io0 = input => "string" === typeof input.
|
|
555
|
-
path: _path + ".
|
|
549
|
+
validate: (() => { const _io0 = input => "string" === typeof input.instruction; const _vo0 = (input, _path, _exceptionable = true) => ["string" === typeof input.instruction || _report(_exceptionable, {
|
|
550
|
+
path: _path + ".instruction",
|
|
556
551
|
expected: "string",
|
|
557
|
-
value: input.
|
|
552
|
+
value: input.instruction
|
|
558
553
|
})].every(flag => flag); const __is = input => "object" === typeof input && null !== input && _io0(input); let errors; let _report; return input => {
|
|
559
554
|
if (false === __is(input)) {
|
|
560
555
|
errors = [];
|
|
561
556
|
_report = __typia_transform__validateReport._validateReport(errors);
|
|
562
557
|
((input, _path, _exceptionable = true) => ("object" === typeof input && null !== input || _report(true, {
|
|
563
558
|
path: _path + "",
|
|
564
|
-
expected: "
|
|
559
|
+
expected: "__type",
|
|
565
560
|
value: input
|
|
566
561
|
})) && _vo0(input, _path + "", true) || _report(true, {
|
|
567
562
|
path: _path + "",
|
|
568
|
-
expected: "
|
|
563
|
+
expected: "__type",
|
|
569
564
|
value: input
|
|
570
565
|
}))(input, "$input", true);
|
|
571
566
|
const success = 0 === errors.length;
|
|
@@ -598,16 +593,15 @@ const collection = {
|
|
|
598
593
|
{
|
|
599
594
|
name: "analyze",
|
|
600
595
|
parameters: {
|
|
601
|
-
description: "Current Type: {@link IAutoBeApplicationProps}",
|
|
602
596
|
type: "object",
|
|
603
597
|
properties: {
|
|
604
|
-
|
|
605
|
-
description: "
|
|
598
|
+
instruction: {
|
|
599
|
+
description: "Requirements-focused instructions extracted from user utterances.\n\nContains AI-interpreted guidance specifically for the requirements\nanalysis phase. Should focus ONLY on features, business rules, user\nstories, and functional specifications. Must NOT include database design,\nAPI patterns, or implementation details which belong to other phases.\n\n**CRITICAL**: Only include what the user actually said. NEVER fabricate\nor invent requirements the user didn't mention.\n\nExamples:\n\n- \"Focus on inventory management with real-time stock tracking\"\n- \"Prioritize user authentication with role-based permissions\"\n- \"Emphasize order processing workflow with approval stages\"",
|
|
606
600
|
type: "string"
|
|
607
601
|
}
|
|
608
602
|
},
|
|
609
603
|
required: [
|
|
610
|
-
"
|
|
604
|
+
"instruction"
|
|
611
605
|
],
|
|
612
606
|
additionalProperties: false,
|
|
613
607
|
$defs: {
|
|
@@ -639,21 +633,21 @@ const collection = {
|
|
|
639
633
|
$ref: "#/$defs/IAutoBeApplicationResult"
|
|
640
634
|
},
|
|
641
635
|
description: "Run Analyze Agent.\n\nExecutes the Analyze agent to process user requirements and generate a\nstructured specification document. This agent analyzes all conversation\nhistory between users and AI, separates business logic from technical\nrequirements, and establishes development priorities and scope.\n\n**IMPORTANT**: Only call this function when sufficient requirements have\nbeen discussed to generate a comprehensive specification. The context must\ncontain enough detail about the system's purpose, core features, data\nmodels, and business rules. If requirements are unclear or incomplete,\ncontinue gathering information through conversation instead.\n\nThe agent will automatically generate follow-up questions for any ambiguous\nrequirements and continuously refine its understanding through iterative\nconversation. When executed after other agents have generated code, it can\nalso interpret change requests in the context of existing implementations.",
|
|
642
|
-
validate: (() => { const _io0 = input => "string" === typeof input.
|
|
643
|
-
path: _path + ".
|
|
636
|
+
validate: (() => { const _io0 = input => "string" === typeof input.instruction; const _vo0 = (input, _path, _exceptionable = true) => ["string" === typeof input.instruction || _report(_exceptionable, {
|
|
637
|
+
path: _path + ".instruction",
|
|
644
638
|
expected: "string",
|
|
645
|
-
value: input.
|
|
639
|
+
value: input.instruction
|
|
646
640
|
})].every(flag => flag); const __is = input => "object" === typeof input && null !== input && _io0(input); let errors; let _report; return input => {
|
|
647
641
|
if (false === __is(input)) {
|
|
648
642
|
errors = [];
|
|
649
643
|
_report = __typia_transform__validateReport._validateReport(errors);
|
|
650
644
|
((input, _path, _exceptionable = true) => ("object" === typeof input && null !== input || _report(true, {
|
|
651
645
|
path: _path + "",
|
|
652
|
-
expected: "
|
|
646
|
+
expected: "__type",
|
|
653
647
|
value: input
|
|
654
648
|
})) && _vo0(input, _path + "", true) || _report(true, {
|
|
655
649
|
path: _path + "",
|
|
656
|
-
expected: "
|
|
650
|
+
expected: "__type",
|
|
657
651
|
value: input
|
|
658
652
|
}))(input, "$input", true);
|
|
659
653
|
const success = 0 === errors.length;
|
|
@@ -675,16 +669,15 @@ const collection = {
|
|
|
675
669
|
{
|
|
676
670
|
name: "prisma",
|
|
677
671
|
parameters: {
|
|
678
|
-
description: "Current Type: {@link IAutoBeApplicationProps}",
|
|
679
672
|
type: "object",
|
|
680
673
|
properties: {
|
|
681
|
-
|
|
682
|
-
description: "
|
|
674
|
+
instruction: {
|
|
675
|
+
description: "Database design instructions extracted from user utterances.\n\nContains AI-interpreted guidance specifically for the database schema\ndesign phase. Should focus ONLY on schema structure, relationships,\nconstraints, and indexing strategies. Must NOT include API design or\nbusiness logic implementation details.\n\n**CRITICAL**: Only include what the user actually said. NEVER fabricate\nor invent requirements the user didn't mention.\n\nExamples:\n\n- \"Design flexible product catalog with variant support\"\n- \"Optimize for high-volume transaction queries\"\n- \"Implement strict referential integrity for financial data\"",
|
|
683
676
|
type: "string"
|
|
684
677
|
}
|
|
685
678
|
},
|
|
686
679
|
required: [
|
|
687
|
-
"
|
|
680
|
+
"instruction"
|
|
688
681
|
],
|
|
689
682
|
additionalProperties: false,
|
|
690
683
|
$defs: {
|
|
@@ -716,21 +709,21 @@ const collection = {
|
|
|
716
709
|
$ref: "#/$defs/IAutoBeApplicationResult"
|
|
717
710
|
},
|
|
718
711
|
description: "Run prisma agent.\n\nExecutes the Prisma agent to generate database schema files and ERD\ndocumentation. This agent reads the requirements specification created by\nthe {@link analyze Analyze agent} and produces a complete Prisma schema with\ncomprehensive documentation for each entity and attribute.\n\n**PREREQUISITE**: Only call this function after the {@link analyze} function\nhas been successfully executed and a requirements specification document\nhas been generated. The Prisma agent depends on the structured requirements\nanalysis to design the database schema properly. Without a completed\nrequirements specification, this function should NOT be called.\n\nThe agent will automatically validate the generated schema using the Prisma\ncompiler, self-correct any compilation errors through feedback loops, and\ngenerate ERD documentation using prisma-markdown. An internal review\nprocess ensures schema quality and optimization.",
|
|
719
|
-
validate: (() => { const _io0 = input => "string" === typeof input.
|
|
720
|
-
path: _path + ".
|
|
712
|
+
validate: (() => { const _io0 = input => "string" === typeof input.instruction; const _vo0 = (input, _path, _exceptionable = true) => ["string" === typeof input.instruction || _report(_exceptionable, {
|
|
713
|
+
path: _path + ".instruction",
|
|
721
714
|
expected: "string",
|
|
722
|
-
value: input.
|
|
715
|
+
value: input.instruction
|
|
723
716
|
})].every(flag => flag); const __is = input => "object" === typeof input && null !== input && _io0(input); let errors; let _report; return input => {
|
|
724
717
|
if (false === __is(input)) {
|
|
725
718
|
errors = [];
|
|
726
719
|
_report = __typia_transform__validateReport._validateReport(errors);
|
|
727
720
|
((input, _path, _exceptionable = true) => ("object" === typeof input && null !== input || _report(true, {
|
|
728
721
|
path: _path + "",
|
|
729
|
-
expected: "
|
|
722
|
+
expected: "__type",
|
|
730
723
|
value: input
|
|
731
724
|
})) && _vo0(input, _path + "", true) || _report(true, {
|
|
732
725
|
path: _path + "",
|
|
733
|
-
expected: "
|
|
726
|
+
expected: "__type",
|
|
734
727
|
value: input
|
|
735
728
|
}))(input, "$input", true);
|
|
736
729
|
const success = 0 === errors.length;
|
|
@@ -752,16 +745,15 @@ const collection = {
|
|
|
752
745
|
{
|
|
753
746
|
name: "interface",
|
|
754
747
|
parameters: {
|
|
755
|
-
description: "Current Type: {@link IAutoBeApplicationProps}",
|
|
756
748
|
type: "object",
|
|
757
749
|
properties: {
|
|
758
|
-
|
|
759
|
-
description: "
|
|
750
|
+
instruction: {
|
|
751
|
+
description: "API design instructions extracted from user utterances.\n\nContains AI-interpreted guidance specifically for the API interface\ndesign phase. Should focus ONLY on endpoint patterns, request/response\nformats, DTO schemas, and operation specifications. Must NOT include\ndatabase details or implementation logic.\n\n**CRITICAL**: Only include what the user actually said. NEVER fabricate\nor invent requirements the user didn't mention.\n\nExamples:\n\n- \"Create RESTful endpoints with pagination for all list operations\"\n- \"Design mobile-friendly APIs with minimal response payloads\"\n- \"Follow OpenAPI 3.0 patterns with comprehensive error responses\"",
|
|
760
752
|
type: "string"
|
|
761
753
|
}
|
|
762
754
|
},
|
|
763
755
|
required: [
|
|
764
|
-
"
|
|
756
|
+
"instruction"
|
|
765
757
|
],
|
|
766
758
|
additionalProperties: false,
|
|
767
759
|
$defs: {
|
|
@@ -793,21 +785,21 @@ const collection = {
|
|
|
793
785
|
$ref: "#/$defs/IAutoBeApplicationResult"
|
|
794
786
|
},
|
|
795
787
|
description: "Run interface agent.\n\nExecutes the Interface agent to design and generate API interfaces. This\nagent creates OpenAPI schemas and TypeScript/NestJS code based on the\nrequirements specification and ERD documentation from previous agents.\n\nThe agent follows a sophisticated pipeline: first constructing formal\nOpenAPI Operation Schemas and JSON Schemas, then validating these schemas,\nand finally transforming them into NestJS controllers and DTOs. Each\ngenerated interface includes comprehensive JSDoc comments and undergoes\ninternal review for consistency.",
|
|
796
|
-
validate: (() => { const _io0 = input => "string" === typeof input.
|
|
797
|
-
path: _path + ".
|
|
788
|
+
validate: (() => { const _io0 = input => "string" === typeof input.instruction; const _vo0 = (input, _path, _exceptionable = true) => ["string" === typeof input.instruction || _report(_exceptionable, {
|
|
789
|
+
path: _path + ".instruction",
|
|
798
790
|
expected: "string",
|
|
799
|
-
value: input.
|
|
791
|
+
value: input.instruction
|
|
800
792
|
})].every(flag => flag); const __is = input => "object" === typeof input && null !== input && _io0(input); let errors; let _report; return input => {
|
|
801
793
|
if (false === __is(input)) {
|
|
802
794
|
errors = [];
|
|
803
795
|
_report = __typia_transform__validateReport._validateReport(errors);
|
|
804
796
|
((input, _path, _exceptionable = true) => ("object" === typeof input && null !== input || _report(true, {
|
|
805
797
|
path: _path + "",
|
|
806
|
-
expected: "
|
|
798
|
+
expected: "__type",
|
|
807
799
|
value: input
|
|
808
800
|
})) && _vo0(input, _path + "", true) || _report(true, {
|
|
809
801
|
path: _path + "",
|
|
810
|
-
expected: "
|
|
802
|
+
expected: "__type",
|
|
811
803
|
value: input
|
|
812
804
|
}))(input, "$input", true);
|
|
813
805
|
const success = 0 === errors.length;
|
|
@@ -829,16 +821,15 @@ const collection = {
|
|
|
829
821
|
{
|
|
830
822
|
name: "test",
|
|
831
823
|
parameters: {
|
|
832
|
-
description: "Current Type: {@link IAutoBeApplicationProps}",
|
|
833
824
|
type: "object",
|
|
834
825
|
properties: {
|
|
835
|
-
|
|
836
|
-
description: "
|
|
826
|
+
instruction: {
|
|
827
|
+
description: "Testing strategy instructions extracted from user utterances.\n\nContains AI-interpreted guidance specifically for the test code\ngeneration phase. Should focus ONLY on test scenarios, coverage\npriorities, edge cases, and validation strategies. Must NOT include\nimplementation or API design details.\n\n**CRITICAL**: Only include what the user actually said. NEVER fabricate\nor invent requirements the user didn't mention.\n\nExamples:\n\n- \"Prioritize payment flow testing with failure scenarios\"\n- \"Generate comprehensive tests for concurrent user operations\"\n- \"Focus on data integrity validation across all endpoints\"",
|
|
837
828
|
type: "string"
|
|
838
829
|
}
|
|
839
830
|
},
|
|
840
831
|
required: [
|
|
841
|
-
"
|
|
832
|
+
"instruction"
|
|
842
833
|
],
|
|
843
834
|
additionalProperties: false,
|
|
844
835
|
$defs: {
|
|
@@ -870,21 +861,21 @@ const collection = {
|
|
|
870
861
|
$ref: "#/$defs/IAutoBeApplicationResult"
|
|
871
862
|
},
|
|
872
863
|
description: "Run test program agent.\n\nExecutes the Test agent to generate comprehensive E2E test suites for all\n{@link interface API interfaces}. This agent synthesizes outputs from\nprevious agents to create tests that validate both individual endpoints and\ntheir interactions.\n\n**PREREQUISITE**: Only call this function after the {@link interface}\nfunction has been successfully executed and API interfaces have been\ngenerated. The Test agent requires the completed API interface definitions,\nOpenAPI schemas, and TypeScript code to generate appropriate test\nscenarios. Without completed interface design, this function should NOT be\ncalled.\n\nThe agent will analyze dependency relationships between API functions,\nstructure integrated test scenarios with correct execution sequences, and\nenhance pre-generated test scaffolds with business logic validation.\nTypeScript compiler validation and internal review ensure test quality and\noptimal coverage.",
|
|
873
|
-
validate: (() => { const _io0 = input => "string" === typeof input.
|
|
874
|
-
path: _path + ".
|
|
864
|
+
validate: (() => { const _io0 = input => "string" === typeof input.instruction; const _vo0 = (input, _path, _exceptionable = true) => ["string" === typeof input.instruction || _report(_exceptionable, {
|
|
865
|
+
path: _path + ".instruction",
|
|
875
866
|
expected: "string",
|
|
876
|
-
value: input.
|
|
867
|
+
value: input.instruction
|
|
877
868
|
})].every(flag => flag); const __is = input => "object" === typeof input && null !== input && _io0(input); let errors; let _report; return input => {
|
|
878
869
|
if (false === __is(input)) {
|
|
879
870
|
errors = [];
|
|
880
871
|
_report = __typia_transform__validateReport._validateReport(errors);
|
|
881
872
|
((input, _path, _exceptionable = true) => ("object" === typeof input && null !== input || _report(true, {
|
|
882
873
|
path: _path + "",
|
|
883
|
-
expected: "
|
|
874
|
+
expected: "__type",
|
|
884
875
|
value: input
|
|
885
876
|
})) && _vo0(input, _path + "", true) || _report(true, {
|
|
886
877
|
path: _path + "",
|
|
887
|
-
expected: "
|
|
878
|
+
expected: "__type",
|
|
888
879
|
value: input
|
|
889
880
|
}))(input, "$input", true);
|
|
890
881
|
const success = 0 === errors.length;
|
|
@@ -906,16 +897,15 @@ const collection = {
|
|
|
906
897
|
{
|
|
907
898
|
name: "realize",
|
|
908
899
|
parameters: {
|
|
909
|
-
description: "Current Type: {@link IAutoBeApplicationProps}",
|
|
910
900
|
type: "object",
|
|
911
901
|
properties: {
|
|
912
|
-
|
|
913
|
-
description: "
|
|
902
|
+
instruction: {
|
|
903
|
+
description: "Implementation instructions extracted from user utterances.\n\nContains AI-interpreted guidance specifically for the business logic\nimplementation phase. Should focus ONLY on architectural patterns,\nperformance requirements, business logic details, and service layer\ndecisions. Must NOT include database schema or API interface\nspecifications.\n\n**CRITICAL**: Only include what the user actually said. NEVER fabricate\nor invent requirements the user didn't mention.\n\nExamples:\n\n- \"Implement with caching for frequently accessed data\"\n- \"Use transaction patterns for financial operations\"\n- \"Optimize for 10K concurrent users with rate limiting\"",
|
|
914
904
|
type: "string"
|
|
915
905
|
}
|
|
916
906
|
},
|
|
917
907
|
required: [
|
|
918
|
-
"
|
|
908
|
+
"instruction"
|
|
919
909
|
],
|
|
920
910
|
additionalProperties: false,
|
|
921
911
|
$defs: {
|
|
@@ -947,21 +937,21 @@ const collection = {
|
|
|
947
937
|
$ref: "#/$defs/IAutoBeApplicationResult"
|
|
948
938
|
},
|
|
949
939
|
description: "Run realize agent.\n\nExecutes the Realize agent to implement the actual business logic for each\nAPI endpoint. This agent synthesizes all outputs from previous agents to\ngenerate fully functional service provider code.\n\n**PREREQUISITE**: Only call this function after the {@link interface}\nfunction has been successfully executed and API interfaces have been\ngenerated. The Realize agent requires the completed API interface\ndefinitions to implement the corresponding service logic. It also benefits\nfrom having test code available for validation. Without completed interface\ndesign, this function should NOT be called.\n\nThe agent will create service implementations with multiple validation\nlayers: TypeScript compiler feedback, runtime validation through test\nexecution, and quality optimization through internal review. The generated\ncode handles database interactions through Prisma, implements security and\nvalidation checks, and processes business rules according to\nspecifications.",
|
|
950
|
-
validate: (() => { const _io0 = input => "string" === typeof input.
|
|
951
|
-
path: _path + ".
|
|
940
|
+
validate: (() => { const _io0 = input => "string" === typeof input.instruction; const _vo0 = (input, _path, _exceptionable = true) => ["string" === typeof input.instruction || _report(_exceptionable, {
|
|
941
|
+
path: _path + ".instruction",
|
|
952
942
|
expected: "string",
|
|
953
|
-
value: input.
|
|
943
|
+
value: input.instruction
|
|
954
944
|
})].every(flag => flag); const __is = input => "object" === typeof input && null !== input && _io0(input); let errors; let _report; return input => {
|
|
955
945
|
if (false === __is(input)) {
|
|
956
946
|
errors = [];
|
|
957
947
|
_report = __typia_transform__validateReport._validateReport(errors);
|
|
958
948
|
((input, _path, _exceptionable = true) => ("object" === typeof input && null !== input || _report(true, {
|
|
959
949
|
path: _path + "",
|
|
960
|
-
expected: "
|
|
950
|
+
expected: "__type",
|
|
961
951
|
value: input
|
|
962
952
|
})) && _vo0(input, _path + "", true) || _report(true, {
|
|
963
953
|
path: _path + "",
|
|
964
|
-
expected: "
|
|
954
|
+
expected: "__type",
|
|
965
955
|
value: input
|
|
966
956
|
}))(input, "$input", true);
|
|
967
957
|
const success = 0 === errors.length;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"createAutoBeApplication.js","sourceRoot":"","sources":["../../src/factory/createAutoBeApplication.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"createAutoBeApplication.js","sourceRoot":"","sources":["../../src/factory/createAutoBeApplication.ts"],"names":[],"mappings":"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"}
|
|
@@ -212,7 +212,7 @@ const createDispatch = (props) => {
|
|
|
212
212
|
history: {
|
|
213
213
|
type: "analyze",
|
|
214
214
|
id: (0, uuid_1.v7)(),
|
|
215
|
-
|
|
215
|
+
instruction: (_a = analyzeStart === null || analyzeStart === void 0 ? void 0 : analyzeStart.reason) !== null && _a !== void 0 ? _a : "",
|
|
216
216
|
prefix: event.prefix,
|
|
217
217
|
roles: event.roles,
|
|
218
218
|
files: event.files,
|
|
@@ -230,7 +230,7 @@ const createDispatch = (props) => {
|
|
|
230
230
|
history: {
|
|
231
231
|
type: "prisma",
|
|
232
232
|
id: (0, uuid_1.v7)(),
|
|
233
|
-
|
|
233
|
+
instruction: (_c = prismaStart === null || prismaStart === void 0 ? void 0 : prismaStart.reason) !== null && _c !== void 0 ? _c : "",
|
|
234
234
|
schemas: event.schemas,
|
|
235
235
|
result: event.result,
|
|
236
236
|
compiled: event.compiled,
|
|
@@ -248,9 +248,10 @@ const createDispatch = (props) => {
|
|
|
248
248
|
history: {
|
|
249
249
|
type: "interface",
|
|
250
250
|
id: (0, uuid_1.v7)(),
|
|
251
|
-
|
|
251
|
+
instruction: (_e = interfaceStart === null || interfaceStart === void 0 ? void 0 : interfaceStart.reason) !== null && _e !== void 0 ? _e : "",
|
|
252
252
|
authorizations: event.authorizations,
|
|
253
253
|
document: event.document,
|
|
254
|
+
missed: event.missed,
|
|
254
255
|
created_at: (_f = interfaceStart === null || interfaceStart === void 0 ? void 0 : interfaceStart.created_at) !== null && _f !== void 0 ? _f : new Date().toISOString(),
|
|
255
256
|
completed_at: new Date().toISOString(),
|
|
256
257
|
step: event.step,
|
|
@@ -265,7 +266,7 @@ const createDispatch = (props) => {
|
|
|
265
266
|
history: {
|
|
266
267
|
type: "test",
|
|
267
268
|
id: (0, uuid_1.v7)(),
|
|
268
|
-
|
|
269
|
+
instruction: (_g = testStart === null || testStart === void 0 ? void 0 : testStart.reason) !== null && _g !== void 0 ? _g : "",
|
|
269
270
|
files: event.files,
|
|
270
271
|
compiled: event.compiled,
|
|
271
272
|
created_at: (_h = testStart === null || testStart === void 0 ? void 0 : testStart.created_at) !== null && _h !== void 0 ? _h : new Date().toISOString(),
|
|
@@ -282,7 +283,7 @@ const createDispatch = (props) => {
|
|
|
282
283
|
history: {
|
|
283
284
|
type: "realize",
|
|
284
285
|
id: (0, uuid_1.v7)(),
|
|
285
|
-
|
|
286
|
+
instruction: (_j = realizeStart === null || realizeStart === void 0 ? void 0 : realizeStart.reason) !== null && _j !== void 0 ? _j : "",
|
|
286
287
|
authorizations: event.authorizations,
|
|
287
288
|
functions: event.functions,
|
|
288
289
|
controllers: event.controllers,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"createAutoBeContext.js","sourceRoot":"","sources":["../../src/factory/createAutoBeContext.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"createAutoBeContext.js","sourceRoot":"","sources":["../../src/factory/createAutoBeContext.ts"],"names":[],"mappings":"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"}
|