driftdetect-core 0.5.0 → 0.6.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/dist/boundaries/types.d.ts +1 -1
- package/dist/boundaries/types.d.ts.map +1 -1
- package/dist/call-graph/analysis/graph-builder.d.ts.map +1 -1
- package/dist/call-graph/analysis/graph-builder.js +1 -0
- package/dist/call-graph/analysis/graph-builder.js.map +1 -1
- package/dist/call-graph/extractors/go-data-access-extractor.d.ts +80 -0
- package/dist/call-graph/extractors/go-data-access-extractor.d.ts.map +1 -0
- package/dist/call-graph/extractors/go-data-access-extractor.js +457 -0
- package/dist/call-graph/extractors/go-data-access-extractor.js.map +1 -0
- package/dist/call-graph/extractors/go-extractor.d.ts +103 -0
- package/dist/call-graph/extractors/go-extractor.d.ts.map +1 -0
- package/dist/call-graph/extractors/go-extractor.js +509 -0
- package/dist/call-graph/extractors/go-extractor.js.map +1 -0
- package/dist/call-graph/extractors/go-hybrid-extractor.d.ts +97 -0
- package/dist/call-graph/extractors/go-hybrid-extractor.d.ts.map +1 -0
- package/dist/call-graph/extractors/go-hybrid-extractor.js +496 -0
- package/dist/call-graph/extractors/go-hybrid-extractor.js.map +1 -0
- package/dist/call-graph/extractors/regex/go-regex.d.ts +51 -0
- package/dist/call-graph/extractors/regex/go-regex.d.ts.map +1 -0
- package/dist/call-graph/extractors/regex/go-regex.js +435 -0
- package/dist/call-graph/extractors/regex/go-regex.js.map +1 -0
- package/dist/call-graph/extractors/regex/index.d.ts +1 -0
- package/dist/call-graph/extractors/regex/index.d.ts.map +1 -1
- package/dist/call-graph/extractors/regex/index.js +8 -0
- package/dist/call-graph/extractors/regex/index.js.map +1 -1
- package/dist/call-graph/index.d.ts +3 -0
- package/dist/call-graph/index.d.ts.map +1 -1
- package/dist/call-graph/index.js +5 -0
- package/dist/call-graph/index.js.map +1 -1
- package/dist/call-graph/types.d.ts +1 -1
- package/dist/call-graph/types.d.ts.map +1 -1
- package/dist/constraints/extraction/constraint-synthesizer.d.ts +72 -0
- package/dist/constraints/extraction/constraint-synthesizer.d.ts.map +1 -0
- package/dist/constraints/extraction/constraint-synthesizer.js +336 -0
- package/dist/constraints/extraction/constraint-synthesizer.js.map +1 -0
- package/dist/constraints/extraction/index.d.ts +10 -0
- package/dist/constraints/extraction/index.d.ts.map +1 -0
- package/dist/constraints/extraction/index.js +10 -0
- package/dist/constraints/extraction/index.js.map +1 -0
- package/dist/constraints/extraction/invariant-detector.d.ts +109 -0
- package/dist/constraints/extraction/invariant-detector.d.ts.map +1 -0
- package/dist/constraints/extraction/invariant-detector.js +979 -0
- package/dist/constraints/extraction/invariant-detector.js.map +1 -0
- package/dist/constraints/index.d.ts +15 -0
- package/dist/constraints/index.d.ts.map +1 -0
- package/dist/constraints/index.js +16 -0
- package/dist/constraints/index.js.map +1 -0
- package/dist/constraints/store/constraint-store.d.ts +110 -0
- package/dist/constraints/store/constraint-store.d.ts.map +1 -0
- package/dist/constraints/store/constraint-store.js +584 -0
- package/dist/constraints/store/constraint-store.js.map +1 -0
- package/dist/constraints/types.d.ts +605 -0
- package/dist/constraints/types.d.ts.map +1 -0
- package/dist/constraints/types.js +57 -0
- package/dist/constraints/types.js.map +1 -0
- package/dist/constraints/verification/constraint-verifier.d.ts +100 -0
- package/dist/constraints/verification/constraint-verifier.d.ts.map +1 -0
- package/dist/constraints/verification/constraint-verifier.js +638 -0
- package/dist/constraints/verification/constraint-verifier.js.map +1 -0
- package/dist/constraints/verification/index.d.ts +8 -0
- package/dist/constraints/verification/index.d.ts.map +1 -0
- package/dist/constraints/verification/index.js +8 -0
- package/dist/constraints/verification/index.js.map +1 -0
- package/dist/decisions/analyzer/decision-mining-analyzer.d.ts +121 -0
- package/dist/decisions/analyzer/decision-mining-analyzer.d.ts.map +1 -0
- package/dist/decisions/analyzer/decision-mining-analyzer.js +904 -0
- package/dist/decisions/analyzer/decision-mining-analyzer.js.map +1 -0
- package/dist/decisions/analyzer/index.d.ts +5 -0
- package/dist/decisions/analyzer/index.d.ts.map +1 -0
- package/dist/decisions/analyzer/index.js +5 -0
- package/dist/decisions/analyzer/index.js.map +1 -0
- package/dist/decisions/extractors/base-commit-extractor.d.ts +104 -0
- package/dist/decisions/extractors/base-commit-extractor.d.ts.map +1 -0
- package/dist/decisions/extractors/base-commit-extractor.js +305 -0
- package/dist/decisions/extractors/base-commit-extractor.js.map +1 -0
- package/dist/decisions/extractors/csharp-commit-extractor.d.ts +18 -0
- package/dist/decisions/extractors/csharp-commit-extractor.d.ts.map +1 -0
- package/dist/decisions/extractors/csharp-commit-extractor.js +281 -0
- package/dist/decisions/extractors/csharp-commit-extractor.js.map +1 -0
- package/dist/decisions/extractors/index.d.ts +31 -0
- package/dist/decisions/extractors/index.d.ts.map +1 -0
- package/dist/decisions/extractors/index.js +63 -0
- package/dist/decisions/extractors/index.js.map +1 -0
- package/dist/decisions/extractors/java-commit-extractor.d.ts +18 -0
- package/dist/decisions/extractors/java-commit-extractor.d.ts.map +1 -0
- package/dist/decisions/extractors/java-commit-extractor.js +248 -0
- package/dist/decisions/extractors/java-commit-extractor.js.map +1 -0
- package/dist/decisions/extractors/php-commit-extractor.d.ts +18 -0
- package/dist/decisions/extractors/php-commit-extractor.d.ts.map +1 -0
- package/dist/decisions/extractors/php-commit-extractor.js +280 -0
- package/dist/decisions/extractors/php-commit-extractor.js.map +1 -0
- package/dist/decisions/extractors/python-commit-extractor.d.ts +18 -0
- package/dist/decisions/extractors/python-commit-extractor.d.ts.map +1 -0
- package/dist/decisions/extractors/python-commit-extractor.js +248 -0
- package/dist/decisions/extractors/python-commit-extractor.js.map +1 -0
- package/dist/decisions/extractors/typescript-commit-extractor.d.ts +37 -0
- package/dist/decisions/extractors/typescript-commit-extractor.d.ts.map +1 -0
- package/dist/decisions/extractors/typescript-commit-extractor.js +229 -0
- package/dist/decisions/extractors/typescript-commit-extractor.js.map +1 -0
- package/dist/decisions/git/commit-parser.d.ts +58 -0
- package/dist/decisions/git/commit-parser.d.ts.map +1 -0
- package/dist/decisions/git/commit-parser.js +344 -0
- package/dist/decisions/git/commit-parser.js.map +1 -0
- package/dist/decisions/git/diff-analyzer.d.ts +30 -0
- package/dist/decisions/git/diff-analyzer.d.ts.map +1 -0
- package/dist/decisions/git/diff-analyzer.js +492 -0
- package/dist/decisions/git/diff-analyzer.js.map +1 -0
- package/dist/decisions/git/git-walker.d.ts +64 -0
- package/dist/decisions/git/git-walker.d.ts.map +1 -0
- package/dist/decisions/git/git-walker.js +441 -0
- package/dist/decisions/git/git-walker.js.map +1 -0
- package/dist/decisions/git/index.d.ts +11 -0
- package/dist/decisions/git/index.d.ts.map +1 -0
- package/dist/decisions/git/index.js +13 -0
- package/dist/decisions/git/index.js.map +1 -0
- package/dist/decisions/git/types.d.ts +223 -0
- package/dist/decisions/git/types.d.ts.map +1 -0
- package/dist/decisions/git/types.js +7 -0
- package/dist/decisions/git/types.js.map +1 -0
- package/dist/decisions/index.d.ts +27 -0
- package/dist/decisions/index.d.ts.map +1 -0
- package/dist/decisions/index.js +45 -0
- package/dist/decisions/index.js.map +1 -0
- package/dist/decisions/types.d.ts +530 -0
- package/dist/decisions/types.d.ts.map +1 -0
- package/dist/decisions/types.js +8 -0
- package/dist/decisions/types.js.map +1 -0
- package/dist/go/go-analyzer.d.ts +203 -0
- package/dist/go/go-analyzer.d.ts.map +1 -0
- package/dist/go/go-analyzer.js +509 -0
- package/dist/go/go-analyzer.js.map +1 -0
- package/dist/go/index.d.ts +7 -0
- package/dist/go/index.d.ts.map +1 -0
- package/dist/go/index.js +8 -0
- package/dist/go/index.js.map +1 -0
- package/dist/index.d.ts +11 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +56 -0
- package/dist/index.js.map +1 -1
- package/dist/parsers/tree-sitter/go-loader.d.ts +50 -0
- package/dist/parsers/tree-sitter/go-loader.d.ts.map +1 -0
- package/dist/parsers/tree-sitter/go-loader.js +161 -0
- package/dist/parsers/tree-sitter/go-loader.js.map +1 -0
- package/dist/parsers/tree-sitter/tree-sitter-go-parser.d.ts +250 -0
- package/dist/parsers/tree-sitter/tree-sitter-go-parser.d.ts.map +1 -0
- package/dist/parsers/tree-sitter/tree-sitter-go-parser.js +707 -0
- package/dist/parsers/tree-sitter/tree-sitter-go-parser.js.map +1 -0
- package/dist/parsers/types.d.ts +1 -1
- package/dist/parsers/types.d.ts.map +1 -1
- package/dist/simulation/approach-generator.d.ts +73 -0
- package/dist/simulation/approach-generator.d.ts.map +1 -0
- package/dist/simulation/approach-generator.js +371 -0
- package/dist/simulation/approach-generator.js.map +1 -0
- package/dist/simulation/index.d.ts +14 -0
- package/dist/simulation/index.d.ts.map +1 -0
- package/dist/simulation/index.js +19 -0
- package/dist/simulation/index.js.map +1 -0
- package/dist/simulation/language-strategies/csharp-strategies.d.ts +17 -0
- package/dist/simulation/language-strategies/csharp-strategies.d.ts.map +1 -0
- package/dist/simulation/language-strategies/csharp-strategies.js +118 -0
- package/dist/simulation/language-strategies/csharp-strategies.js.map +1 -0
- package/dist/simulation/language-strategies/index.d.ts +41 -0
- package/dist/simulation/language-strategies/index.d.ts.map +1 -0
- package/dist/simulation/language-strategies/index.js +92 -0
- package/dist/simulation/language-strategies/index.js.map +1 -0
- package/dist/simulation/language-strategies/java-strategies.d.ts +17 -0
- package/dist/simulation/language-strategies/java-strategies.d.ts.map +1 -0
- package/dist/simulation/language-strategies/java-strategies.js +119 -0
- package/dist/simulation/language-strategies/java-strategies.js.map +1 -0
- package/dist/simulation/language-strategies/php-strategies.d.ts +17 -0
- package/dist/simulation/language-strategies/php-strategies.d.ts.map +1 -0
- package/dist/simulation/language-strategies/php-strategies.js +129 -0
- package/dist/simulation/language-strategies/php-strategies.js.map +1 -0
- package/dist/simulation/language-strategies/python-strategies.d.ts +17 -0
- package/dist/simulation/language-strategies/python-strategies.d.ts.map +1 -0
- package/dist/simulation/language-strategies/python-strategies.js +208 -0
- package/dist/simulation/language-strategies/python-strategies.js.map +1 -0
- package/dist/simulation/language-strategies/types.d.ts +67 -0
- package/dist/simulation/language-strategies/types.d.ts.map +1 -0
- package/dist/simulation/language-strategies/types.js +23 -0
- package/dist/simulation/language-strategies/types.js.map +1 -0
- package/dist/simulation/language-strategies/typescript-strategies.d.ts +17 -0
- package/dist/simulation/language-strategies/typescript-strategies.d.ts.map +1 -0
- package/dist/simulation/language-strategies/typescript-strategies.js +251 -0
- package/dist/simulation/language-strategies/typescript-strategies.js.map +1 -0
- package/dist/simulation/scorers/friction-scorer.d.ts +45 -0
- package/dist/simulation/scorers/friction-scorer.d.ts.map +1 -0
- package/dist/simulation/scorers/friction-scorer.js +336 -0
- package/dist/simulation/scorers/friction-scorer.js.map +1 -0
- package/dist/simulation/scorers/impact-scorer.d.ts +56 -0
- package/dist/simulation/scorers/impact-scorer.d.ts.map +1 -0
- package/dist/simulation/scorers/impact-scorer.js +273 -0
- package/dist/simulation/scorers/impact-scorer.js.map +1 -0
- package/dist/simulation/scorers/index.d.ts +12 -0
- package/dist/simulation/scorers/index.d.ts.map +1 -0
- package/dist/simulation/scorers/index.js +12 -0
- package/dist/simulation/scorers/index.js.map +1 -0
- package/dist/simulation/scorers/pattern-alignment-scorer.d.ts +83 -0
- package/dist/simulation/scorers/pattern-alignment-scorer.d.ts.map +1 -0
- package/dist/simulation/scorers/pattern-alignment-scorer.js +367 -0
- package/dist/simulation/scorers/pattern-alignment-scorer.js.map +1 -0
- package/dist/simulation/scorers/security-scorer.d.ts +63 -0
- package/dist/simulation/scorers/security-scorer.d.ts.map +1 -0
- package/dist/simulation/scorers/security-scorer.js +346 -0
- package/dist/simulation/scorers/security-scorer.js.map +1 -0
- package/dist/simulation/simulation-engine.d.ts +89 -0
- package/dist/simulation/simulation-engine.d.ts.map +1 -0
- package/dist/simulation/simulation-engine.js +480 -0
- package/dist/simulation/simulation-engine.js.map +1 -0
- package/dist/simulation/types.d.ts +200 -0
- package/dist/simulation/types.d.ts.map +1 -0
- package/dist/simulation/types.js +23 -0
- package/dist/simulation/types.js.map +1 -0
- package/dist/speculative/approach-generator.d.ts +2 -0
- package/dist/speculative/approach-generator.d.ts.map +1 -0
- package/dist/speculative/approach-generator.js +2 -0
- package/dist/speculative/approach-generator.js.map +1 -0
- package/dist/speculative/templates/types.d.ts +133 -0
- package/dist/speculative/templates/types.d.ts.map +1 -0
- package/dist/speculative/templates/types.js +208 -0
- package/dist/speculative/templates/types.js.map +1 -0
- package/dist/speculative/types.d.ts +523 -0
- package/dist/speculative/types.d.ts.map +1 -0
- package/dist/speculative/types.js +71 -0
- package/dist/speculative/types.js.map +1 -0
- package/dist/test-topology/extractors/base-test-extractor.d.ts +1 -1
- package/dist/test-topology/extractors/base-test-extractor.d.ts.map +1 -1
- package/dist/test-topology/extractors/base-test-extractor.js.map +1 -1
- package/dist/test-topology/extractors/go-test-extractor.d.ts +33 -0
- package/dist/test-topology/extractors/go-test-extractor.d.ts.map +1 -0
- package/dist/test-topology/extractors/go-test-extractor.js +436 -0
- package/dist/test-topology/extractors/go-test-extractor.js.map +1 -0
- package/dist/test-topology/extractors/index.d.ts +1 -0
- package/dist/test-topology/extractors/index.d.ts.map +1 -1
- package/dist/test-topology/extractors/index.js +1 -0
- package/dist/test-topology/extractors/index.js.map +1 -1
- package/dist/test-topology/extractors/regex/go-test-regex.d.ts +62 -0
- package/dist/test-topology/extractors/regex/go-test-regex.d.ts.map +1 -0
- package/dist/test-topology/extractors/regex/go-test-regex.js +528 -0
- package/dist/test-topology/extractors/regex/go-test-regex.js.map +1 -0
- package/dist/test-topology/extractors/regex/index.d.ts +1 -0
- package/dist/test-topology/extractors/regex/index.d.ts.map +1 -1
- package/dist/test-topology/extractors/regex/index.js +4 -0
- package/dist/test-topology/extractors/regex/index.js.map +1 -1
- package/dist/test-topology/hybrid-test-topology-analyzer.d.ts.map +1 -1
- package/dist/test-topology/hybrid-test-topology-analyzer.js +1 -0
- package/dist/test-topology/hybrid-test-topology-analyzer.js.map +1 -1
- package/dist/test-topology/test-topology-analyzer.d.ts.map +1 -1
- package/dist/test-topology/test-topology-analyzer.js +1 -0
- package/dist/test-topology/test-topology-analyzer.js.map +1 -1
- package/dist/test-topology/types.d.ts +2 -2
- package/dist/test-topology/types.d.ts.map +1 -1
- package/dist/unified-provider/matching/database-sql-matcher.d.ts +42 -0
- package/dist/unified-provider/matching/database-sql-matcher.d.ts.map +1 -0
- package/dist/unified-provider/matching/database-sql-matcher.js +282 -0
- package/dist/unified-provider/matching/database-sql-matcher.js.map +1 -0
- package/dist/unified-provider/matching/gorm-matcher.d.ts +41 -0
- package/dist/unified-provider/matching/gorm-matcher.d.ts.map +1 -0
- package/dist/unified-provider/matching/gorm-matcher.js +222 -0
- package/dist/unified-provider/matching/gorm-matcher.js.map +1 -0
- package/dist/unified-provider/matching/index.d.ts +3 -0
- package/dist/unified-provider/matching/index.d.ts.map +1 -1
- package/dist/unified-provider/matching/index.js +4 -0
- package/dist/unified-provider/matching/index.js.map +1 -1
- package/dist/unified-provider/matching/matcher-registry.d.ts.map +1 -1
- package/dist/unified-provider/matching/matcher-registry.js +7 -0
- package/dist/unified-provider/matching/matcher-registry.js.map +1 -1
- package/dist/unified-provider/matching/sqlx-matcher.d.ts +40 -0
- package/dist/unified-provider/matching/sqlx-matcher.d.ts.map +1 -0
- package/dist/unified-provider/matching/sqlx-matcher.js +214 -0
- package/dist/unified-provider/matching/sqlx-matcher.js.map +1 -0
- package/dist/unified-provider/normalization/go-normalizer.d.ts +62 -0
- package/dist/unified-provider/normalization/go-normalizer.d.ts.map +1 -0
- package/dist/unified-provider/normalization/go-normalizer.js +608 -0
- package/dist/unified-provider/normalization/go-normalizer.js.map +1 -0
- package/dist/unified-provider/normalization/index.d.ts +1 -0
- package/dist/unified-provider/normalization/index.d.ts.map +1 -1
- package/dist/unified-provider/normalization/index.js +6 -1
- package/dist/unified-provider/normalization/index.js.map +1 -1
- package/dist/unified-provider/types.d.ts +1 -1
- package/dist/unified-provider/types.d.ts.map +1 -1
- package/dist/wpf/extractors/binding-error-detector.d.ts +75 -0
- package/dist/wpf/extractors/binding-error-detector.d.ts.map +1 -0
- package/dist/wpf/extractors/binding-error-detector.js +290 -0
- package/dist/wpf/extractors/binding-error-detector.js.map +1 -0
- package/dist/wpf/extractors/code-behind-linker.d.ts +70 -0
- package/dist/wpf/extractors/code-behind-linker.d.ts.map +1 -0
- package/dist/wpf/extractors/code-behind-linker.js +172 -0
- package/dist/wpf/extractors/code-behind-linker.js.map +1 -0
- package/dist/wpf/extractors/dependency-property-extractor.d.ts +61 -0
- package/dist/wpf/extractors/dependency-property-extractor.d.ts.map +1 -0
- package/dist/wpf/extractors/dependency-property-extractor.js +201 -0
- package/dist/wpf/extractors/dependency-property-extractor.js.map +1 -0
- package/dist/wpf/extractors/regex/viewmodel-regex.d.ts +82 -0
- package/dist/wpf/extractors/regex/viewmodel-regex.d.ts.map +1 -0
- package/dist/wpf/extractors/regex/viewmodel-regex.js +412 -0
- package/dist/wpf/extractors/regex/viewmodel-regex.js.map +1 -0
- package/dist/wpf/extractors/regex/xaml-regex.d.ts +77 -0
- package/dist/wpf/extractors/regex/xaml-regex.d.ts.map +1 -0
- package/dist/wpf/extractors/regex/xaml-regex.js +353 -0
- package/dist/wpf/extractors/regex/xaml-regex.js.map +1 -0
- package/dist/wpf/extractors/resource-dictionary-parser.d.ts +103 -0
- package/dist/wpf/extractors/resource-dictionary-parser.d.ts.map +1 -0
- package/dist/wpf/extractors/resource-dictionary-parser.js +296 -0
- package/dist/wpf/extractors/resource-dictionary-parser.js.map +1 -0
- package/dist/wpf/extractors/value-converter-extractor.d.ts +128 -0
- package/dist/wpf/extractors/value-converter-extractor.d.ts.map +1 -0
- package/dist/wpf/extractors/value-converter-extractor.js +312 -0
- package/dist/wpf/extractors/value-converter-extractor.js.map +1 -0
- package/dist/wpf/extractors/viewmodel-hybrid-extractor.d.ts +104 -0
- package/dist/wpf/extractors/viewmodel-hybrid-extractor.d.ts.map +1 -0
- package/dist/wpf/extractors/viewmodel-hybrid-extractor.js +513 -0
- package/dist/wpf/extractors/viewmodel-hybrid-extractor.js.map +1 -0
- package/dist/wpf/extractors/xaml-hybrid-extractor.d.ts +98 -0
- package/dist/wpf/extractors/xaml-hybrid-extractor.d.ts.map +1 -0
- package/dist/wpf/extractors/xaml-hybrid-extractor.js +444 -0
- package/dist/wpf/extractors/xaml-hybrid-extractor.js.map +1 -0
- package/dist/wpf/index.d.ts +25 -0
- package/dist/wpf/index.d.ts.map +1 -0
- package/dist/wpf/index.js +31 -0
- package/dist/wpf/index.js.map +1 -0
- package/dist/wpf/integration/wpf-callgraph-adapter.d.ts +82 -0
- package/dist/wpf/integration/wpf-callgraph-adapter.d.ts.map +1 -0
- package/dist/wpf/integration/wpf-callgraph-adapter.js +311 -0
- package/dist/wpf/integration/wpf-callgraph-adapter.js.map +1 -0
- package/dist/wpf/integration/wpf-data-flow-tracer.d.ts +129 -0
- package/dist/wpf/integration/wpf-data-flow-tracer.d.ts.map +1 -0
- package/dist/wpf/integration/wpf-data-flow-tracer.js +367 -0
- package/dist/wpf/integration/wpf-data-flow-tracer.js.map +1 -0
- package/dist/wpf/linkers/datacontext-resolver.d.ts +66 -0
- package/dist/wpf/linkers/datacontext-resolver.d.ts.map +1 -0
- package/dist/wpf/linkers/datacontext-resolver.js +240 -0
- package/dist/wpf/linkers/datacontext-resolver.js.map +1 -0
- package/dist/wpf/linkers/viewmodel-linker.d.ts +71 -0
- package/dist/wpf/linkers/viewmodel-linker.d.ts.map +1 -0
- package/dist/wpf/linkers/viewmodel-linker.js +268 -0
- package/dist/wpf/linkers/viewmodel-linker.js.map +1 -0
- package/dist/wpf/types.d.ts +451 -0
- package/dist/wpf/types.d.ts.map +1 -0
- package/dist/wpf/types.js +8 -0
- package/dist/wpf/types.js.map +1 -0
- package/dist/wpf/wpf-analyzer.d.ts +114 -0
- package/dist/wpf/wpf-analyzer.d.ts.map +1 -0
- package/dist/wpf/wpf-analyzer.js +332 -0
- package/dist/wpf/wpf-analyzer.js.map +1 -0
- package/dist/wrappers/integration/adapter.d.ts.map +1 -1
- package/dist/wrappers/integration/adapter.js +1 -0
- package/dist/wrappers/integration/adapter.js.map +1 -1
- package/package.json +29 -18
- package/LICENSE +0 -21
|
@@ -0,0 +1,200 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Speculative Execution Engine - Type Definitions
|
|
3
|
+
*
|
|
4
|
+
* Simulates multiple implementation approaches BEFORE code generation,
|
|
5
|
+
* scoring them by friction, impact, and pattern alignment.
|
|
6
|
+
*
|
|
7
|
+
* @module simulation/types
|
|
8
|
+
*/
|
|
9
|
+
import type { CallGraphLanguage } from '../call-graph/types.js';
|
|
10
|
+
/** Task categories (auto-detected from description) */
|
|
11
|
+
export type TaskCategory = 'rate-limiting' | 'authentication' | 'authorization' | 'api-endpoint' | 'data-access' | 'error-handling' | 'caching' | 'logging' | 'testing' | 'validation' | 'middleware' | 'refactoring' | 'generic';
|
|
12
|
+
/** Constraint types */
|
|
13
|
+
export type ConstraintType = 'must-work-with' | 'avoid-changing' | 'max-files' | 'pattern-required' | 'framework-required' | 'custom';
|
|
14
|
+
/** A constraint that must be satisfied */
|
|
15
|
+
export interface SimulationConstraint {
|
|
16
|
+
type: ConstraintType;
|
|
17
|
+
value: string;
|
|
18
|
+
description?: string;
|
|
19
|
+
required?: boolean;
|
|
20
|
+
}
|
|
21
|
+
/** Task description for simulation */
|
|
22
|
+
export interface SimulationTask {
|
|
23
|
+
description: string;
|
|
24
|
+
category?: TaskCategory | undefined;
|
|
25
|
+
target?: string | undefined;
|
|
26
|
+
constraints?: SimulationConstraint[] | undefined;
|
|
27
|
+
scope?: 'function' | 'file' | 'module' | 'codebase' | undefined;
|
|
28
|
+
}
|
|
29
|
+
/** Implementation strategy (language-agnostic) */
|
|
30
|
+
export type ApproachStrategy = 'middleware' | 'decorator' | 'wrapper' | 'per-route' | 'per-function' | 'centralized' | 'distributed' | 'aspect' | 'filter' | 'interceptor' | 'guard' | 'policy' | 'dependency' | 'mixin' | 'custom';
|
|
31
|
+
/** A single implementation approach to simulate */
|
|
32
|
+
export interface SimulationApproach {
|
|
33
|
+
id: string;
|
|
34
|
+
name: string;
|
|
35
|
+
description: string;
|
|
36
|
+
strategy: ApproachStrategy;
|
|
37
|
+
language: CallGraphLanguage;
|
|
38
|
+
framework?: string;
|
|
39
|
+
targetFiles: string[];
|
|
40
|
+
targetFunctions?: string[];
|
|
41
|
+
newFiles?: string[];
|
|
42
|
+
followsPatterns?: string[];
|
|
43
|
+
estimatedLinesAdded?: number;
|
|
44
|
+
estimatedLinesModified?: number;
|
|
45
|
+
template?: string;
|
|
46
|
+
frameworkNotes?: string;
|
|
47
|
+
}
|
|
48
|
+
export type RiskLevel = 'critical' | 'high' | 'medium' | 'low';
|
|
49
|
+
export type Severity = 'error' | 'warning' | 'info';
|
|
50
|
+
/** Friction metrics breakdown */
|
|
51
|
+
export interface FrictionBreakdown {
|
|
52
|
+
metric: string;
|
|
53
|
+
value: number;
|
|
54
|
+
weight: number;
|
|
55
|
+
contribution: number;
|
|
56
|
+
reason?: string;
|
|
57
|
+
}
|
|
58
|
+
/** Friction metrics for an approach */
|
|
59
|
+
export interface FrictionMetrics {
|
|
60
|
+
codeChurn: number;
|
|
61
|
+
patternDeviation: number;
|
|
62
|
+
testingEffort: number;
|
|
63
|
+
refactoringRequired: number;
|
|
64
|
+
learningCurve: number;
|
|
65
|
+
overall: number;
|
|
66
|
+
breakdown: FrictionBreakdown[];
|
|
67
|
+
}
|
|
68
|
+
/** Impact metrics for an approach */
|
|
69
|
+
export interface ImpactMetrics {
|
|
70
|
+
filesAffected: number;
|
|
71
|
+
functionsAffected: number;
|
|
72
|
+
entryPointsAffected: number;
|
|
73
|
+
sensitiveDataPaths: number;
|
|
74
|
+
riskScore: number;
|
|
75
|
+
riskLevel: RiskLevel;
|
|
76
|
+
breakingChanges: boolean;
|
|
77
|
+
breakingChangeRisks: string[];
|
|
78
|
+
maxDepthAffected: number;
|
|
79
|
+
}
|
|
80
|
+
/** Aligned pattern info */
|
|
81
|
+
export interface AlignedPattern {
|
|
82
|
+
id: string;
|
|
83
|
+
name: string;
|
|
84
|
+
category: string;
|
|
85
|
+
alignmentScore: number;
|
|
86
|
+
reason: string;
|
|
87
|
+
exampleFile?: string | undefined;
|
|
88
|
+
}
|
|
89
|
+
/** Conflicting pattern info */
|
|
90
|
+
export interface ConflictingPattern {
|
|
91
|
+
id: string;
|
|
92
|
+
name: string;
|
|
93
|
+
category: string;
|
|
94
|
+
conflictReason: string;
|
|
95
|
+
severity: Severity;
|
|
96
|
+
}
|
|
97
|
+
/** Pattern alignment metrics */
|
|
98
|
+
export interface PatternAlignmentMetrics {
|
|
99
|
+
alignmentScore: number;
|
|
100
|
+
alignedPatterns: AlignedPattern[];
|
|
101
|
+
conflictingPatterns: ConflictingPattern[];
|
|
102
|
+
createsNewPattern: boolean;
|
|
103
|
+
wouldBeOutlier: boolean;
|
|
104
|
+
suggestedPatterns: string[];
|
|
105
|
+
}
|
|
106
|
+
/** Data access implication */
|
|
107
|
+
export interface DataAccessImplication {
|
|
108
|
+
table: string;
|
|
109
|
+
fields: string[];
|
|
110
|
+
operation: 'read' | 'write' | 'delete' | 'unknown';
|
|
111
|
+
sensitivity: 'credentials' | 'financial' | 'health' | 'pii' | 'unknown';
|
|
112
|
+
throughFunction?: string | undefined;
|
|
113
|
+
}
|
|
114
|
+
/** Security warning */
|
|
115
|
+
export interface SecurityWarning {
|
|
116
|
+
type: string;
|
|
117
|
+
message: string;
|
|
118
|
+
severity: RiskLevel;
|
|
119
|
+
recommendation?: string;
|
|
120
|
+
}
|
|
121
|
+
/** Security metrics */
|
|
122
|
+
export interface SecurityMetrics {
|
|
123
|
+
securityRisk: number;
|
|
124
|
+
dataAccessImplications: DataAccessImplication[];
|
|
125
|
+
authImplications: string[];
|
|
126
|
+
warnings: SecurityWarning[];
|
|
127
|
+
}
|
|
128
|
+
/** Complete simulation result for a single approach */
|
|
129
|
+
export interface SimulatedApproach {
|
|
130
|
+
approach: SimulationApproach;
|
|
131
|
+
friction: FrictionMetrics;
|
|
132
|
+
impact: ImpactMetrics;
|
|
133
|
+
patternAlignment: PatternAlignmentMetrics;
|
|
134
|
+
security: SecurityMetrics;
|
|
135
|
+
score: number;
|
|
136
|
+
rank: number;
|
|
137
|
+
reasoning: string;
|
|
138
|
+
pros: string[];
|
|
139
|
+
cons: string[];
|
|
140
|
+
warnings: string[];
|
|
141
|
+
nextSteps: string[];
|
|
142
|
+
satisfiedConstraints: string[];
|
|
143
|
+
unsatisfiedConstraints: string[];
|
|
144
|
+
}
|
|
145
|
+
/** Trade-off comparison between approaches */
|
|
146
|
+
export interface ApproachTradeoff {
|
|
147
|
+
approach1: string;
|
|
148
|
+
approach2: string;
|
|
149
|
+
comparison: string;
|
|
150
|
+
winner?: string;
|
|
151
|
+
dimensions: {
|
|
152
|
+
dimension: string;
|
|
153
|
+
approach1Value: number;
|
|
154
|
+
approach2Value: number;
|
|
155
|
+
better: string;
|
|
156
|
+
}[];
|
|
157
|
+
}
|
|
158
|
+
/** Confidence assessment */
|
|
159
|
+
export interface SimulationConfidence {
|
|
160
|
+
score: number;
|
|
161
|
+
limitations: string[];
|
|
162
|
+
dataSources: string[];
|
|
163
|
+
}
|
|
164
|
+
/** Execution metadata */
|
|
165
|
+
export interface SimulationMetadata {
|
|
166
|
+
executionTimeMs: number;
|
|
167
|
+
approachesSimulated: number;
|
|
168
|
+
approachesGenerated: number;
|
|
169
|
+
dataSourcesUsed: string[];
|
|
170
|
+
cacheHits?: number;
|
|
171
|
+
}
|
|
172
|
+
/** Complete simulation result */
|
|
173
|
+
export interface SimulationResult {
|
|
174
|
+
task: SimulationTask;
|
|
175
|
+
approaches: SimulatedApproach[];
|
|
176
|
+
recommended: SimulatedApproach;
|
|
177
|
+
summary: string;
|
|
178
|
+
tradeoffs: ApproachTradeoff[];
|
|
179
|
+
confidence: SimulationConfidence;
|
|
180
|
+
metadata: SimulationMetadata;
|
|
181
|
+
}
|
|
182
|
+
/** Options for simulation */
|
|
183
|
+
export interface SimulationOptions {
|
|
184
|
+
maxApproaches?: number;
|
|
185
|
+
maxDepth?: number;
|
|
186
|
+
includeSecurityAnalysis?: boolean;
|
|
187
|
+
minPatternConfidence?: number;
|
|
188
|
+
timeout?: number;
|
|
189
|
+
enableCache?: boolean;
|
|
190
|
+
}
|
|
191
|
+
/** Scoring weights */
|
|
192
|
+
export interface ScoringWeights {
|
|
193
|
+
friction: number;
|
|
194
|
+
impact: number;
|
|
195
|
+
patternAlignment: number;
|
|
196
|
+
security: number;
|
|
197
|
+
}
|
|
198
|
+
export declare const DEFAULT_SCORING_WEIGHTS: ScoringWeights;
|
|
199
|
+
export declare const DEFAULT_SIMULATION_OPTIONS: Required<SimulationOptions>;
|
|
200
|
+
//# sourceMappingURL=types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/simulation/types.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Speculative Execution Engine - Type Definitions
|
|
3
|
+
*
|
|
4
|
+
* Simulates multiple implementation approaches BEFORE code generation,
|
|
5
|
+
* scoring them by friction, impact, and pattern alignment.
|
|
6
|
+
*
|
|
7
|
+
* @module simulation/types
|
|
8
|
+
*/
|
|
9
|
+
export const DEFAULT_SCORING_WEIGHTS = {
|
|
10
|
+
friction: 0.30,
|
|
11
|
+
impact: 0.25,
|
|
12
|
+
patternAlignment: 0.30,
|
|
13
|
+
security: 0.15,
|
|
14
|
+
};
|
|
15
|
+
export const DEFAULT_SIMULATION_OPTIONS = {
|
|
16
|
+
maxApproaches: 5,
|
|
17
|
+
maxDepth: 10,
|
|
18
|
+
includeSecurityAnalysis: true,
|
|
19
|
+
minPatternConfidence: 0.5,
|
|
20
|
+
timeout: 30000,
|
|
21
|
+
enableCache: true,
|
|
22
|
+
};
|
|
23
|
+
//# sourceMappingURL=types.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../src/simulation/types.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AA+QH,MAAM,CAAC,MAAM,uBAAuB,GAAmB;IACrD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,gBAAgB,EAAE,IAAI;IACtB,QAAQ,EAAE,IAAI;CACf,CAAC;AAEF,MAAM,CAAC,MAAM,0BAA0B,GAAgC;IACrE,aAAa,EAAE,CAAC;IAChB,QAAQ,EAAE,EAAE;IACZ,uBAAuB,EAAE,IAAI;IAC7B,oBAAoB,EAAE,GAAG;IACzB,OAAO,EAAE,KAAK;IACd,WAAW,EAAE,IAAI;CAClB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"approach-generator.d.ts","sourceRoot":"","sources":["../../src/speculative/approach-generator.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"approach-generator.js","sourceRoot":"","sources":["../../src/speculative/approach-generator.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Template System Types
|
|
3
|
+
*
|
|
4
|
+
* Types for the approach template system that provides
|
|
5
|
+
* language-specific implementation strategies.
|
|
6
|
+
*
|
|
7
|
+
* @module speculative/templates/types
|
|
8
|
+
*/
|
|
9
|
+
import type { SupportedLanguage, SupportedFramework, TaskType, ApproachStrategy, ApproachTemplate } from '../types.js';
|
|
10
|
+
/**
|
|
11
|
+
* Builder for creating approach templates
|
|
12
|
+
*/
|
|
13
|
+
export interface TemplateBuilder {
|
|
14
|
+
/** Set the template ID */
|
|
15
|
+
id(id: string): TemplateBuilder;
|
|
16
|
+
/** Set the template name */
|
|
17
|
+
name(name: string): TemplateBuilder;
|
|
18
|
+
/** Set the description */
|
|
19
|
+
description(desc: string): TemplateBuilder;
|
|
20
|
+
/** Set the strategy */
|
|
21
|
+
strategy(strategy: ApproachStrategy): TemplateBuilder;
|
|
22
|
+
/** Set the language */
|
|
23
|
+
language(lang: SupportedLanguage): TemplateBuilder;
|
|
24
|
+
/** Add compatible frameworks */
|
|
25
|
+
frameworks(...frameworks: SupportedFramework[]): TemplateBuilder;
|
|
26
|
+
/** Add applicable task types */
|
|
27
|
+
taskTypes(...types: TaskType[]): TemplateBuilder;
|
|
28
|
+
/** Add prerequisites */
|
|
29
|
+
prerequisites(...prereqs: string[]): TemplateBuilder;
|
|
30
|
+
/** Set implementation hint */
|
|
31
|
+
hint(hint: string): TemplateBuilder;
|
|
32
|
+
/** Add file patterns */
|
|
33
|
+
filePatterns(...patterns: string[]): TemplateBuilder;
|
|
34
|
+
/** Set LOC range */
|
|
35
|
+
locRange(min: number, max: number): TemplateBuilder;
|
|
36
|
+
/** Add keywords */
|
|
37
|
+
keywords(...keywords: string[]): TemplateBuilder;
|
|
38
|
+
/** Set priority */
|
|
39
|
+
priority(priority: number): TemplateBuilder;
|
|
40
|
+
/** Build the template */
|
|
41
|
+
build(): ApproachTemplate;
|
|
42
|
+
}
|
|
43
|
+
/**
|
|
44
|
+
* Create a new template builder
|
|
45
|
+
*/
|
|
46
|
+
export declare function createTemplateBuilder(): TemplateBuilder;
|
|
47
|
+
/**
|
|
48
|
+
* A collection of templates for a specific language
|
|
49
|
+
*/
|
|
50
|
+
export interface LanguageTemplateCollection {
|
|
51
|
+
/** Language this collection is for */
|
|
52
|
+
language: SupportedLanguage;
|
|
53
|
+
/** All templates in this collection */
|
|
54
|
+
templates: ApproachTemplate[];
|
|
55
|
+
/** Get templates by task type */
|
|
56
|
+
getByTaskType(taskType: TaskType): ApproachTemplate[];
|
|
57
|
+
/** Get templates by framework */
|
|
58
|
+
getByFramework(framework: SupportedFramework): ApproachTemplate[];
|
|
59
|
+
/** Get templates by strategy */
|
|
60
|
+
getByStrategy(strategy: ApproachStrategy): ApproachTemplate[];
|
|
61
|
+
}
|
|
62
|
+
/**
|
|
63
|
+
* Create a language template collection
|
|
64
|
+
*/
|
|
65
|
+
export declare function createLanguageCollection(language: SupportedLanguage, templates: ApproachTemplate[]): LanguageTemplateCollection;
|
|
66
|
+
/**
|
|
67
|
+
* Score for how well a template matches a task
|
|
68
|
+
*/
|
|
69
|
+
export interface TemplateMatchScore {
|
|
70
|
+
/** The template */
|
|
71
|
+
template: ApproachTemplate;
|
|
72
|
+
/** Overall match score (0-1) */
|
|
73
|
+
score: number;
|
|
74
|
+
/** Breakdown of score components */
|
|
75
|
+
breakdown: {
|
|
76
|
+
/** Task type match (0-1) */
|
|
77
|
+
taskType: number;
|
|
78
|
+
/** Framework match (0-1) */
|
|
79
|
+
framework: number;
|
|
80
|
+
/** Keyword match (0-1) */
|
|
81
|
+
keywords: number;
|
|
82
|
+
/** Priority bonus (0-1) */
|
|
83
|
+
priority: number;
|
|
84
|
+
};
|
|
85
|
+
/** Reasons for the score */
|
|
86
|
+
reasons: string[];
|
|
87
|
+
}
|
|
88
|
+
/**
|
|
89
|
+
* Options for template matching
|
|
90
|
+
*/
|
|
91
|
+
export interface TemplateMatchOptions {
|
|
92
|
+
/** Minimum score to include (0-1) */
|
|
93
|
+
minScore?: number;
|
|
94
|
+
/** Maximum results */
|
|
95
|
+
maxResults?: number;
|
|
96
|
+
/** Boost templates matching these keywords */
|
|
97
|
+
boostKeywords?: string[];
|
|
98
|
+
/** Prefer templates with these strategies */
|
|
99
|
+
preferStrategies?: ApproachStrategy[];
|
|
100
|
+
}
|
|
101
|
+
/**
|
|
102
|
+
* Framework detection result
|
|
103
|
+
*/
|
|
104
|
+
export interface FrameworkDetection {
|
|
105
|
+
/** Detected framework */
|
|
106
|
+
framework: SupportedFramework;
|
|
107
|
+
/** Confidence (0-1) */
|
|
108
|
+
confidence: number;
|
|
109
|
+
/** Evidence for detection */
|
|
110
|
+
evidence: string[];
|
|
111
|
+
}
|
|
112
|
+
/**
|
|
113
|
+
* Framework detection patterns
|
|
114
|
+
*/
|
|
115
|
+
export interface FrameworkPattern {
|
|
116
|
+
/** Framework this pattern detects */
|
|
117
|
+
framework: SupportedFramework;
|
|
118
|
+
/** Language this framework belongs to */
|
|
119
|
+
language: SupportedLanguage;
|
|
120
|
+
/** File patterns that indicate this framework */
|
|
121
|
+
filePatterns: string[];
|
|
122
|
+
/** Import patterns that indicate this framework */
|
|
123
|
+
importPatterns: string[];
|
|
124
|
+
/** Config file patterns */
|
|
125
|
+
configPatterns: string[];
|
|
126
|
+
/** Package/dependency names */
|
|
127
|
+
dependencies: string[];
|
|
128
|
+
}
|
|
129
|
+
/**
|
|
130
|
+
* Framework detection patterns for all supported frameworks
|
|
131
|
+
*/
|
|
132
|
+
export declare const FRAMEWORK_PATTERNS: FrameworkPattern[];
|
|
133
|
+
//# sourceMappingURL=types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/speculative/templates/types.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,208 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Template System Types
|
|
3
|
+
*
|
|
4
|
+
* Types for the approach template system that provides
|
|
5
|
+
* language-specific implementation strategies.
|
|
6
|
+
*
|
|
7
|
+
* @module speculative/templates/types
|
|
8
|
+
*/
|
|
9
|
+
/**
|
|
10
|
+
* Create a new template builder
|
|
11
|
+
*/
|
|
12
|
+
export function createTemplateBuilder() {
|
|
13
|
+
const template = {
|
|
14
|
+
frameworks: [],
|
|
15
|
+
taskTypes: [],
|
|
16
|
+
prerequisites: [],
|
|
17
|
+
filePatterns: [],
|
|
18
|
+
keywords: [],
|
|
19
|
+
locRange: [10, 50],
|
|
20
|
+
priority: 50,
|
|
21
|
+
};
|
|
22
|
+
const builder = {
|
|
23
|
+
id(id) {
|
|
24
|
+
template.id = id;
|
|
25
|
+
return builder;
|
|
26
|
+
},
|
|
27
|
+
name(name) {
|
|
28
|
+
template.name = name;
|
|
29
|
+
return builder;
|
|
30
|
+
},
|
|
31
|
+
description(desc) {
|
|
32
|
+
template.description = desc;
|
|
33
|
+
return builder;
|
|
34
|
+
},
|
|
35
|
+
strategy(strategy) {
|
|
36
|
+
template.strategy = strategy;
|
|
37
|
+
return builder;
|
|
38
|
+
},
|
|
39
|
+
language(lang) {
|
|
40
|
+
template.language = lang;
|
|
41
|
+
return builder;
|
|
42
|
+
},
|
|
43
|
+
frameworks(...frameworks) {
|
|
44
|
+
template.frameworks = frameworks;
|
|
45
|
+
return builder;
|
|
46
|
+
},
|
|
47
|
+
taskTypes(...types) {
|
|
48
|
+
template.taskTypes = types;
|
|
49
|
+
return builder;
|
|
50
|
+
},
|
|
51
|
+
prerequisites(...prereqs) {
|
|
52
|
+
template.prerequisites = prereqs;
|
|
53
|
+
return builder;
|
|
54
|
+
},
|
|
55
|
+
hint(hint) {
|
|
56
|
+
template.hint = hint;
|
|
57
|
+
return builder;
|
|
58
|
+
},
|
|
59
|
+
filePatterns(...patterns) {
|
|
60
|
+
template.filePatterns = patterns;
|
|
61
|
+
return builder;
|
|
62
|
+
},
|
|
63
|
+
locRange(min, max) {
|
|
64
|
+
template.locRange = [min, max];
|
|
65
|
+
return builder;
|
|
66
|
+
},
|
|
67
|
+
keywords(...keywords) {
|
|
68
|
+
template.keywords = keywords;
|
|
69
|
+
return builder;
|
|
70
|
+
},
|
|
71
|
+
priority(priority) {
|
|
72
|
+
template.priority = priority;
|
|
73
|
+
return builder;
|
|
74
|
+
},
|
|
75
|
+
build() {
|
|
76
|
+
if (!template.id || !template.name || !template.language || !template.strategy) {
|
|
77
|
+
throw new Error('Template missing required fields: id, name, language, strategy');
|
|
78
|
+
}
|
|
79
|
+
return template;
|
|
80
|
+
},
|
|
81
|
+
};
|
|
82
|
+
return builder;
|
|
83
|
+
}
|
|
84
|
+
/**
|
|
85
|
+
* Create a language template collection
|
|
86
|
+
*/
|
|
87
|
+
export function createLanguageCollection(language, templates) {
|
|
88
|
+
return {
|
|
89
|
+
language,
|
|
90
|
+
templates,
|
|
91
|
+
getByTaskType(taskType) {
|
|
92
|
+
return templates.filter(t => t.taskTypes.includes(taskType));
|
|
93
|
+
},
|
|
94
|
+
getByFramework(framework) {
|
|
95
|
+
return templates.filter(t => t.frameworks.length === 0 || t.frameworks.includes(framework));
|
|
96
|
+
},
|
|
97
|
+
getByStrategy(strategy) {
|
|
98
|
+
return templates.filter(t => t.strategy === strategy);
|
|
99
|
+
},
|
|
100
|
+
};
|
|
101
|
+
}
|
|
102
|
+
/**
|
|
103
|
+
* Framework detection patterns for all supported frameworks
|
|
104
|
+
*/
|
|
105
|
+
export const FRAMEWORK_PATTERNS = [
|
|
106
|
+
// TypeScript/JavaScript
|
|
107
|
+
{
|
|
108
|
+
framework: 'express',
|
|
109
|
+
language: 'typescript',
|
|
110
|
+
filePatterns: ['**/routes/**', '**/middleware/**'],
|
|
111
|
+
importPatterns: ['express', '@types/express'],
|
|
112
|
+
configPatterns: [],
|
|
113
|
+
dependencies: ['express'],
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
framework: 'nestjs',
|
|
117
|
+
language: 'typescript',
|
|
118
|
+
filePatterns: ['**/*.controller.ts', '**/*.module.ts', '**/*.service.ts'],
|
|
119
|
+
importPatterns: ['@nestjs/common', '@nestjs/core'],
|
|
120
|
+
configPatterns: ['nest-cli.json'],
|
|
121
|
+
dependencies: ['@nestjs/core'],
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
framework: 'nextjs',
|
|
125
|
+
language: 'typescript',
|
|
126
|
+
filePatterns: ['**/pages/**', '**/app/**', '**/api/**'],
|
|
127
|
+
importPatterns: ['next', 'next/server'],
|
|
128
|
+
configPatterns: ['next.config.js', 'next.config.mjs', 'next.config.ts'],
|
|
129
|
+
dependencies: ['next'],
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
framework: 'fastify',
|
|
133
|
+
language: 'typescript',
|
|
134
|
+
filePatterns: ['**/routes/**', '**/plugins/**'],
|
|
135
|
+
importPatterns: ['fastify', '@fastify/*'],
|
|
136
|
+
configPatterns: [],
|
|
137
|
+
dependencies: ['fastify'],
|
|
138
|
+
},
|
|
139
|
+
// Python
|
|
140
|
+
{
|
|
141
|
+
framework: 'django',
|
|
142
|
+
language: 'python',
|
|
143
|
+
filePatterns: ['**/views.py', '**/models.py', '**/urls.py', '**/admin.py'],
|
|
144
|
+
importPatterns: ['django', 'rest_framework'],
|
|
145
|
+
configPatterns: ['manage.py', 'settings.py'],
|
|
146
|
+
dependencies: ['django', 'djangorestframework'],
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
framework: 'fastapi',
|
|
150
|
+
language: 'python',
|
|
151
|
+
filePatterns: ['**/routers/**', '**/routes/**'],
|
|
152
|
+
importPatterns: ['fastapi', 'pydantic'],
|
|
153
|
+
configPatterns: [],
|
|
154
|
+
dependencies: ['fastapi', 'uvicorn'],
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
framework: 'flask',
|
|
158
|
+
language: 'python',
|
|
159
|
+
filePatterns: ['**/routes/**', '**/blueprints/**'],
|
|
160
|
+
importPatterns: ['flask', 'flask_*'],
|
|
161
|
+
configPatterns: [],
|
|
162
|
+
dependencies: ['flask'],
|
|
163
|
+
},
|
|
164
|
+
// Java
|
|
165
|
+
{
|
|
166
|
+
framework: 'spring-boot',
|
|
167
|
+
language: 'java',
|
|
168
|
+
filePatterns: ['**/*Controller.java', '**/*Service.java', '**/*Repository.java'],
|
|
169
|
+
importPatterns: ['org.springframework', 'spring-boot'],
|
|
170
|
+
configPatterns: ['application.properties', 'application.yml', 'pom.xml', 'build.gradle'],
|
|
171
|
+
dependencies: ['spring-boot-starter'],
|
|
172
|
+
},
|
|
173
|
+
// C#
|
|
174
|
+
{
|
|
175
|
+
framework: 'aspnet-core',
|
|
176
|
+
language: 'csharp',
|
|
177
|
+
filePatterns: ['**/*Controller.cs', '**/Program.cs', '**/Startup.cs'],
|
|
178
|
+
importPatterns: ['Microsoft.AspNetCore', 'Microsoft.Extensions'],
|
|
179
|
+
configPatterns: ['appsettings.json', '*.csproj'],
|
|
180
|
+
dependencies: ['Microsoft.AspNetCore'],
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
framework: 'minimal-api',
|
|
184
|
+
language: 'csharp',
|
|
185
|
+
filePatterns: ['**/Program.cs', '**/Endpoints/**'],
|
|
186
|
+
importPatterns: ['Microsoft.AspNetCore.Builder'],
|
|
187
|
+
configPatterns: [],
|
|
188
|
+
dependencies: ['Microsoft.AspNetCore'],
|
|
189
|
+
},
|
|
190
|
+
// PHP
|
|
191
|
+
{
|
|
192
|
+
framework: 'laravel',
|
|
193
|
+
language: 'php',
|
|
194
|
+
filePatterns: ['**/Controllers/**', '**/Models/**', '**/routes/**'],
|
|
195
|
+
importPatterns: ['Illuminate\\', 'App\\'],
|
|
196
|
+
configPatterns: ['artisan', 'composer.json'],
|
|
197
|
+
dependencies: ['laravel/framework'],
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
framework: 'symfony',
|
|
201
|
+
language: 'php',
|
|
202
|
+
filePatterns: ['**/Controller/**', '**/Entity/**'],
|
|
203
|
+
importPatterns: ['Symfony\\', 'Doctrine\\'],
|
|
204
|
+
configPatterns: ['symfony.lock', 'config/bundles.php'],
|
|
205
|
+
dependencies: ['symfony/framework-bundle'],
|
|
206
|
+
},
|
|
207
|
+
];
|
|
208
|
+
//# sourceMappingURL=types.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../../src/speculative/templates/types.ts"],"names":[],"mappings":"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"}
|