@optave/codegraph 3.3.1 → 3.4.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/README.md +31 -28
- package/dist/ast-analysis/engine.d.ts +15 -13
- package/dist/ast-analysis/engine.d.ts.map +1 -1
- package/dist/ast-analysis/engine.js +33 -25
- package/dist/ast-analysis/engine.js.map +1 -1
- package/dist/ast-analysis/metrics.d.ts +4 -18
- package/dist/ast-analysis/metrics.d.ts.map +1 -1
- package/dist/ast-analysis/metrics.js.map +1 -1
- package/dist/ast-analysis/rules/csharp.d.ts +6 -23
- package/dist/ast-analysis/rules/csharp.d.ts.map +1 -1
- package/dist/ast-analysis/rules/csharp.js +0 -3
- package/dist/ast-analysis/rules/csharp.js.map +1 -1
- package/dist/ast-analysis/rules/go.d.ts +6 -23
- package/dist/ast-analysis/rules/go.d.ts.map +1 -1
- package/dist/ast-analysis/rules/go.js +0 -3
- package/dist/ast-analysis/rules/go.js.map +1 -1
- package/dist/ast-analysis/rules/index.d.ts +6 -30
- package/dist/ast-analysis/rules/index.d.ts.map +1 -1
- package/dist/ast-analysis/rules/index.js +0 -5
- package/dist/ast-analysis/rules/index.js.map +1 -1
- package/dist/ast-analysis/rules/java.d.ts +6 -23
- package/dist/ast-analysis/rules/java.d.ts.map +1 -1
- package/dist/ast-analysis/rules/java.js +0 -3
- package/dist/ast-analysis/rules/java.js.map +1 -1
- package/dist/ast-analysis/rules/javascript.d.ts +6 -30
- package/dist/ast-analysis/rules/javascript.d.ts.map +1 -1
- package/dist/ast-analysis/rules/javascript.js +0 -5
- package/dist/ast-analysis/rules/javascript.js.map +1 -1
- package/dist/ast-analysis/rules/php.d.ts +6 -23
- package/dist/ast-analysis/rules/php.d.ts.map +1 -1
- package/dist/ast-analysis/rules/php.js +0 -3
- package/dist/ast-analysis/rules/php.js.map +1 -1
- package/dist/ast-analysis/rules/python.d.ts +6 -23
- package/dist/ast-analysis/rules/python.d.ts.map +1 -1
- package/dist/ast-analysis/rules/python.js +0 -3
- package/dist/ast-analysis/rules/python.js.map +1 -1
- package/dist/ast-analysis/rules/ruby.d.ts +6 -23
- package/dist/ast-analysis/rules/ruby.d.ts.map +1 -1
- package/dist/ast-analysis/rules/ruby.js +0 -3
- package/dist/ast-analysis/rules/ruby.js.map +1 -1
- package/dist/ast-analysis/rules/rust.d.ts +6 -23
- package/dist/ast-analysis/rules/rust.d.ts.map +1 -1
- package/dist/ast-analysis/rules/rust.js +0 -3
- package/dist/ast-analysis/rules/rust.js.map +1 -1
- package/dist/ast-analysis/shared.d.ts +11 -105
- package/dist/ast-analysis/shared.d.ts.map +1 -1
- package/dist/ast-analysis/shared.js +0 -27
- package/dist/ast-analysis/shared.js.map +1 -1
- package/dist/ast-analysis/visitor-utils.d.ts +36 -11
- package/dist/ast-analysis/visitor-utils.d.ts.map +1 -1
- package/dist/ast-analysis/visitor-utils.js.map +1 -1
- package/dist/ast-analysis/visitor.d.ts +2 -94
- package/dist/ast-analysis/visitor.d.ts.map +1 -1
- package/dist/ast-analysis/visitor.js +0 -16
- package/dist/ast-analysis/visitor.js.map +1 -1
- package/dist/ast-analysis/visitors/ast-store-visitor.d.ts +2 -10
- package/dist/ast-analysis/visitors/ast-store-visitor.d.ts.map +1 -1
- package/dist/ast-analysis/visitors/ast-store-visitor.js +10 -20
- package/dist/ast-analysis/visitors/ast-store-visitor.js.map +1 -1
- package/dist/ast-analysis/visitors/cfg-conditionals.d.ts +5 -0
- package/dist/ast-analysis/visitors/cfg-conditionals.d.ts.map +1 -0
- package/dist/ast-analysis/visitors/cfg-conditionals.js +166 -0
- package/dist/ast-analysis/visitors/cfg-conditionals.js.map +1 -0
- package/dist/ast-analysis/visitors/cfg-loops.d.ts +7 -0
- package/dist/ast-analysis/visitors/cfg-loops.d.ts.map +1 -0
- package/dist/ast-analysis/visitors/cfg-loops.js +73 -0
- package/dist/ast-analysis/visitors/cfg-loops.js.map +1 -0
- package/dist/ast-analysis/visitors/cfg-shared.d.ts +56 -0
- package/dist/ast-analysis/visitors/cfg-shared.d.ts.map +1 -0
- package/dist/ast-analysis/visitors/cfg-shared.js +107 -0
- package/dist/ast-analysis/visitors/cfg-shared.js.map +1 -0
- package/dist/ast-analysis/visitors/cfg-try-catch.d.ts +4 -0
- package/dist/ast-analysis/visitors/cfg-try-catch.d.ts.map +1 -0
- package/dist/ast-analysis/visitors/cfg-try-catch.js +100 -0
- package/dist/ast-analysis/visitors/cfg-try-catch.js.map +1 -0
- package/dist/ast-analysis/visitors/cfg-visitor.d.ts +4 -7
- package/dist/ast-analysis/visitors/cfg-visitor.d.ts.map +1 -1
- package/dist/ast-analysis/visitors/cfg-visitor.js +12 -491
- package/dist/ast-analysis/visitors/cfg-visitor.js.map +1 -1
- package/dist/ast-analysis/visitors/complexity-visitor.d.ts +6 -15
- package/dist/ast-analysis/visitors/complexity-visitor.d.ts.map +1 -1
- package/dist/ast-analysis/visitors/complexity-visitor.js +6 -41
- package/dist/ast-analysis/visitors/complexity-visitor.js.map +1 -1
- package/dist/ast-analysis/visitors/dataflow-visitor.d.ts +4 -7
- package/dist/ast-analysis/visitors/dataflow-visitor.d.ts.map +1 -1
- package/dist/ast-analysis/visitors/dataflow-visitor.js +19 -33
- package/dist/ast-analysis/visitors/dataflow-visitor.js.map +1 -1
- package/dist/cli/commands/ast.d.ts +2 -8
- package/dist/cli/commands/ast.d.ts.map +1 -1
- package/dist/cli/commands/ast.js.map +1 -1
- package/dist/cli/commands/audit.d.ts +2 -8
- package/dist/cli/commands/audit.d.ts.map +1 -1
- package/dist/cli/commands/audit.js.map +1 -1
- package/dist/cli/commands/batch.d.ts +2 -8
- package/dist/cli/commands/batch.d.ts.map +1 -1
- package/dist/cli/commands/batch.js +11 -4
- package/dist/cli/commands/batch.js.map +1 -1
- package/dist/cli/commands/branch-compare.d.ts +2 -6
- package/dist/cli/commands/branch-compare.d.ts.map +1 -1
- package/dist/cli/commands/branch-compare.js.map +1 -1
- package/dist/cli/commands/brief.d.ts +2 -6
- package/dist/cli/commands/brief.d.ts.map +1 -1
- package/dist/cli/commands/brief.js.map +1 -1
- package/dist/cli/commands/build.d.ts +2 -6
- package/dist/cli/commands/build.d.ts.map +1 -1
- package/dist/cli/commands/build.js +1 -1
- package/dist/cli/commands/build.js.map +1 -1
- package/dist/cli/commands/cfg.d.ts +2 -9
- package/dist/cli/commands/cfg.d.ts.map +1 -1
- package/dist/cli/commands/cfg.js.map +1 -1
- package/dist/cli/commands/check.d.ts +2 -7
- package/dist/cli/commands/check.d.ts.map +1 -1
- package/dist/cli/commands/check.js.map +1 -1
- package/dist/cli/commands/children.d.ts +2 -8
- package/dist/cli/commands/children.d.ts.map +1 -1
- package/dist/cli/commands/children.js.map +1 -1
- package/dist/cli/commands/co-change.d.ts +2 -6
- package/dist/cli/commands/co-change.d.ts.map +1 -1
- package/dist/cli/commands/co-change.js +9 -5
- package/dist/cli/commands/co-change.js.map +1 -1
- package/dist/cli/commands/communities.d.ts +2 -7
- package/dist/cli/commands/communities.d.ts.map +1 -1
- package/dist/cli/commands/communities.js.map +1 -1
- package/dist/cli/commands/complexity.d.ts +2 -8
- package/dist/cli/commands/complexity.d.ts.map +1 -1
- package/dist/cli/commands/complexity.js.map +1 -1
- package/dist/cli/commands/context.d.ts +2 -9
- package/dist/cli/commands/context.d.ts.map +1 -1
- package/dist/cli/commands/context.js.map +1 -1
- package/dist/cli/commands/cycles.d.ts +2 -6
- package/dist/cli/commands/cycles.d.ts.map +1 -1
- package/dist/cli/commands/cycles.js.map +1 -1
- package/dist/cli/commands/dataflow.d.ts +2 -9
- package/dist/cli/commands/dataflow.d.ts.map +1 -1
- package/dist/cli/commands/dataflow.js.map +1 -1
- package/dist/cli/commands/deps.d.ts +2 -7
- package/dist/cli/commands/deps.d.ts.map +1 -1
- package/dist/cli/commands/deps.js.map +1 -1
- package/dist/cli/commands/diff-impact.d.ts +2 -6
- package/dist/cli/commands/diff-impact.d.ts.map +1 -1
- package/dist/cli/commands/diff-impact.js.map +1 -1
- package/dist/cli/commands/embed.d.ts +2 -7
- package/dist/cli/commands/embed.d.ts.map +1 -1
- package/dist/cli/commands/embed.js +2 -1
- package/dist/cli/commands/embed.js.map +1 -1
- package/dist/cli/commands/export.d.ts +2 -6
- package/dist/cli/commands/export.d.ts.map +1 -1
- package/dist/cli/commands/export.js.map +1 -1
- package/dist/cli/commands/exports.d.ts +2 -7
- package/dist/cli/commands/exports.d.ts.map +1 -1
- package/dist/cli/commands/exports.js.map +1 -1
- package/dist/cli/commands/flow.d.ts +2 -9
- package/dist/cli/commands/flow.d.ts.map +1 -1
- package/dist/cli/commands/flow.js.map +1 -1
- package/dist/cli/commands/fn-impact.d.ts +2 -9
- package/dist/cli/commands/fn-impact.d.ts.map +1 -1
- package/dist/cli/commands/fn-impact.js.map +1 -1
- package/dist/cli/commands/impact.d.ts +2 -6
- package/dist/cli/commands/impact.d.ts.map +1 -1
- package/dist/cli/commands/impact.js.map +1 -1
- package/dist/cli/commands/implementations.d.ts +2 -9
- package/dist/cli/commands/implementations.d.ts.map +1 -1
- package/dist/cli/commands/implementations.js.map +1 -1
- package/dist/cli/commands/info.d.ts +2 -5
- package/dist/cli/commands/info.d.ts.map +1 -1
- package/dist/cli/commands/info.js.map +1 -1
- package/dist/cli/commands/interfaces.d.ts +2 -9
- package/dist/cli/commands/interfaces.d.ts.map +1 -1
- package/dist/cli/commands/interfaces.js.map +1 -1
- package/dist/cli/commands/map.d.ts +2 -6
- package/dist/cli/commands/map.d.ts.map +1 -1
- package/dist/cli/commands/map.js.map +1 -1
- package/dist/cli/commands/mcp.d.ts +2 -6
- package/dist/cli/commands/mcp.d.ts.map +1 -1
- package/dist/cli/commands/mcp.js +4 -5
- package/dist/cli/commands/mcp.js.map +1 -1
- package/dist/cli/commands/models.d.ts +2 -5
- package/dist/cli/commands/models.d.ts.map +1 -1
- package/dist/cli/commands/models.js +5 -3
- package/dist/cli/commands/models.js.map +1 -1
- package/dist/cli/commands/owners.d.ts +2 -7
- package/dist/cli/commands/owners.d.ts.map +1 -1
- package/dist/cli/commands/owners.js.map +1 -1
- package/dist/cli/commands/path.d.ts +2 -7
- package/dist/cli/commands/path.d.ts.map +1 -1
- package/dist/cli/commands/path.js +7 -2
- package/dist/cli/commands/path.js.map +1 -1
- package/dist/cli/commands/plot.d.ts +2 -6
- package/dist/cli/commands/plot.d.ts.map +1 -1
- package/dist/cli/commands/plot.js +3 -1
- package/dist/cli/commands/plot.js.map +1 -1
- package/dist/cli/commands/query.d.ts +2 -9
- package/dist/cli/commands/query.d.ts.map +1 -1
- package/dist/cli/commands/query.js.map +1 -1
- package/dist/cli/commands/registry.d.ts +2 -15
- package/dist/cli/commands/registry.d.ts.map +1 -1
- package/dist/cli/commands/registry.js.map +1 -1
- package/dist/cli/commands/roles.d.ts +2 -8
- package/dist/cli/commands/roles.d.ts.map +1 -1
- package/dist/cli/commands/roles.js.map +1 -1
- package/dist/cli/commands/search.d.ts +2 -8
- package/dist/cli/commands/search.d.ts.map +1 -1
- package/dist/cli/commands/search.js +1 -5
- package/dist/cli/commands/search.js.map +1 -1
- package/dist/cli/commands/sequence.d.ts +2 -9
- package/dist/cli/commands/sequence.d.ts.map +1 -1
- package/dist/cli/commands/sequence.js.map +1 -1
- package/dist/cli/commands/snapshot.d.ts +2 -10
- package/dist/cli/commands/snapshot.d.ts.map +1 -1
- package/dist/cli/commands/snapshot.js.map +1 -1
- package/dist/cli/commands/stats.d.ts +2 -6
- package/dist/cli/commands/stats.d.ts.map +1 -1
- package/dist/cli/commands/stats.js.map +1 -1
- package/dist/cli/commands/structure.d.ts +2 -6
- package/dist/cli/commands/structure.d.ts.map +1 -1
- package/dist/cli/commands/structure.js.map +1 -1
- package/dist/cli/commands/triage.d.ts +2 -7
- package/dist/cli/commands/triage.d.ts.map +1 -1
- package/dist/cli/commands/triage.js.map +1 -1
- package/dist/cli/commands/watch.d.ts +2 -5
- package/dist/cli/commands/watch.d.ts.map +1 -1
- package/dist/cli/commands/watch.js.map +1 -1
- package/dist/cli/commands/where.d.ts +2 -8
- package/dist/cli/commands/where.d.ts.map +1 -1
- package/dist/cli/commands/where.js +1 -1
- package/dist/cli/commands/where.js.map +1 -1
- package/dist/cli/index.d.ts +8 -17
- package/dist/cli/index.d.ts.map +1 -1
- package/dist/cli/index.js +25 -5
- package/dist/cli/index.js.map +1 -1
- package/dist/cli/shared/open-graph.d.ts +4 -7
- package/dist/cli/shared/open-graph.d.ts.map +1 -1
- package/dist/cli/shared/open-graph.js +0 -4
- package/dist/cli/shared/open-graph.js.map +1 -1
- package/dist/cli/shared/options.d.ts +8 -15
- package/dist/cli/shared/options.d.ts.map +1 -1
- package/dist/cli/shared/options.js +0 -2
- package/dist/cli/shared/options.js.map +1 -1
- package/dist/cli/shared/output.d.ts +1 -1
- package/dist/cli/shared/output.d.ts.map +1 -1
- package/dist/cli/shared/output.js.map +1 -1
- package/dist/cli/types.d.ts +30 -0
- package/dist/cli/types.d.ts.map +1 -0
- package/dist/cli/types.js +2 -0
- package/dist/cli/types.js.map +1 -0
- package/dist/cli.d.ts.map +1 -1
- package/dist/cli.js +2 -2
- package/dist/cli.js.map +1 -1
- package/dist/db/connection.d.ts +30 -17
- package/dist/db/connection.d.ts.map +1 -1
- package/dist/db/connection.js +92 -11
- package/dist/db/connection.js.map +1 -1
- package/dist/db/index.d.ts +5 -4
- package/dist/db/index.d.ts.map +1 -1
- package/dist/db/index.js +2 -2
- package/dist/db/index.js.map +1 -1
- package/dist/db/migrations.d.ts +8 -5
- package/dist/db/migrations.d.ts.map +1 -1
- package/dist/db/migrations.js +13 -3
- package/dist/db/migrations.js.map +1 -1
- package/dist/db/query-builder.d.ts +28 -46
- package/dist/db/query-builder.d.ts.map +1 -1
- package/dist/db/query-builder.js +2 -21
- package/dist/db/query-builder.js.map +1 -1
- package/dist/db/repository/base.d.ts +38 -101
- package/dist/db/repository/base.d.ts.map +1 -1
- package/dist/db/repository/base.js +6 -38
- package/dist/db/repository/base.js.map +1 -1
- package/dist/db/repository/build-stmts.d.ts +7 -16
- package/dist/db/repository/build-stmts.d.ts.map +1 -1
- package/dist/db/repository/build-stmts.js +0 -17
- package/dist/db/repository/build-stmts.js.map +1 -1
- package/dist/db/repository/cached-stmt.d.ts +2 -6
- package/dist/db/repository/cached-stmt.d.ts.map +1 -1
- package/dist/db/repository/cached-stmt.js +0 -5
- package/dist/db/repository/cached-stmt.js.map +1 -1
- package/dist/db/repository/cfg.d.ts +21 -14
- package/dist/db/repository/cfg.d.ts.map +1 -1
- package/dist/db/repository/cfg.js +0 -11
- package/dist/db/repository/cfg.js.map +1 -1
- package/dist/db/repository/cochange.d.ts +4 -10
- package/dist/db/repository/cochange.d.ts.map +1 -1
- package/dist/db/repository/cochange.js +0 -7
- package/dist/db/repository/cochange.js.map +1 -1
- package/dist/db/repository/complexity.d.ts +2 -10
- package/dist/db/repository/complexity.d.ts.map +1 -1
- package/dist/db/repository/complexity.js +0 -3
- package/dist/db/repository/complexity.js.map +1 -1
- package/dist/db/repository/dataflow.d.ts +2 -3
- package/dist/db/repository/dataflow.d.ts.map +1 -1
- package/dist/db/repository/dataflow.js +2 -3
- package/dist/db/repository/dataflow.js.map +1 -1
- package/dist/db/repository/edges.d.ts +25 -132
- package/dist/db/repository/edges.d.ts.map +1 -1
- package/dist/db/repository/edges.js +2 -58
- package/dist/db/repository/edges.js.map +1 -1
- package/dist/db/repository/embeddings.d.ts +4 -10
- package/dist/db/repository/embeddings.d.ts.map +1 -1
- package/dist/db/repository/embeddings.js +1 -8
- package/dist/db/repository/embeddings.js.map +1 -1
- package/dist/db/repository/graph-read.d.ts +5 -28
- package/dist/db/repository/graph-read.d.ts.map +1 -1
- package/dist/db/repository/graph-read.js +0 -8
- package/dist/db/repository/graph-read.js.map +1 -1
- package/dist/db/repository/in-memory-repository.d.ts +73 -141
- package/dist/db/repository/in-memory-repository.d.ts.map +1 -1
- package/dist/db/repository/in-memory-repository.js +28 -20
- package/dist/db/repository/in-memory-repository.js.map +1 -1
- package/dist/db/repository/index.d.ts +13 -13
- package/dist/db/repository/index.d.ts.map +1 -1
- package/dist/db/repository/index.js +1 -1
- package/dist/db/repository/index.js.map +1 -1
- package/dist/db/repository/nodes.d.ts +40 -105
- package/dist/db/repository/nodes.d.ts.map +1 -1
- package/dist/db/repository/nodes.js +29 -74
- package/dist/db/repository/nodes.js.map +1 -1
- package/dist/db/repository/sqlite-repository.d.ts +48 -93
- package/dist/db/repository/sqlite-repository.d.ts.map +1 -1
- package/dist/db/repository/sqlite-repository.js +7 -2
- package/dist/db/repository/sqlite-repository.js.map +1 -1
- package/dist/domain/analysis/brief.d.ts +16 -7
- package/dist/domain/analysis/brief.d.ts.map +1 -1
- package/dist/domain/analysis/brief.js +0 -7
- package/dist/domain/analysis/brief.js.map +1 -1
- package/dist/domain/analysis/context.d.ts +240 -2
- package/dist/domain/analysis/context.d.ts.map +1 -1
- package/dist/domain/analysis/context.js +37 -32
- package/dist/domain/analysis/context.js.map +1 -1
- package/dist/domain/analysis/dependencies.d.ts +161 -36
- package/dist/domain/analysis/dependencies.d.ts.map +1 -1
- package/dist/domain/analysis/dependencies.js +165 -27
- package/dist/domain/analysis/dependencies.js.map +1 -1
- package/dist/domain/analysis/diff-impact.d.ts +76 -0
- package/dist/domain/analysis/diff-impact.d.ts.map +1 -0
- package/dist/domain/analysis/diff-impact.js +282 -0
- package/dist/domain/analysis/diff-impact.js.map +1 -0
- package/dist/domain/analysis/exports.d.ts +7 -1
- package/dist/domain/analysis/exports.d.ts.map +1 -1
- package/dist/domain/analysis/exports.js +47 -33
- package/dist/domain/analysis/exports.js.map +1 -1
- package/dist/domain/analysis/fn-impact.d.ts +66 -0
- package/dist/domain/analysis/fn-impact.d.ts.map +1 -0
- package/dist/domain/analysis/fn-impact.js +189 -0
- package/dist/domain/analysis/fn-impact.js.map +1 -0
- package/dist/domain/analysis/impact.d.ts +7 -35
- package/dist/domain/analysis/impact.d.ts.map +1 -1
- package/dist/domain/analysis/impact.js +7 -607
- package/dist/domain/analysis/impact.js.map +1 -1
- package/dist/domain/analysis/implementations.d.ts +28 -28
- package/dist/domain/analysis/implementations.d.ts.map +1 -1
- package/dist/domain/analysis/implementations.js +0 -10
- package/dist/domain/analysis/implementations.js.map +1 -1
- package/dist/domain/analysis/module-map.d.ts +44 -24
- package/dist/domain/analysis/module-map.d.ts.map +1 -1
- package/dist/domain/analysis/module-map.js +16 -6
- package/dist/domain/analysis/module-map.js.map +1 -1
- package/dist/domain/analysis/roles.d.ts +13 -1
- package/dist/domain/analysis/roles.d.ts.map +1 -1
- package/dist/domain/analysis/roles.js +10 -2
- package/dist/domain/analysis/roles.js.map +1 -1
- package/dist/domain/analysis/symbol-lookup.d.ts +120 -7
- package/dist/domain/analysis/symbol-lookup.d.ts.map +1 -1
- package/dist/domain/analysis/symbol-lookup.js +11 -7
- package/dist/domain/analysis/symbol-lookup.js.map +1 -1
- package/dist/domain/graph/builder/context.d.ts +31 -67
- package/dist/domain/graph/builder/context.d.ts.map +1 -1
- package/dist/domain/graph/builder/context.js +0 -36
- package/dist/domain/graph/builder/context.js.map +1 -1
- package/dist/domain/graph/builder/helpers.d.ts +13 -14
- package/dist/domain/graph/builder/helpers.d.ts.map +1 -1
- package/dist/domain/graph/builder/helpers.js +63 -25
- package/dist/domain/graph/builder/helpers.js.map +1 -1
- package/dist/domain/graph/builder/incremental.d.ts +49 -13
- package/dist/domain/graph/builder/incremental.d.ts.map +1 -1
- package/dist/domain/graph/builder/incremental.js +10 -19
- package/dist/domain/graph/builder/incremental.js.map +1 -1
- package/dist/domain/graph/builder/pipeline.d.ts +2 -7
- package/dist/domain/graph/builder/pipeline.d.ts.map +1 -1
- package/dist/domain/graph/builder/pipeline.js +27 -19
- package/dist/domain/graph/builder/pipeline.js.map +1 -1
- package/dist/domain/graph/builder/stages/build-edges.d.ts +2 -4
- package/dist/domain/graph/builder/stages/build-edges.d.ts.map +1 -1
- package/dist/domain/graph/builder/stages/build-edges.js +18 -14
- package/dist/domain/graph/builder/stages/build-edges.js.map +1 -1
- package/dist/domain/graph/builder/stages/build-structure.d.ts +2 -4
- package/dist/domain/graph/builder/stages/build-structure.d.ts.map +1 -1
- package/dist/domain/graph/builder/stages/build-structure.js +159 -63
- package/dist/domain/graph/builder/stages/build-structure.js.map +1 -1
- package/dist/domain/graph/builder/stages/collect-files.d.ts +2 -4
- package/dist/domain/graph/builder/stages/collect-files.d.ts.map +1 -1
- package/dist/domain/graph/builder/stages/collect-files.js +0 -3
- package/dist/domain/graph/builder/stages/collect-files.js.map +1 -1
- package/dist/domain/graph/builder/stages/detect-changes.d.ts +2 -4
- package/dist/domain/graph/builder/stages/detect-changes.d.ts.map +1 -1
- package/dist/domain/graph/builder/stages/detect-changes.js +32 -39
- package/dist/domain/graph/builder/stages/detect-changes.js.map +1 -1
- package/dist/domain/graph/builder/stages/finalize.d.ts +2 -4
- package/dist/domain/graph/builder/stages/finalize.d.ts.map +1 -1
- package/dist/domain/graph/builder/stages/finalize.js +102 -59
- package/dist/domain/graph/builder/stages/finalize.js.map +1 -1
- package/dist/domain/graph/builder/stages/insert-nodes.d.ts +2 -4
- package/dist/domain/graph/builder/stages/insert-nodes.d.ts.map +1 -1
- package/dist/domain/graph/builder/stages/insert-nodes.js +57 -33
- package/dist/domain/graph/builder/stages/insert-nodes.js.map +1 -1
- package/dist/domain/graph/builder/stages/parse-files.d.ts +2 -4
- package/dist/domain/graph/builder/stages/parse-files.d.ts.map +1 -1
- package/dist/domain/graph/builder/stages/parse-files.js +0 -3
- package/dist/domain/graph/builder/stages/parse-files.js.map +1 -1
- package/dist/domain/graph/builder/stages/resolve-imports.d.ts +5 -17
- package/dist/domain/graph/builder/stages/resolve-imports.d.ts.map +1 -1
- package/dist/domain/graph/builder/stages/resolve-imports.js +58 -33
- package/dist/domain/graph/builder/stages/resolve-imports.js.map +1 -1
- package/dist/domain/graph/builder/stages/run-analyses.d.ts +2 -4
- package/dist/domain/graph/builder/stages/run-analyses.d.ts.map +1 -1
- package/dist/domain/graph/builder/stages/run-analyses.js +3 -4
- package/dist/domain/graph/builder/stages/run-analyses.js.map +1 -1
- package/dist/domain/graph/builder.d.ts +3 -3
- package/dist/domain/graph/builder.d.ts.map +1 -1
- package/dist/domain/graph/builder.js.map +1 -1
- package/dist/domain/graph/change-journal.d.ts +39 -46
- package/dist/domain/graph/change-journal.d.ts.map +1 -1
- package/dist/domain/graph/change-journal.js +1 -24
- package/dist/domain/graph/change-journal.js.map +1 -1
- package/dist/domain/graph/cycles.d.ts +10 -17
- package/dist/domain/graph/cycles.d.ts.map +1 -1
- package/dist/domain/graph/cycles.js +2 -22
- package/dist/domain/graph/cycles.js.map +1 -1
- package/dist/domain/graph/journal.d.ts +13 -25
- package/dist/domain/graph/journal.d.ts.map +1 -1
- package/dist/domain/graph/journal.js +0 -14
- package/dist/domain/graph/journal.js.map +1 -1
- package/dist/domain/graph/resolve.d.ts +20 -25
- package/dist/domain/graph/resolve.d.ts.map +1 -1
- package/dist/domain/graph/resolve.js +70 -15
- package/dist/domain/graph/resolve.js.map +1 -1
- package/dist/domain/graph/watcher.d.ts +3 -1
- package/dist/domain/graph/watcher.d.ts.map +1 -1
- package/dist/domain/graph/watcher.js +11 -5
- package/dist/domain/graph/watcher.js.map +1 -1
- package/dist/domain/parser.d.ts +26 -72
- package/dist/domain/parser.d.ts.map +1 -1
- package/dist/domain/parser.js +42 -51
- package/dist/domain/parser.js.map +1 -1
- package/dist/domain/queries.d.ts +21 -13
- package/dist/domain/queries.d.ts.map +1 -1
- package/dist/domain/queries.js +4 -3
- package/dist/domain/queries.js.map +1 -1
- package/dist/domain/search/generator.d.ts +5 -9
- package/dist/domain/search/generator.d.ts.map +1 -1
- package/dist/domain/search/generator.js +4 -8
- package/dist/domain/search/generator.js.map +1 -1
- package/dist/domain/search/index.d.ts +14 -7
- package/dist/domain/search/index.d.ts.map +1 -1
- package/dist/domain/search/index.js.map +1 -1
- package/dist/domain/search/models.d.ts +17 -60
- package/dist/domain/search/models.d.ts.map +1 -1
- package/dist/domain/search/models.js +13 -9
- package/dist/domain/search/models.js.map +1 -1
- package/dist/domain/search/search/cli-formatter.d.ts +9 -5
- package/dist/domain/search/search/cli-formatter.d.ts.map +1 -1
- package/dist/domain/search/search/cli-formatter.js +4 -10
- package/dist/domain/search/search/cli-formatter.js.map +1 -1
- package/dist/domain/search/search/filters.d.ts +8 -18
- package/dist/domain/search/search/filters.d.ts.map +1 -1
- package/dist/domain/search/search/filters.js +0 -17
- package/dist/domain/search/search/filters.js.map +1 -1
- package/dist/domain/search/search/hybrid.d.ts +20 -21
- package/dist/domain/search/search/hybrid.d.ts.map +1 -1
- package/dist/domain/search/search/hybrid.js +2 -13
- package/dist/domain/search/search/hybrid.js.map +1 -1
- package/dist/domain/search/search/keyword.d.ts +13 -12
- package/dist/domain/search/search/keyword.d.ts.map +1 -1
- package/dist/domain/search/search/keyword.js +2 -10
- package/dist/domain/search/search/keyword.js.map +1 -1
- package/dist/domain/search/search/prepare.d.ts +23 -11
- package/dist/domain/search/search/prepare.d.ts.map +1 -1
- package/dist/domain/search/search/prepare.js +0 -7
- package/dist/domain/search/search/prepare.js.map +1 -1
- package/dist/domain/search/search/semantic.d.ts +36 -29
- package/dist/domain/search/search/semantic.d.ts.map +1 -1
- package/dist/domain/search/search/semantic.js +3 -17
- package/dist/domain/search/search/semantic.js.map +1 -1
- package/dist/domain/search/stores/fts5.d.ts +3 -4
- package/dist/domain/search/stores/fts5.d.ts.map +1 -1
- package/dist/domain/search/stores/fts5.js +1 -5
- package/dist/domain/search/stores/fts5.js.map +1 -1
- package/dist/domain/search/stores/sqlite-blob.d.ts +1 -23
- package/dist/domain/search/stores/sqlite-blob.d.ts.map +1 -1
- package/dist/domain/search/stores/sqlite-blob.js +3 -9
- package/dist/domain/search/stores/sqlite-blob.js.map +1 -1
- package/dist/domain/search/strategies/source.d.ts +2 -1
- package/dist/domain/search/strategies/source.d.ts.map +1 -1
- package/dist/domain/search/strategies/source.js.map +1 -1
- package/dist/domain/search/strategies/structured.d.ts +6 -2
- package/dist/domain/search/strategies/structured.d.ts.map +1 -1
- package/dist/domain/search/strategies/structured.js +0 -5
- package/dist/domain/search/strategies/structured.js.map +1 -1
- package/dist/domain/search/strategies/text-utils.d.ts +3 -5
- package/dist/domain/search/strategies/text-utils.d.ts.map +1 -1
- package/dist/domain/search/strategies/text-utils.js +5 -7
- package/dist/domain/search/strategies/text-utils.js.map +1 -1
- package/dist/extractors/csharp.d.ts +2 -8
- package/dist/extractors/csharp.d.ts.map +1 -1
- package/dist/extractors/csharp.js +32 -21
- package/dist/extractors/csharp.js.map +1 -1
- package/dist/extractors/go.d.ts +2 -8
- package/dist/extractors/go.d.ts.map +1 -1
- package/dist/extractors/go.js +74 -12
- package/dist/extractors/go.js.map +1 -1
- package/dist/extractors/hcl.d.ts +2 -7
- package/dist/extractors/hcl.d.ts.map +1 -1
- package/dist/extractors/hcl.js +25 -16
- package/dist/extractors/hcl.js.map +1 -1
- package/dist/extractors/helpers.d.ts +12 -6
- package/dist/extractors/helpers.d.ts.map +1 -1
- package/dist/extractors/helpers.js +11 -5
- package/dist/extractors/helpers.js.map +1 -1
- package/dist/extractors/index.d.ts +9 -9
- package/dist/extractors/index.d.ts.map +1 -1
- package/dist/extractors/index.js.map +1 -1
- package/dist/extractors/java.d.ts +2 -8
- package/dist/extractors/java.d.ts.map +1 -1
- package/dist/extractors/java.js +7 -4
- package/dist/extractors/java.js.map +1 -1
- package/dist/extractors/javascript.d.ts +2 -75
- package/dist/extractors/javascript.d.ts.map +1 -1
- package/dist/extractors/javascript.js +6 -5
- package/dist/extractors/javascript.js.map +1 -1
- package/dist/extractors/php.d.ts +2 -8
- package/dist/extractors/php.d.ts.map +1 -1
- package/dist/extractors/php.js +15 -9
- package/dist/extractors/php.js.map +1 -1
- package/dist/extractors/python.d.ts +2 -8
- package/dist/extractors/python.d.ts.map +1 -1
- package/dist/extractors/python.js +25 -13
- package/dist/extractors/python.js.map +1 -1
- package/dist/extractors/ruby.d.ts +2 -7
- package/dist/extractors/ruby.d.ts.map +1 -1
- package/dist/extractors/ruby.js +8 -4
- package/dist/extractors/ruby.js.map +1 -1
- package/dist/extractors/rust.d.ts +2 -8
- package/dist/extractors/rust.d.ts.map +1 -1
- package/dist/extractors/rust.js +10 -7
- package/dist/extractors/rust.js.map +1 -1
- package/dist/features/ast.d.ts +59 -28
- package/dist/features/ast.d.ts.map +1 -1
- package/dist/features/ast.js +14 -53
- package/dist/features/ast.js.map +1 -1
- package/dist/features/audit.d.ts +13 -4
- package/dist/features/audit.d.ts.map +1 -1
- package/dist/features/audit.js +10 -20
- package/dist/features/audit.js.map +1 -1
- package/dist/features/batch.d.ts +44 -100
- package/dist/features/batch.d.ts.map +1 -1
- package/dist/features/batch.js +0 -41
- package/dist/features/batch.js.map +1 -1
- package/dist/features/boundaries.d.ts +42 -60
- package/dist/features/boundaries.d.ts.map +1 -1
- package/dist/features/boundaries.js +9 -87
- package/dist/features/boundaries.js.map +1 -1
- package/dist/features/branch-compare.d.ts +69 -50
- package/dist/features/branch-compare.d.ts.map +1 -1
- package/dist/features/branch-compare.js +24 -49
- package/dist/features/branch-compare.js.map +1 -1
- package/dist/features/cfg.d.ts +70 -48
- package/dist/features/cfg.d.ts.map +1 -1
- package/dist/features/cfg.js +79 -59
- package/dist/features/cfg.js.map +1 -1
- package/dist/features/check.d.ts +75 -90
- package/dist/features/check.d.ts.map +1 -1
- package/dist/features/check.js +2 -47
- package/dist/features/check.js.map +1 -1
- package/dist/features/cochange.d.ts +47 -98
- package/dist/features/cochange.d.ts.map +1 -1
- package/dist/features/cochange.js +6 -59
- package/dist/features/cochange.js.map +1 -1
- package/dist/features/communities.d.ts +18 -34
- package/dist/features/communities.d.ts.map +1 -1
- package/dist/features/communities.js +9 -37
- package/dist/features/communities.js.map +1 -1
- package/dist/features/complexity-query.d.ts +37 -0
- package/dist/features/complexity-query.d.ts.map +1 -0
- package/dist/features/complexity-query.js +263 -0
- package/dist/features/complexity-query.js.map +1 -0
- package/dist/features/complexity.d.ts +37 -118
- package/dist/features/complexity.d.ts.map +1 -1
- package/dist/features/complexity.js +46 -352
- package/dist/features/complexity.js.map +1 -1
- package/dist/features/dataflow.d.ts +56 -65
- package/dist/features/dataflow.d.ts.map +1 -1
- package/dist/features/dataflow.js +0 -47
- package/dist/features/dataflow.js.map +1 -1
- package/dist/features/export.d.ts +15 -9
- package/dist/features/export.d.ts.map +1 -1
- package/dist/features/export.js +20 -16
- package/dist/features/export.js.map +1 -1
- package/dist/features/flow.d.ts +17 -45
- package/dist/features/flow.d.ts.map +1 -1
- package/dist/features/flow.js +4 -27
- package/dist/features/flow.js.map +1 -1
- package/dist/features/graph-enrichment.d.ts +43 -53
- package/dist/features/graph-enrichment.d.ts.map +1 -1
- package/dist/features/graph-enrichment.js +13 -18
- package/dist/features/graph-enrichment.js.map +1 -1
- package/dist/features/manifesto.d.ts +18 -41
- package/dist/features/manifesto.d.ts.map +1 -1
- package/dist/features/manifesto.js +20 -37
- package/dist/features/manifesto.js.map +1 -1
- package/dist/features/owners.d.ts +44 -98
- package/dist/features/owners.d.ts.map +1 -1
- package/dist/features/owners.js +2 -54
- package/dist/features/owners.js.map +1 -1
- package/dist/features/sequence.d.ts +41 -32
- package/dist/features/sequence.d.ts.map +1 -1
- package/dist/features/sequence.js +7 -36
- package/dist/features/sequence.js.map +1 -1
- package/dist/features/shared/find-nodes.d.ts +6 -10
- package/dist/features/shared/find-nodes.d.ts.map +1 -1
- package/dist/features/shared/find-nodes.js +1 -10
- package/dist/features/shared/find-nodes.js.map +1 -1
- package/dist/features/snapshot.d.ts +16 -55
- package/dist/features/snapshot.d.ts.map +1 -1
- package/dist/features/snapshot.js +1 -40
- package/dist/features/snapshot.js.map +1 -1
- package/dist/features/structure-query.d.ts +76 -0
- package/dist/features/structure-query.d.ts.map +1 -0
- package/dist/features/structure-query.js +245 -0
- package/dist/features/structure-query.js.map +1 -0
- package/dist/features/structure.d.ts +25 -28
- package/dist/features/structure.d.ts.map +1 -1
- package/dist/features/structure.js +224 -292
- package/dist/features/structure.js.map +1 -1
- package/dist/features/triage.d.ts +45 -11
- package/dist/features/triage.d.ts.map +1 -1
- package/dist/features/triage.js +9 -26
- package/dist/features/triage.js.map +1 -1
- package/dist/graph/algorithms/bfs.d.ts +7 -8
- package/dist/graph/algorithms/bfs.d.ts.map +1 -1
- package/dist/graph/algorithms/bfs.js +1 -4
- package/dist/graph/algorithms/bfs.js.map +1 -1
- package/dist/graph/algorithms/centrality.d.ts +6 -7
- package/dist/graph/algorithms/centrality.d.ts.map +1 -1
- package/dist/graph/algorithms/centrality.js +0 -3
- package/dist/graph/algorithms/centrality.js.map +1 -1
- package/dist/graph/algorithms/index.d.ts +6 -5
- package/dist/graph/algorithms/index.d.ts.map +1 -1
- package/dist/graph/algorithms/index.js +1 -0
- package/dist/graph/algorithms/index.js.map +1 -1
- package/dist/graph/algorithms/leiden/adapter.d.ts +37 -0
- package/dist/graph/algorithms/leiden/adapter.d.ts.map +1 -0
- package/dist/graph/algorithms/leiden/adapter.js +158 -0
- package/dist/graph/algorithms/leiden/adapter.js.map +1 -0
- package/dist/graph/algorithms/leiden/cpm.d.ts +28 -0
- package/dist/graph/algorithms/leiden/cpm.d.ts.map +1 -0
- package/dist/graph/algorithms/leiden/cpm.js +48 -0
- package/dist/graph/algorithms/leiden/cpm.js.map +1 -0
- package/dist/graph/algorithms/leiden/index.d.ts +37 -0
- package/dist/graph/algorithms/leiden/index.d.ts.map +1 -0
- package/dist/graph/algorithms/leiden/index.js +142 -0
- package/dist/graph/algorithms/leiden/index.js.map +1 -0
- package/dist/graph/algorithms/leiden/modularity.d.ts +33 -0
- package/dist/graph/algorithms/leiden/modularity.d.ts.map +1 -0
- package/dist/graph/algorithms/leiden/modularity.js +80 -0
- package/dist/graph/algorithms/leiden/modularity.js.map +1 -0
- package/dist/graph/algorithms/leiden/optimiser.d.ts +62 -0
- package/dist/graph/algorithms/leiden/optimiser.d.ts.map +1 -0
- package/dist/graph/algorithms/leiden/optimiser.js +498 -0
- package/dist/graph/algorithms/leiden/optimiser.js.map +1 -0
- package/dist/graph/algorithms/leiden/partition.d.ts +44 -0
- package/dist/graph/algorithms/leiden/partition.d.ts.map +1 -0
- package/dist/graph/algorithms/leiden/partition.js +433 -0
- package/dist/graph/algorithms/leiden/partition.js.map +1 -0
- package/dist/graph/algorithms/leiden/rng.d.ts +9 -0
- package/dist/graph/algorithms/leiden/rng.d.ts.map +1 -0
- package/dist/graph/algorithms/leiden/rng.js +17 -0
- package/dist/graph/algorithms/leiden/rng.js.map +1 -0
- package/dist/graph/algorithms/louvain.d.ts +20 -4
- package/dist/graph/algorithms/louvain.d.ts.map +1 -1
- package/dist/graph/algorithms/louvain.js +15 -14
- package/dist/graph/algorithms/louvain.js.map +1 -1
- package/dist/graph/algorithms/shortest-path.d.ts +3 -5
- package/dist/graph/algorithms/shortest-path.d.ts.map +1 -1
- package/dist/graph/algorithms/shortest-path.js +2 -5
- package/dist/graph/algorithms/shortest-path.js.map +1 -1
- package/dist/graph/algorithms/tarjan.d.ts +3 -3
- package/dist/graph/algorithms/tarjan.d.ts.map +1 -1
- package/dist/graph/algorithms/tarjan.js +1 -2
- package/dist/graph/algorithms/tarjan.js.map +1 -1
- package/dist/graph/builders/dependency.d.ts +14 -11
- package/dist/graph/builders/dependency.d.ts.map +1 -1
- package/dist/graph/builders/dependency.js +2 -6
- package/dist/graph/builders/dependency.js.map +1 -1
- package/dist/graph/builders/index.d.ts +3 -3
- package/dist/graph/builders/index.d.ts.map +1 -1
- package/dist/graph/builders/index.js.map +1 -1
- package/dist/graph/builders/structure.d.ts +6 -3
- package/dist/graph/builders/structure.d.ts.map +1 -1
- package/dist/graph/builders/structure.js +5 -4
- package/dist/graph/builders/structure.js.map +1 -1
- package/dist/graph/builders/temporal.d.ts +9 -6
- package/dist/graph/builders/temporal.d.ts.map +1 -1
- package/dist/graph/builders/temporal.js +1 -3
- package/dist/graph/builders/temporal.js.map +1 -1
- package/dist/graph/classifiers/index.d.ts +2 -2
- package/dist/graph/classifiers/index.d.ts.map +1 -1
- package/dist/graph/classifiers/index.js.map +1 -1
- package/dist/graph/classifiers/risk.d.ts +25 -35
- package/dist/graph/classifiers/risk.d.ts.map +1 -1
- package/dist/graph/classifiers/risk.js +10 -16
- package/dist/graph/classifiers/risk.js.map +1 -1
- package/dist/graph/classifiers/roles.d.ts +23 -15
- package/dist/graph/classifiers/roles.d.ts.map +1 -1
- package/dist/graph/classifiers/roles.js +24 -19
- package/dist/graph/classifiers/roles.js.map +1 -1
- package/dist/graph/index.d.ts +4 -4
- package/dist/graph/index.d.ts.map +1 -1
- package/dist/graph/index.js.map +1 -1
- package/dist/graph/model.d.ts +39 -37
- package/dist/graph/model.d.ts.map +1 -1
- package/dist/graph/model.js +4 -25
- package/dist/graph/model.js.map +1 -1
- package/dist/index.cjs +0 -2
- package/dist/index.d.ts +36 -25
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js.map +1 -1
- package/dist/infrastructure/config.d.ts +177 -210
- package/dist/infrastructure/config.d.ts.map +1 -1
- package/dist/infrastructure/config.js +28 -15
- package/dist/infrastructure/config.js.map +1 -1
- package/dist/infrastructure/logger.d.ts +6 -6
- package/dist/infrastructure/logger.d.ts.map +1 -1
- package/dist/infrastructure/logger.js.map +1 -1
- package/dist/infrastructure/native.d.ts +12 -4
- package/dist/infrastructure/native.d.ts.map +1 -1
- package/dist/infrastructure/native.js +9 -5
- package/dist/infrastructure/native.js.map +1 -1
- package/dist/infrastructure/registry.d.ts +34 -22
- package/dist/infrastructure/registry.d.ts.map +1 -1
- package/dist/infrastructure/registry.js.map +1 -1
- package/dist/infrastructure/result-formatter.d.ts +1 -1
- package/dist/infrastructure/result-formatter.d.ts.map +1 -1
- package/dist/infrastructure/result-formatter.js.map +1 -1
- package/dist/infrastructure/test-filter.d.ts +3 -3
- package/dist/infrastructure/test-filter.d.ts.map +1 -1
- package/dist/infrastructure/test-filter.js.map +1 -1
- package/dist/infrastructure/update-check.d.ts +12 -10
- package/dist/infrastructure/update-check.d.ts.map +1 -1
- package/dist/infrastructure/update-check.js +0 -4
- package/dist/infrastructure/update-check.js.map +1 -1
- package/dist/mcp/index.d.ts +2 -2
- package/dist/mcp/index.d.ts.map +1 -1
- package/dist/mcp/index.js.map +1 -1
- package/dist/mcp/middleware.d.ts +13 -13
- package/dist/mcp/middleware.d.ts.map +1 -1
- package/dist/mcp/middleware.js +0 -6
- package/dist/mcp/middleware.js.map +1 -1
- package/dist/mcp/server.d.ts +21 -1
- package/dist/mcp/server.d.ts.map +1 -1
- package/dist/mcp/server.js +73 -13
- package/dist/mcp/server.js.map +1 -1
- package/dist/mcp/tool-registry.d.ts +17 -4
- package/dist/mcp/tool-registry.d.ts.map +1 -1
- package/dist/mcp/tool-registry.js +9 -7
- package/dist/mcp/tool-registry.js.map +1 -1
- package/dist/mcp/tools/ast-query.d.ts +13 -8
- package/dist/mcp/tools/ast-query.d.ts.map +1 -1
- package/dist/mcp/tools/ast-query.js.map +1 -1
- package/dist/mcp/tools/audit.d.ts +14 -2
- package/dist/mcp/tools/audit.d.ts.map +1 -1
- package/dist/mcp/tools/audit.js +1 -1
- package/dist/mcp/tools/audit.js.map +1 -1
- package/dist/mcp/tools/batch-query.d.ts +11 -7
- package/dist/mcp/tools/batch-query.d.ts.map +1 -1
- package/dist/mcp/tools/batch-query.js.map +1 -1
- package/dist/mcp/tools/branch-compare.d.ts +11 -2
- package/dist/mcp/tools/branch-compare.d.ts.map +1 -1
- package/dist/mcp/tools/branch-compare.js.map +1 -1
- package/dist/mcp/tools/brief.d.ts +8 -2
- package/dist/mcp/tools/brief.d.ts.map +1 -1
- package/dist/mcp/tools/brief.js.map +1 -1
- package/dist/mcp/tools/cfg.d.ts +13 -9
- package/dist/mcp/tools/cfg.d.ts.map +1 -1
- package/dist/mcp/tools/cfg.js +1 -1
- package/dist/mcp/tools/cfg.js.map +1 -1
- package/dist/mcp/tools/check.d.ts +19 -23
- package/dist/mcp/tools/check.d.ts.map +1 -1
- package/dist/mcp/tools/check.js +2 -2
- package/dist/mcp/tools/check.js.map +1 -1
- package/dist/mcp/tools/co-changes.d.ts +11 -9
- package/dist/mcp/tools/co-changes.d.ts.map +1 -1
- package/dist/mcp/tools/co-changes.js.map +1 -1
- package/dist/mcp/tools/code-owners.d.ts +11 -47
- package/dist/mcp/tools/code-owners.d.ts.map +1 -1
- package/dist/mcp/tools/code-owners.js.map +1 -1
- package/dist/mcp/tools/communities.d.ts +12 -7
- package/dist/mcp/tools/communities.d.ts.map +1 -1
- package/dist/mcp/tools/communities.js.map +1 -1
- package/dist/mcp/tools/complexity.d.ts +15 -6
- package/dist/mcp/tools/complexity.d.ts.map +1 -1
- package/dist/mcp/tools/complexity.js +0 -1
- package/dist/mcp/tools/complexity.js.map +1 -1
- package/dist/mcp/tools/context.d.ts +15 -2
- package/dist/mcp/tools/context.d.ts.map +1 -1
- package/dist/mcp/tools/context.js.map +1 -1
- package/dist/mcp/tools/dataflow.d.ts +14 -5
- package/dist/mcp/tools/dataflow.d.ts.map +1 -1
- package/dist/mcp/tools/dataflow.js +2 -2
- package/dist/mcp/tools/dataflow.js.map +1 -1
- package/dist/mcp/tools/diff-impact.d.ts +13 -2
- package/dist/mcp/tools/diff-impact.d.ts.map +1 -1
- package/dist/mcp/tools/diff-impact.js.map +1 -1
- package/dist/mcp/tools/execution-flow.d.ts +14 -16
- package/dist/mcp/tools/execution-flow.d.ts.map +1 -1
- package/dist/mcp/tools/execution-flow.js.map +1 -1
- package/dist/mcp/tools/export-graph.d.ts +10 -2
- package/dist/mcp/tools/export-graph.d.ts.map +1 -1
- package/dist/mcp/tools/export-graph.js +3 -1
- package/dist/mcp/tools/export-graph.js.map +1 -1
- package/dist/mcp/tools/file-deps.d.ts +10 -2
- package/dist/mcp/tools/file-deps.d.ts.map +1 -1
- package/dist/mcp/tools/file-deps.js.map +1 -1
- package/dist/mcp/tools/file-exports.d.ts +11 -2
- package/dist/mcp/tools/file-exports.d.ts.map +1 -1
- package/dist/mcp/tools/file-exports.js.map +1 -1
- package/dist/mcp/tools/find-cycles.d.ts +3 -2
- package/dist/mcp/tools/find-cycles.d.ts.map +1 -1
- package/dist/mcp/tools/find-cycles.js.map +1 -1
- package/dist/mcp/tools/fn-impact.d.ts +13 -2
- package/dist/mcp/tools/fn-impact.d.ts.map +1 -1
- package/dist/mcp/tools/fn-impact.js.map +1 -1
- package/dist/mcp/tools/impact-analysis.d.ts +8 -2
- package/dist/mcp/tools/impact-analysis.d.ts.map +1 -1
- package/dist/mcp/tools/impact-analysis.js +0 -3
- package/dist/mcp/tools/impact-analysis.js.map +1 -1
- package/dist/mcp/tools/implementations.d.ts +12 -2
- package/dist/mcp/tools/implementations.d.ts.map +1 -1
- package/dist/mcp/tools/implementations.js.map +1 -1
- package/dist/mcp/tools/index.d.ts +9 -2
- package/dist/mcp/tools/index.d.ts.map +1 -1
- package/dist/mcp/tools/index.js +2 -2
- package/dist/mcp/tools/index.js.map +1 -1
- package/dist/mcp/tools/interfaces.d.ts +12 -2
- package/dist/mcp/tools/interfaces.d.ts.map +1 -1
- package/dist/mcp/tools/interfaces.js.map +1 -1
- package/dist/mcp/tools/list-functions.d.ts +11 -2
- package/dist/mcp/tools/list-functions.d.ts.map +1 -1
- package/dist/mcp/tools/list-functions.js.map +1 -1
- package/dist/mcp/tools/list-repos.d.ts +7 -10
- package/dist/mcp/tools/list-repos.d.ts.map +1 -1
- package/dist/mcp/tools/list-repos.js.map +1 -1
- package/dist/mcp/tools/module-map.d.ts +8 -2
- package/dist/mcp/tools/module-map.d.ts.map +1 -1
- package/dist/mcp/tools/module-map.js.map +1 -1
- package/dist/mcp/tools/node-roles.d.ts +11 -2
- package/dist/mcp/tools/node-roles.d.ts.map +1 -1
- package/dist/mcp/tools/node-roles.js.map +1 -1
- package/dist/mcp/tools/path.d.ts +14 -2
- package/dist/mcp/tools/path.d.ts.map +1 -1
- package/dist/mcp/tools/path.js +9 -0
- package/dist/mcp/tools/path.js.map +1 -1
- package/dist/mcp/tools/query.d.ts +19 -2
- package/dist/mcp/tools/query.d.ts.map +1 -1
- package/dist/mcp/tools/query.js +1 -1
- package/dist/mcp/tools/query.js.map +1 -1
- package/dist/mcp/tools/semantic-search.d.ts +11 -45
- package/dist/mcp/tools/semantic-search.d.ts.map +1 -1
- package/dist/mcp/tools/semantic-search.js +2 -2
- package/dist/mcp/tools/semantic-search.js.map +1 -1
- package/dist/mcp/tools/sequence.d.ts +15 -17
- package/dist/mcp/tools/sequence.d.ts.map +1 -1
- package/dist/mcp/tools/sequence.js +1 -1
- package/dist/mcp/tools/sequence.js.map +1 -1
- package/dist/mcp/tools/structure.d.ts +12 -2
- package/dist/mcp/tools/structure.d.ts.map +1 -1
- package/dist/mcp/tools/structure.js.map +1 -1
- package/dist/mcp/tools/symbol-children.d.ts +12 -2
- package/dist/mcp/tools/symbol-children.d.ts.map +1 -1
- package/dist/mcp/tools/symbol-children.js +1 -1
- package/dist/mcp/tools/symbol-children.js.map +1 -1
- package/dist/mcp/tools/triage.d.ts +16 -2
- package/dist/mcp/tools/triage.d.ts.map +1 -1
- package/dist/mcp/tools/triage.js +1 -1
- package/dist/mcp/tools/triage.js.map +1 -1
- package/dist/mcp/tools/where.d.ts +11 -2
- package/dist/mcp/tools/where.d.ts.map +1 -1
- package/dist/mcp/tools/where.js.map +1 -1
- package/dist/presentation/audit.d.ts +14 -4
- package/dist/presentation/audit.d.ts.map +1 -1
- package/dist/presentation/audit.js +0 -3
- package/dist/presentation/audit.js.map +1 -1
- package/dist/presentation/batch.d.ts +19 -9
- package/dist/presentation/batch.d.ts.map +1 -1
- package/dist/presentation/batch.js +3 -8
- package/dist/presentation/batch.js.map +1 -1
- package/dist/presentation/branch-compare.d.ts +12 -1
- package/dist/presentation/branch-compare.d.ts.map +1 -1
- package/dist/presentation/branch-compare.js +7 -9
- package/dist/presentation/branch-compare.js.map +1 -1
- package/dist/presentation/brief.d.ts +8 -11
- package/dist/presentation/brief.d.ts.map +1 -1
- package/dist/presentation/brief.js +0 -10
- package/dist/presentation/brief.js.map +1 -1
- package/dist/presentation/cfg.d.ts +12 -4
- package/dist/presentation/cfg.d.ts.map +1 -1
- package/dist/presentation/cfg.js +0 -3
- package/dist/presentation/cfg.js.map +1 -1
- package/dist/presentation/check.d.ts +18 -4
- package/dist/presentation/check.d.ts.map +1 -1
- package/dist/presentation/check.js +10 -4
- package/dist/presentation/check.js.map +1 -1
- package/dist/presentation/cochange.d.ts +31 -8
- package/dist/presentation/cochange.d.ts.map +1 -1
- package/dist/presentation/cochange.js +0 -6
- package/dist/presentation/cochange.js.map +1 -1
- package/dist/presentation/colors.d.ts +11 -25
- package/dist/presentation/colors.d.ts.map +1 -1
- package/dist/presentation/colors.js +3 -0
- package/dist/presentation/colors.js.map +1 -1
- package/dist/presentation/communities.d.ts +10 -4
- package/dist/presentation/communities.d.ts.map +1 -1
- package/dist/presentation/communities.js +0 -3
- package/dist/presentation/communities.js.map +1 -1
- package/dist/presentation/complexity.d.ts +16 -4
- package/dist/presentation/complexity.d.ts.map +1 -1
- package/dist/presentation/complexity.js +0 -3
- package/dist/presentation/complexity.js.map +1 -1
- package/dist/presentation/dataflow.d.ts +13 -4
- package/dist/presentation/dataflow.d.ts.map +1 -1
- package/dist/presentation/dataflow.js +12 -17
- package/dist/presentation/dataflow.js.map +1 -1
- package/dist/presentation/diff-impact-mermaid.d.ts +11 -0
- package/dist/presentation/diff-impact-mermaid.d.ts.map +1 -0
- package/dist/presentation/diff-impact-mermaid.js +105 -0
- package/dist/presentation/diff-impact-mermaid.js.map +1 -0
- package/dist/presentation/export.d.ts +82 -89
- package/dist/presentation/export.d.ts.map +1 -1
- package/dist/presentation/export.js +0 -63
- package/dist/presentation/export.js.map +1 -1
- package/dist/presentation/flow.d.ts +15 -4
- package/dist/presentation/flow.d.ts.map +1 -1
- package/dist/presentation/flow.js +4 -3
- package/dist/presentation/flow.js.map +1 -1
- package/dist/presentation/manifesto.d.ts +12 -4
- package/dist/presentation/manifesto.d.ts.map +1 -1
- package/dist/presentation/manifesto.js +0 -3
- package/dist/presentation/manifesto.js.map +1 -1
- package/dist/presentation/owners.d.ts +15 -4
- package/dist/presentation/owners.d.ts.map +1 -1
- package/dist/presentation/owners.js +0 -3
- package/dist/presentation/owners.js.map +1 -1
- package/dist/presentation/queries-cli/exports.d.ts +11 -1
- package/dist/presentation/queries-cli/exports.d.ts.map +1 -1
- package/dist/presentation/queries-cli/exports.js.map +1 -1
- package/dist/presentation/queries-cli/impact.d.ts +22 -5
- package/dist/presentation/queries-cli/impact.d.ts.map +1 -1
- package/dist/presentation/queries-cli/impact.js +2 -2
- package/dist/presentation/queries-cli/impact.js.map +1 -1
- package/dist/presentation/queries-cli/index.d.ts +5 -5
- package/dist/presentation/queries-cli/index.d.ts.map +1 -1
- package/dist/presentation/queries-cli/index.js.map +1 -1
- package/dist/presentation/queries-cli/inspect.d.ts +22 -7
- package/dist/presentation/queries-cli/inspect.d.ts.map +1 -1
- package/dist/presentation/queries-cli/inspect.js.map +1 -1
- package/dist/presentation/queries-cli/overview.d.ts +17 -3
- package/dist/presentation/queries-cli/overview.d.ts.map +1 -1
- package/dist/presentation/queries-cli/overview.js +1 -1
- package/dist/presentation/queries-cli/overview.js.map +1 -1
- package/dist/presentation/queries-cli/path.d.ts +14 -1
- package/dist/presentation/queries-cli/path.d.ts.map +1 -1
- package/dist/presentation/queries-cli/path.js +45 -1
- package/dist/presentation/queries-cli/path.js.map +1 -1
- package/dist/presentation/queries-cli.d.ts +11 -1
- package/dist/presentation/queries-cli.d.ts.map +1 -1
- package/dist/presentation/queries-cli.js.map +1 -1
- package/dist/presentation/query.d.ts +1 -1
- package/dist/presentation/query.d.ts.map +1 -1
- package/dist/presentation/query.js +0 -4
- package/dist/presentation/query.js.map +1 -1
- package/dist/presentation/result-formatter.d.ts +12 -9
- package/dist/presentation/result-formatter.d.ts.map +1 -1
- package/dist/presentation/result-formatter.js +7 -34
- package/dist/presentation/result-formatter.js.map +1 -1
- package/dist/presentation/sequence-renderer.d.ts +18 -11
- package/dist/presentation/sequence-renderer.d.ts.map +1 -1
- package/dist/presentation/sequence-renderer.js +2 -15
- package/dist/presentation/sequence-renderer.js.map +1 -1
- package/dist/presentation/sequence.d.ts +14 -4
- package/dist/presentation/sequence.d.ts.map +1 -1
- package/dist/presentation/sequence.js +0 -3
- package/dist/presentation/sequence.js.map +1 -1
- package/dist/presentation/structure.d.ts +44 -6
- package/dist/presentation/structure.d.ts.map +1 -1
- package/dist/presentation/structure.js +1 -1
- package/dist/presentation/structure.js.map +1 -1
- package/dist/presentation/table.d.ts +12 -16
- package/dist/presentation/table.d.ts.map +1 -1
- package/dist/presentation/table.js +0 -6
- package/dist/presentation/table.js.map +1 -1
- package/dist/presentation/triage.d.ts +18 -4
- package/dist/presentation/triage.d.ts.map +1 -1
- package/dist/presentation/triage.js +2 -5
- package/dist/presentation/triage.js.map +1 -1
- package/dist/presentation/viewer.d.ts +79 -62
- package/dist/presentation/viewer.d.ts.map +1 -1
- package/dist/presentation/viewer.js +25 -47
- package/dist/presentation/viewer.js.map +1 -1
- package/dist/shared/constants.d.ts +12 -6
- package/dist/shared/constants.d.ts.map +1 -1
- package/dist/shared/constants.js +6 -3
- package/dist/shared/constants.js.map +1 -1
- package/dist/shared/errors.d.ts +23 -29
- package/dist/shared/errors.d.ts.map +1 -1
- package/dist/shared/errors.js +4 -9
- package/dist/shared/errors.js.map +1 -1
- package/dist/shared/file-utils.d.ts +22 -9
- package/dist/shared/file-utils.d.ts.map +1 -1
- package/dist/shared/file-utils.js +2 -3
- package/dist/shared/file-utils.js.map +1 -1
- package/dist/shared/generators.d.ts +47 -52
- package/dist/shared/generators.d.ts.map +1 -1
- package/dist/shared/generators.js +5 -19
- package/dist/shared/generators.js.map +1 -1
- package/dist/shared/hierarchy.d.ts +2 -1
- package/dist/shared/hierarchy.d.ts.map +1 -1
- package/dist/shared/hierarchy.js.map +1 -1
- package/dist/shared/kinds.d.ts +11 -10
- package/dist/shared/kinds.d.ts.map +1 -1
- package/dist/shared/kinds.js +14 -3
- package/dist/shared/kinds.js.map +1 -1
- package/dist/shared/normalize.d.ts +24 -11
- package/dist/shared/normalize.d.ts.map +1 -1
- package/dist/shared/normalize.js +1 -5
- package/dist/shared/normalize.js.map +1 -1
- package/dist/shared/paginate.d.ts +33 -59
- package/dist/shared/paginate.d.ts.map +1 -1
- package/dist/shared/paginate.js +0 -14
- package/dist/shared/paginate.js.map +1 -1
- package/dist/shared/version.d.ts +2 -0
- package/dist/shared/version.d.ts.map +1 -0
- package/dist/shared/version.js +5 -0
- package/dist/shared/version.js.map +1 -0
- package/dist/types.d.ts +234 -15
- package/dist/types.d.ts.map +1 -1
- package/package.json +15 -15
- package/src/ast-analysis/{engine.js → engine.ts} +145 -64
- package/src/ast-analysis/{metrics.js → metrics.ts} +14 -4
- package/src/ast-analysis/rules/{csharp.js → csharp.ts} +11 -9
- package/src/ast-analysis/rules/{go.js → go.ts} +12 -10
- package/src/ast-analysis/rules/{index.js → index.ts} +14 -14
- package/src/ast-analysis/rules/{java.js → java.ts} +11 -9
- package/src/ast-analysis/rules/{javascript.js → javascript.ts} +11 -11
- package/src/ast-analysis/rules/{php.js → php.ts} +11 -9
- package/src/ast-analysis/rules/{python.js → python.ts} +11 -9
- package/src/ast-analysis/rules/{ruby.js → ruby.ts} +11 -9
- package/src/ast-analysis/rules/{rust.js → rust.ts} +11 -9
- package/src/ast-analysis/{shared.js → shared.ts} +43 -43
- package/src/ast-analysis/{visitor-utils.js → visitor-utils.ts} +49 -12
- package/src/ast-analysis/{visitor.js → visitor.ts} +29 -31
- package/src/ast-analysis/visitors/{ast-store-visitor.js → ast-store-visitor.ts} +44 -36
- package/src/ast-analysis/visitors/cfg-conditionals.ts +227 -0
- package/src/ast-analysis/visitors/cfg-loops.ts +136 -0
- package/src/ast-analysis/visitors/cfg-shared.ts +196 -0
- package/src/ast-analysis/visitors/cfg-try-catch.ts +142 -0
- package/src/ast-analysis/visitors/cfg-visitor.ts +253 -0
- package/src/ast-analysis/visitors/{complexity-visitor.js → complexity-visitor.ts} +73 -61
- package/src/ast-analysis/visitors/{dataflow-visitor.js → dataflow-visitor.ts} +148 -63
- package/src/cli/commands/{ast.js → ast.ts} +3 -2
- package/src/cli/commands/{audit.js → audit.ts} +7 -6
- package/src/cli/commands/{batch.js → batch.ts} +32 -15
- package/src/cli/commands/{branch-compare.js → branch-compare.ts} +5 -3
- package/src/cli/commands/{brief.js → brief.ts} +3 -2
- package/src/cli/commands/{build.js → build.ts} +9 -7
- package/src/cli/commands/{cfg.js → cfg.ts} +4 -3
- package/src/cli/commands/{check.js → check.ts} +7 -6
- package/src/cli/commands/{children.js → children.ts} +4 -3
- package/src/cli/commands/{co-change.js → co-change.ts} +17 -12
- package/src/cli/commands/{communities.js → communities.ts} +4 -2
- package/src/cli/commands/{complexity.js → complexity.ts} +5 -4
- package/src/cli/commands/{context.js → context.ts} +5 -4
- package/src/cli/commands/{cycles.js → cycles.ts} +4 -3
- package/src/cli/commands/{dataflow.js → dataflow.ts} +5 -4
- package/src/cli/commands/{deps.js → deps.ts} +4 -3
- package/src/cli/commands/{diff-impact.js → diff-impact.ts} +3 -2
- package/src/cli/commands/{embed.js → embed.ts} +6 -4
- package/src/cli/commands/{export.js → export.ts} +8 -7
- package/src/cli/commands/{exports.js → exports.ts} +3 -2
- package/src/cli/commands/{flow.js → flow.ts} +4 -3
- package/src/cli/commands/{fn-impact.js → fn-impact.ts} +5 -4
- package/src/cli/commands/{impact.js → impact.ts} +3 -2
- package/src/cli/commands/{implementations.js → implementations.ts} +4 -3
- package/src/cli/commands/{info.js → info.ts} +4 -2
- package/src/cli/commands/{interfaces.js → interfaces.ts} +4 -3
- package/src/cli/commands/{map.js → map.ts} +3 -2
- package/src/cli/commands/{mcp.js → mcp.ts} +8 -7
- package/src/cli/commands/models.ts +29 -0
- package/src/cli/commands/{owners.js → owners.ts} +3 -2
- package/src/cli/commands/{path.js → path.ts} +13 -7
- package/src/cli/commands/{plot.js → plot.ts} +35 -14
- package/src/cli/commands/{query.js → query.ts} +8 -7
- package/src/cli/commands/{registry.js → registry.ts} +12 -6
- package/src/cli/commands/{roles.js → roles.ts} +3 -2
- package/src/cli/commands/{search.js → search.ts} +12 -15
- package/src/cli/commands/{sequence.js → sequence.ts} +5 -4
- package/src/cli/commands/{snapshot.js → snapshot.ts} +5 -4
- package/src/cli/commands/{stats.js → stats.ts} +2 -1
- package/src/cli/commands/{structure.js → structure.ts} +4 -2
- package/src/cli/commands/{triage.js → triage.ts} +14 -13
- package/src/cli/commands/{watch.js → watch.ts} +2 -1
- package/src/cli/commands/{where.js → where.ts} +3 -2
- package/src/cli/{index.js → index.ts} +38 -13
- package/src/cli/shared/{open-graph.js → open-graph.ts} +5 -5
- package/src/cli/shared/{options.js → options.ts} +6 -6
- package/src/cli/types.ts +33 -0
- package/src/{cli.js → cli.ts} +3 -3
- package/src/db/{connection.js → connection.ts} +130 -37
- package/src/db/{index.js → index.ts} +6 -0
- package/src/db/{migrations.js → migrations.ts} +40 -11
- package/src/db/{query-builder.js → query-builder.ts} +50 -65
- package/src/db/repository/base.ts +192 -0
- package/src/db/repository/{build-stmts.js → build-stmts.ts} +28 -22
- package/src/db/repository/{cached-stmt.js → cached-stmt.ts} +8 -7
- package/src/db/repository/{cfg.js → cfg.ts} +27 -18
- package/src/db/repository/{cochange.js → cochange.ts} +8 -14
- package/src/db/repository/{complexity.js → complexity.ts} +6 -5
- package/src/db/repository/dataflow.ts +19 -0
- package/src/db/repository/{edges.js → edges.ts} +57 -95
- package/src/db/repository/{embeddings.js → embeddings.ts} +10 -14
- package/src/db/repository/{graph-read.js → graph-read.ts} +17 -17
- package/src/db/repository/{in-memory-repository.js → in-memory-repository.ts} +155 -93
- package/src/db/repository/{index.js → index.ts} +2 -0
- package/src/db/repository/{nodes.js → nodes.ts} +120 -106
- package/src/db/repository/{sqlite-repository.js → sqlite-repository.ts} +71 -42
- package/src/domain/analysis/{brief.js → brief.ts} +33 -19
- package/src/domain/analysis/{context.js → context.ts} +175 -79
- package/src/domain/analysis/dependencies.ts +648 -0
- package/src/domain/analysis/diff-impact.ts +354 -0
- package/src/domain/analysis/{exports.js → exports.ts} +99 -54
- package/src/domain/analysis/fn-impact.ts +241 -0
- package/src/domain/analysis/impact.ts +11 -0
- package/src/domain/analysis/{implementations.js → implementations.ts} +13 -14
- package/src/domain/analysis/{module-map.js → module-map.ts} +124 -61
- package/src/domain/analysis/{roles.js → roles.ts} +24 -6
- package/src/domain/analysis/{symbol-lookup.js → symbol-lookup.ts} +78 -34
- package/src/domain/graph/builder/context.ts +81 -0
- package/src/domain/graph/builder/helpers.ts +292 -0
- package/src/domain/graph/builder/{incremental.js → incremental.ts} +184 -76
- package/src/domain/graph/builder/{pipeline.js → pipeline.ts} +41 -27
- package/src/domain/graph/builder/stages/{build-edges.js → build-edges.ts} +188 -57
- package/src/domain/graph/builder/stages/build-structure.ts +259 -0
- package/src/domain/graph/builder/stages/{collect-files.js → collect-files.ts} +6 -8
- package/src/domain/graph/builder/stages/{detect-changes.js → detect-changes.ts} +155 -123
- package/src/domain/graph/builder/stages/finalize.ts +196 -0
- package/src/domain/graph/builder/stages/{insert-nodes.js → insert-nodes.ts} +106 -47
- package/src/domain/graph/builder/stages/{parse-files.js → parse-files.ts} +2 -4
- package/src/domain/graph/builder/stages/resolve-imports.ts +195 -0
- package/src/domain/graph/builder/stages/{run-analyses.js → run-analyses.ts} +10 -7
- package/src/domain/graph/{change-journal.js → change-journal.ts} +48 -37
- package/src/domain/graph/{cycles.js → cycles.ts} +14 -30
- package/src/domain/graph/{journal.js → journal.ts} +22 -26
- package/src/domain/graph/{resolve.js → resolve.ts} +137 -41
- package/src/domain/graph/{watcher.js → watcher.ts} +41 -17
- package/src/domain/{parser.js → parser.ts} +154 -110
- package/src/domain/{queries.js → queries.ts} +3 -3
- package/src/domain/search/{generator.js → generator.ts} +27 -21
- package/src/domain/search/{index.js → index.ts} +2 -0
- package/src/domain/search/{models.js → models.ts} +62 -38
- package/src/domain/search/search/{cli-formatter.js → cli-formatter.ts} +22 -21
- package/src/domain/search/search/{filters.js → filters.ts} +7 -19
- package/src/domain/search/search/{hybrid.js → hybrid.ts} +69 -25
- package/src/domain/search/search/{keyword.js → keyword.ts} +42 -16
- package/src/domain/search/search/{prepare.js → prepare.ts} +34 -13
- package/src/domain/search/search/{semantic.js → semantic.ts} +73 -37
- package/src/domain/search/stores/{fts5.js → fts5.ts} +8 -8
- package/src/domain/search/stores/sqlite-blob.ts +15 -0
- package/src/domain/search/strategies/{source.js → source.ts} +6 -1
- package/src/domain/search/strategies/{structured.js → structured.ts} +12 -7
- package/src/domain/search/strategies/{text-utils.js → text-utils.ts} +9 -11
- package/src/extractors/{csharp.js → csharp.ts} +73 -44
- package/src/extractors/{go.js → go.ts} +107 -32
- package/src/extractors/{hcl.js → hcl.ts} +52 -27
- package/src/extractors/{helpers.js → helpers.ts} +26 -15
- package/src/extractors/{java.js → java.ts} +43 -24
- package/src/extractors/{javascript.js → javascript.ts} +120 -91
- package/src/extractors/{php.js → php.ts} +47 -34
- package/src/extractors/{python.js → python.ts} +65 -38
- package/src/extractors/{ruby.js → ruby.ts} +40 -25
- package/src/extractors/{rust.js → rust.ts} +43 -33
- package/src/features/{ast.js → ast.ts} +117 -72
- package/src/features/{audit.js → audit.ts} +172 -54
- package/src/features/batch.ts +182 -0
- package/src/features/{boundaries.js → boundaries.ts} +101 -116
- package/src/features/{branch-compare.js → branch-compare.ts} +145 -79
- package/src/features/{cfg.js → cfg.ts} +228 -88
- package/src/features/{check.js → check.ts} +143 -70
- package/src/features/{cochange.js → cochange.ts} +113 -93
- package/src/features/{communities.js → communities.ts} +85 -57
- package/src/features/complexity-query.ts +370 -0
- package/src/features/complexity.ts +555 -0
- package/src/features/{dataflow.js → dataflow.ts} +179 -102
- package/src/features/{export.js → export.ts} +160 -52
- package/src/features/{flow.js → flow.ts} +62 -45
- package/src/features/{graph-enrichment.js → graph-enrichment.ts} +136 -49
- package/src/features/{manifesto.js → manifesto.ts} +138 -77
- package/src/features/{owners.js → owners.ts} +88 -73
- package/src/features/{sequence.js → sequence.ts} +114 -65
- package/src/features/shared/{find-nodes.js → find-nodes.ts} +10 -13
- package/src/features/{snapshot.js → snapshot.ts} +26 -46
- package/src/features/structure-query.ts +387 -0
- package/src/features/structure.ts +734 -0
- package/src/features/{triage.js → triage.ts} +80 -42
- package/src/graph/algorithms/{bfs.js → bfs.ts} +18 -10
- package/src/graph/algorithms/{centrality.js → centrality.ts} +9 -5
- package/src/graph/algorithms/{index.js → index.ts} +1 -0
- package/src/graph/algorithms/leiden/LICENSE +24 -0
- package/src/graph/algorithms/leiden/adapter.ts +197 -0
- package/src/graph/algorithms/leiden/cpm.ts +77 -0
- package/src/graph/algorithms/leiden/index.ts +185 -0
- package/src/graph/algorithms/leiden/modularity.ts +122 -0
- package/src/graph/algorithms/leiden/optimiser.ts +598 -0
- package/src/graph/algorithms/leiden/partition.ts +479 -0
- package/src/graph/algorithms/leiden/rng.ts +20 -0
- package/src/graph/algorithms/louvain.ts +47 -0
- package/src/graph/algorithms/{shortest-path.js → shortest-path.ts} +9 -10
- package/src/graph/algorithms/{tarjan.js → tarjan.ts} +15 -14
- package/src/graph/builders/{dependency.js → dependency.ts} +43 -17
- package/src/graph/builders/structure.ts +58 -0
- package/src/graph/builders/temporal.ts +51 -0
- package/src/graph/classifiers/{risk.js → risk.ts} +52 -22
- package/src/graph/classifiers/{roles.js → roles.ts} +52 -27
- package/src/graph/{model.js → model.ts} +49 -58
- package/src/index.cjs +1 -1
- package/src/{index.js → index.ts} +1 -0
- package/src/infrastructure/{config.js → config.ts} +88 -61
- package/src/infrastructure/{logger.js → logger.ts} +6 -6
- package/src/infrastructure/{native.js → native.ts} +23 -18
- package/src/infrastructure/{registry.js → registry.ts} +47 -15
- package/src/infrastructure/{test-filter.js → test-filter.ts} +1 -1
- package/src/infrastructure/{update-check.js → update-check.ts} +27 -13
- package/src/mcp/{middleware.js → middleware.ts} +6 -12
- package/src/mcp/server.ts +241 -0
- package/src/mcp/{tool-registry.js → tool-registry.ts} +27 -13
- package/src/mcp/tools/{ast-query.js → ast-query.ts} +12 -1
- package/src/mcp/tools/{audit.js → audit.ts} +14 -2
- package/src/mcp/tools/batch-query.ts +22 -0
- package/src/mcp/tools/{branch-compare.js → branch-compare.ts} +11 -1
- package/src/mcp/tools/brief.ts +15 -0
- package/src/mcp/tools/{cfg.js → cfg.ts} +13 -2
- package/src/mcp/tools/{check.js → check.ts} +20 -3
- package/src/mcp/tools/{co-changes.js → co-changes.ts} +10 -1
- package/src/mcp/tools/code-owners.ts +22 -0
- package/src/mcp/tools/{communities.js → communities.ts} +11 -1
- package/src/mcp/tools/{complexity.js → complexity.ts} +14 -2
- package/src/mcp/tools/{context.js → context.ts} +14 -1
- package/src/mcp/tools/{dataflow.js → dataflow.ts} +15 -3
- package/src/mcp/tools/{diff-impact.js → diff-impact.ts} +12 -1
- package/src/mcp/tools/{execution-flow.js → execution-flow.ts} +13 -1
- package/src/mcp/tools/{export-graph.js → export-graph.ts} +13 -3
- package/src/mcp/tools/{file-deps.js → file-deps.ts} +9 -1
- package/src/mcp/tools/{file-exports.js → file-exports.ts} +10 -1
- package/src/mcp/tools/{find-cycles.js → find-cycles.ts} +5 -1
- package/src/mcp/tools/{fn-impact.js → fn-impact.ts} +12 -1
- package/src/mcp/tools/impact-analysis.ts +15 -0
- package/src/mcp/tools/{implementations.js → implementations.ts} +11 -1
- package/src/mcp/tools/{index.js → index.ts} +10 -3
- package/src/mcp/tools/{interfaces.js → interfaces.ts} +11 -1
- package/src/mcp/tools/{list-functions.js → list-functions.ts} +10 -1
- package/src/mcp/tools/list-repos.ts +17 -0
- package/src/mcp/tools/module-map.ts +13 -0
- package/src/mcp/tools/{node-roles.js → node-roles.ts} +10 -1
- package/src/mcp/tools/path.ts +34 -0
- package/src/mcp/tools/{query.js → query.ts} +19 -2
- package/src/mcp/tools/{semantic-search.js → semantic-search.ts} +13 -4
- package/src/mcp/tools/{sequence.js → sequence.ts} +15 -2
- package/src/mcp/tools/{structure.js → structure.ts} +11 -1
- package/src/mcp/tools/symbol-children.ts +24 -0
- package/src/mcp/tools/{triage.js → triage.ts} +20 -5
- package/src/mcp/tools/{where.js → where.ts} +10 -1
- package/src/presentation/{audit.js → audit.ts} +22 -6
- package/src/presentation/batch.ts +49 -0
- package/src/presentation/{branch-compare.js → branch-compare.ts} +59 -12
- package/src/presentation/{brief.js → brief.ts} +26 -14
- package/src/presentation/{cfg.js → cfg.ts} +37 -5
- package/src/presentation/{check.js → check.ts} +61 -5
- package/src/presentation/{cochange.js → cochange.ts} +30 -10
- package/src/presentation/{colors.js → colors.ts} +8 -3
- package/src/presentation/{communities.js → communities.ts} +45 -5
- package/src/presentation/{complexity.js → complexity.ts} +49 -5
- package/src/presentation/dataflow.ts +173 -0
- package/src/presentation/diff-impact-mermaid.ts +127 -0
- package/src/presentation/{export.js → export.ts} +160 -95
- package/src/presentation/{flow.js → flow.ts} +37 -8
- package/src/presentation/{manifesto.js → manifesto.ts} +25 -7
- package/src/presentation/{owners.js → owners.ts} +43 -6
- package/src/presentation/queries-cli/{exports.js → exports.ts} +49 -8
- package/src/presentation/queries-cli/{impact.js → impact.ts} +139 -23
- package/src/presentation/queries-cli/{inspect.js → inspect.ts} +208 -28
- package/src/presentation/queries-cli/{overview.js → overview.ts} +151 -30
- package/src/presentation/queries-cli/path.ts +179 -0
- package/src/presentation/{query.js → query.ts} +0 -4
- package/src/presentation/{result-formatter.js → result-formatter.ts} +43 -48
- package/src/presentation/sequence-renderer.ts +46 -0
- package/src/presentation/{sequence.js → sequence.ts} +15 -5
- package/src/presentation/{structure.js → structure.ts} +50 -5
- package/src/presentation/{table.js → table.ts} +14 -8
- package/src/presentation/{triage.js → triage.ts} +43 -8
- package/src/presentation/{viewer.js → viewer.ts} +96 -54
- package/src/shared/constants.ts +53 -0
- package/src/shared/{errors.js → errors.ts} +21 -20
- package/src/shared/{file-utils.js → file-utils.ts} +55 -23
- package/src/shared/{generators.js → generators.ts} +78 -31
- package/src/shared/{hierarchy.js → hierarchy.ts} +12 -6
- package/src/shared/{kinds.js → kinds.ts} +34 -12
- package/src/shared/{normalize.js → normalize.ts} +37 -10
- package/src/shared/{paginate.js → paginate.ts} +30 -19
- package/src/shared/version.ts +10 -0
- package/src/types.ts +252 -17
- package/dist/index.cjs.map +0 -1
- package/dist/index.d.cts +0 -3
- package/dist/index.d.cts.map +0 -1
- package/src/ast-analysis/visitors/cfg-visitor.js +0 -778
- package/src/cli/commands/models.js +0 -19
- package/src/db/repository/base.js +0 -201
- package/src/db/repository/dataflow.js +0 -17
- package/src/domain/analysis/dependencies.js +0 -395
- package/src/domain/analysis/impact.js +0 -675
- package/src/domain/graph/builder/context.js +0 -85
- package/src/domain/graph/builder/helpers.js +0 -218
- package/src/domain/graph/builder/stages/build-structure.js +0 -113
- package/src/domain/graph/builder/stages/finalize.js +0 -139
- package/src/domain/graph/builder/stages/resolve-imports.js +0 -143
- package/src/domain/search/stores/sqlite-blob.js +0 -24
- package/src/features/batch.js +0 -156
- package/src/features/complexity.js +0 -814
- package/src/features/structure.js +0 -700
- package/src/graph/algorithms/louvain.js +0 -26
- package/src/graph/builders/structure.js +0 -40
- package/src/graph/builders/temporal.js +0 -33
- package/src/mcp/server.js +0 -143
- package/src/mcp/tools/batch-query.js +0 -11
- package/src/mcp/tools/brief.js +0 -8
- package/src/mcp/tools/code-owners.js +0 -12
- package/src/mcp/tools/impact-analysis.js +0 -12
- package/src/mcp/tools/list-repos.js +0 -11
- package/src/mcp/tools/module-map.js +0 -6
- package/src/mcp/tools/path.js +0 -12
- package/src/mcp/tools/symbol-children.js +0 -14
- package/src/presentation/batch.js +0 -26
- package/src/presentation/dataflow.js +0 -110
- package/src/presentation/queries-cli/path.js +0 -65
- package/src/presentation/sequence-renderer.js +0 -43
- package/src/shared/constants.js +0 -39
- /package/src/cli/shared/{output.js → output.ts} +0 -0
- /package/src/domain/graph/{builder.js → builder.ts} +0 -0
- /package/src/extractors/{index.js → index.ts} +0 -0
- /package/src/graph/builders/{index.js → index.ts} +0 -0
- /package/src/graph/classifiers/{index.js → index.ts} +0 -0
- /package/src/graph/{index.js → index.ts} +0 -0
- /package/src/infrastructure/{result-formatter.js → result-formatter.ts} +0 -0
- /package/src/mcp/{index.js → index.ts} +0 -0
- /package/src/presentation/queries-cli/{index.js → index.ts} +0 -0
- /package/src/presentation/{queries-cli.js → queries-cli.ts} +0 -0
|
@@ -0,0 +1,263 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Complexity query functions — read-only DB queries for complexity metrics.
|
|
3
|
+
*
|
|
4
|
+
* Split from complexity.ts to separate query-time concerns (DB reads, filtering,
|
|
5
|
+
* pagination) from compute-time concerns (AST traversal, metric algorithms).
|
|
6
|
+
*/
|
|
7
|
+
import { openReadonlyOrFail } from '../db/index.js';
|
|
8
|
+
import { buildFileConditionSQL } from '../db/query-builder.js';
|
|
9
|
+
import { loadConfig } from '../infrastructure/config.js';
|
|
10
|
+
import { debug } from '../infrastructure/logger.js';
|
|
11
|
+
import { isTestFile } from '../infrastructure/test-filter.js';
|
|
12
|
+
import { paginateResult } from '../shared/paginate.js';
|
|
13
|
+
export function complexityData(customDbPath, opts = {}) {
|
|
14
|
+
const db = openReadonlyOrFail(customDbPath);
|
|
15
|
+
try {
|
|
16
|
+
const sort = opts.sort || 'cognitive';
|
|
17
|
+
const noTests = opts.noTests || false;
|
|
18
|
+
const aboveThreshold = opts.aboveThreshold || false;
|
|
19
|
+
const target = opts.target || null;
|
|
20
|
+
const fileFilter = opts.file || null;
|
|
21
|
+
const kindFilter = opts.kind || null;
|
|
22
|
+
// Load thresholds from config
|
|
23
|
+
const config = opts.config || loadConfig(process.cwd());
|
|
24
|
+
const thresholds = config.manifesto?.rules || {
|
|
25
|
+
cognitive: { warn: 15, fail: null },
|
|
26
|
+
cyclomatic: { warn: 10, fail: null },
|
|
27
|
+
maxNesting: { warn: 4, fail: null },
|
|
28
|
+
maintainabilityIndex: { warn: 20, fail: null },
|
|
29
|
+
};
|
|
30
|
+
// Build query
|
|
31
|
+
let where = "WHERE n.kind IN ('function','method')";
|
|
32
|
+
const params = [];
|
|
33
|
+
if (noTests) {
|
|
34
|
+
where += ` AND n.file NOT LIKE '%.test.%'
|
|
35
|
+
AND n.file NOT LIKE '%.spec.%'
|
|
36
|
+
AND n.file NOT LIKE '%__test__%'
|
|
37
|
+
AND n.file NOT LIKE '%__tests__%'
|
|
38
|
+
AND n.file NOT LIKE '%.stories.%'`;
|
|
39
|
+
}
|
|
40
|
+
if (target) {
|
|
41
|
+
where += ' AND n.name LIKE ?';
|
|
42
|
+
params.push(`%${target}%`);
|
|
43
|
+
}
|
|
44
|
+
{
|
|
45
|
+
const fc = buildFileConditionSQL(fileFilter, 'n.file');
|
|
46
|
+
where += fc.sql;
|
|
47
|
+
params.push(...fc.params);
|
|
48
|
+
}
|
|
49
|
+
if (kindFilter) {
|
|
50
|
+
where += ' AND n.kind = ?';
|
|
51
|
+
params.push(kindFilter);
|
|
52
|
+
}
|
|
53
|
+
const isValidThreshold = (v) => typeof v === 'number' && Number.isFinite(v);
|
|
54
|
+
let having = '';
|
|
55
|
+
if (aboveThreshold) {
|
|
56
|
+
const conditions = [];
|
|
57
|
+
if (isValidThreshold(thresholds.cognitive?.warn)) {
|
|
58
|
+
conditions.push(`fc.cognitive >= ${thresholds.cognitive.warn}`);
|
|
59
|
+
}
|
|
60
|
+
if (isValidThreshold(thresholds.cyclomatic?.warn)) {
|
|
61
|
+
conditions.push(`fc.cyclomatic >= ${thresholds.cyclomatic.warn}`);
|
|
62
|
+
}
|
|
63
|
+
if (isValidThreshold(thresholds.maxNesting?.warn)) {
|
|
64
|
+
conditions.push(`fc.max_nesting >= ${thresholds.maxNesting.warn}`);
|
|
65
|
+
}
|
|
66
|
+
if (isValidThreshold(thresholds.maintainabilityIndex?.warn)) {
|
|
67
|
+
conditions.push(`fc.maintainability_index > 0 AND fc.maintainability_index <= ${thresholds.maintainabilityIndex.warn}`);
|
|
68
|
+
}
|
|
69
|
+
if (conditions.length > 0) {
|
|
70
|
+
having = `AND (${conditions.join(' OR ')})`;
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
const orderMap = {
|
|
74
|
+
cognitive: 'fc.cognitive DESC',
|
|
75
|
+
cyclomatic: 'fc.cyclomatic DESC',
|
|
76
|
+
nesting: 'fc.max_nesting DESC',
|
|
77
|
+
mi: 'fc.maintainability_index ASC',
|
|
78
|
+
volume: 'fc.halstead_volume DESC',
|
|
79
|
+
effort: 'fc.halstead_effort DESC',
|
|
80
|
+
bugs: 'fc.halstead_bugs DESC',
|
|
81
|
+
loc: 'fc.loc DESC',
|
|
82
|
+
};
|
|
83
|
+
const orderBy = orderMap[sort] || 'fc.cognitive DESC';
|
|
84
|
+
let rows;
|
|
85
|
+
try {
|
|
86
|
+
rows = db
|
|
87
|
+
.prepare(`SELECT n.name, n.kind, n.file, n.line, n.end_line,
|
|
88
|
+
fc.cognitive, fc.cyclomatic, fc.max_nesting,
|
|
89
|
+
fc.loc, fc.sloc, fc.maintainability_index,
|
|
90
|
+
fc.halstead_volume, fc.halstead_difficulty, fc.halstead_effort, fc.halstead_bugs
|
|
91
|
+
FROM function_complexity fc
|
|
92
|
+
JOIN nodes n ON fc.node_id = n.id
|
|
93
|
+
${where} ${having}
|
|
94
|
+
ORDER BY ${orderBy}`)
|
|
95
|
+
.all(...params);
|
|
96
|
+
}
|
|
97
|
+
catch (e) {
|
|
98
|
+
debug(`complexity query failed (table may not exist): ${e.message}`);
|
|
99
|
+
// Check if graph has nodes even though complexity table is missing/empty
|
|
100
|
+
let hasGraph = false;
|
|
101
|
+
try {
|
|
102
|
+
hasGraph = (db.prepare('SELECT COUNT(*) as c FROM nodes').get()?.c ?? 0) > 0;
|
|
103
|
+
}
|
|
104
|
+
catch (e2) {
|
|
105
|
+
debug(`nodes table check failed: ${e2.message}`);
|
|
106
|
+
}
|
|
107
|
+
return { functions: [], summary: null, thresholds, hasGraph };
|
|
108
|
+
}
|
|
109
|
+
// Post-filter test files if needed (belt-and-suspenders for isTestFile)
|
|
110
|
+
const filtered = noTests ? rows.filter((r) => !isTestFile(r.file)) : rows;
|
|
111
|
+
const functions = filtered.map((r) => {
|
|
112
|
+
const exceeds = [];
|
|
113
|
+
if (isValidThreshold(thresholds.cognitive?.warn) &&
|
|
114
|
+
r.cognitive >= (thresholds.cognitive?.warn ?? 0))
|
|
115
|
+
exceeds.push('cognitive');
|
|
116
|
+
if (isValidThreshold(thresholds.cyclomatic?.warn) &&
|
|
117
|
+
r.cyclomatic >= (thresholds.cyclomatic?.warn ?? 0))
|
|
118
|
+
exceeds.push('cyclomatic');
|
|
119
|
+
if (isValidThreshold(thresholds.maxNesting?.warn) &&
|
|
120
|
+
r.max_nesting >= (thresholds.maxNesting?.warn ?? 0))
|
|
121
|
+
exceeds.push('maxNesting');
|
|
122
|
+
if (isValidThreshold(thresholds.maintainabilityIndex?.warn) &&
|
|
123
|
+
r.maintainability_index > 0 &&
|
|
124
|
+
r.maintainability_index <= (thresholds.maintainabilityIndex?.warn ?? 0))
|
|
125
|
+
exceeds.push('maintainabilityIndex');
|
|
126
|
+
return {
|
|
127
|
+
name: r.name,
|
|
128
|
+
kind: r.kind,
|
|
129
|
+
file: r.file,
|
|
130
|
+
line: r.line,
|
|
131
|
+
endLine: r.end_line || null,
|
|
132
|
+
cognitive: r.cognitive,
|
|
133
|
+
cyclomatic: r.cyclomatic,
|
|
134
|
+
maxNesting: r.max_nesting,
|
|
135
|
+
loc: r.loc || 0,
|
|
136
|
+
sloc: r.sloc || 0,
|
|
137
|
+
maintainabilityIndex: r.maintainability_index || 0,
|
|
138
|
+
halstead: {
|
|
139
|
+
volume: r.halstead_volume || 0,
|
|
140
|
+
difficulty: r.halstead_difficulty || 0,
|
|
141
|
+
effort: r.halstead_effort || 0,
|
|
142
|
+
bugs: r.halstead_bugs || 0,
|
|
143
|
+
},
|
|
144
|
+
exceeds: exceeds.length > 0 ? exceeds : undefined,
|
|
145
|
+
};
|
|
146
|
+
});
|
|
147
|
+
// Summary stats
|
|
148
|
+
let summary = null;
|
|
149
|
+
try {
|
|
150
|
+
const allRows = db
|
|
151
|
+
.prepare(`SELECT fc.cognitive, fc.cyclomatic, fc.max_nesting, fc.maintainability_index
|
|
152
|
+
FROM function_complexity fc JOIN nodes n ON fc.node_id = n.id
|
|
153
|
+
WHERE n.kind IN ('function','method')
|
|
154
|
+
${noTests ? `AND n.file NOT LIKE '%.test.%' AND n.file NOT LIKE '%.spec.%' AND n.file NOT LIKE '%__test__%' AND n.file NOT LIKE '%__tests__%' AND n.file NOT LIKE '%.stories.%'` : ''}`)
|
|
155
|
+
.all();
|
|
156
|
+
if (allRows.length > 0) {
|
|
157
|
+
const miValues = allRows.map((r) => r.maintainability_index || 0);
|
|
158
|
+
summary = {
|
|
159
|
+
analyzed: allRows.length,
|
|
160
|
+
avgCognitive: +(allRows.reduce((s, r) => s + r.cognitive, 0) / allRows.length).toFixed(1),
|
|
161
|
+
avgCyclomatic: +(allRows.reduce((s, r) => s + r.cyclomatic, 0) / allRows.length).toFixed(1),
|
|
162
|
+
maxCognitive: Math.max(...allRows.map((r) => r.cognitive)),
|
|
163
|
+
maxCyclomatic: Math.max(...allRows.map((r) => r.cyclomatic)),
|
|
164
|
+
avgMI: +(miValues.reduce((s, v) => s + v, 0) / miValues.length).toFixed(1),
|
|
165
|
+
minMI: +Math.min(...miValues).toFixed(1),
|
|
166
|
+
aboveWarn: allRows.filter((r) => (isValidThreshold(thresholds.cognitive?.warn) &&
|
|
167
|
+
r.cognitive >= (thresholds.cognitive?.warn ?? 0)) ||
|
|
168
|
+
(isValidThreshold(thresholds.cyclomatic?.warn) &&
|
|
169
|
+
r.cyclomatic >= (thresholds.cyclomatic?.warn ?? 0)) ||
|
|
170
|
+
(isValidThreshold(thresholds.maxNesting?.warn) &&
|
|
171
|
+
r.max_nesting >= (thresholds.maxNesting?.warn ?? 0)) ||
|
|
172
|
+
(isValidThreshold(thresholds.maintainabilityIndex?.warn) &&
|
|
173
|
+
r.maintainability_index > 0 &&
|
|
174
|
+
r.maintainability_index <= (thresholds.maintainabilityIndex?.warn ?? 0))).length,
|
|
175
|
+
};
|
|
176
|
+
}
|
|
177
|
+
}
|
|
178
|
+
catch (e) {
|
|
179
|
+
debug(`complexity summary query failed: ${e.message}`);
|
|
180
|
+
}
|
|
181
|
+
// When summary is null (no complexity rows), check if graph has nodes
|
|
182
|
+
let hasGraph = false;
|
|
183
|
+
if (summary === null) {
|
|
184
|
+
try {
|
|
185
|
+
hasGraph = (db.prepare('SELECT COUNT(*) as c FROM nodes').get()?.c ?? 0) > 0;
|
|
186
|
+
}
|
|
187
|
+
catch (e) {
|
|
188
|
+
debug(`nodes table check failed: ${e.message}`);
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
const base = { functions, summary, thresholds, hasGraph };
|
|
192
|
+
return paginateResult(base, 'functions', { limit: opts.limit, offset: opts.offset });
|
|
193
|
+
}
|
|
194
|
+
finally {
|
|
195
|
+
db.close();
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
export function* iterComplexity(customDbPath, opts = {}) {
|
|
199
|
+
const db = openReadonlyOrFail(customDbPath);
|
|
200
|
+
try {
|
|
201
|
+
const noTests = opts.noTests || false;
|
|
202
|
+
const sort = opts.sort || 'cognitive';
|
|
203
|
+
let where = "WHERE n.kind IN ('function','method')";
|
|
204
|
+
const params = [];
|
|
205
|
+
if (noTests) {
|
|
206
|
+
where += ` AND n.file NOT LIKE '%.test.%'
|
|
207
|
+
AND n.file NOT LIKE '%.spec.%'
|
|
208
|
+
AND n.file NOT LIKE '%__test__%'
|
|
209
|
+
AND n.file NOT LIKE '%__tests__%'
|
|
210
|
+
AND n.file NOT LIKE '%.stories.%'`;
|
|
211
|
+
}
|
|
212
|
+
if (opts.target) {
|
|
213
|
+
where += ' AND n.name LIKE ?';
|
|
214
|
+
params.push(`%${opts.target}%`);
|
|
215
|
+
}
|
|
216
|
+
{
|
|
217
|
+
const fc = buildFileConditionSQL(opts.file, 'n.file');
|
|
218
|
+
where += fc.sql;
|
|
219
|
+
params.push(...fc.params);
|
|
220
|
+
}
|
|
221
|
+
if (opts.kind) {
|
|
222
|
+
where += ' AND n.kind = ?';
|
|
223
|
+
params.push(opts.kind);
|
|
224
|
+
}
|
|
225
|
+
const orderMap = {
|
|
226
|
+
cognitive: 'fc.cognitive DESC',
|
|
227
|
+
cyclomatic: 'fc.cyclomatic DESC',
|
|
228
|
+
nesting: 'fc.max_nesting DESC',
|
|
229
|
+
mi: 'fc.maintainability_index ASC',
|
|
230
|
+
volume: 'fc.halstead_volume DESC',
|
|
231
|
+
effort: 'fc.halstead_effort DESC',
|
|
232
|
+
bugs: 'fc.halstead_bugs DESC',
|
|
233
|
+
loc: 'fc.loc DESC',
|
|
234
|
+
};
|
|
235
|
+
const orderBy = orderMap[sort] || 'fc.cognitive DESC';
|
|
236
|
+
const stmt = db.prepare(`SELECT n.name, n.kind, n.file, n.line, n.end_line,
|
|
237
|
+
fc.cognitive, fc.cyclomatic, fc.max_nesting, fc.loc, fc.sloc
|
|
238
|
+
FROM function_complexity fc
|
|
239
|
+
JOIN nodes n ON fc.node_id = n.id
|
|
240
|
+
${where}
|
|
241
|
+
ORDER BY ${orderBy}`);
|
|
242
|
+
for (const r of stmt.iterate(...params)) {
|
|
243
|
+
if (noTests && isTestFile(r.file))
|
|
244
|
+
continue;
|
|
245
|
+
yield {
|
|
246
|
+
name: r.name,
|
|
247
|
+
kind: r.kind,
|
|
248
|
+
file: r.file,
|
|
249
|
+
line: r.line,
|
|
250
|
+
endLine: r.end_line || null,
|
|
251
|
+
cognitive: r.cognitive,
|
|
252
|
+
cyclomatic: r.cyclomatic,
|
|
253
|
+
maxNesting: r.max_nesting,
|
|
254
|
+
loc: r.loc || 0,
|
|
255
|
+
sloc: r.sloc || 0,
|
|
256
|
+
};
|
|
257
|
+
}
|
|
258
|
+
}
|
|
259
|
+
finally {
|
|
260
|
+
db.close();
|
|
261
|
+
}
|
|
262
|
+
}
|
|
263
|
+
//# sourceMappingURL=complexity-query.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"complexity-query.js","sourceRoot":"","sources":["../../src/features/complexity-query.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,127 +1,46 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
export
|
|
9
|
-
|
|
10
|
-
n2: number;
|
|
11
|
-
bigN1: number;
|
|
12
|
-
bigN2: number;
|
|
13
|
-
vocabulary: number;
|
|
14
|
-
length: number;
|
|
15
|
-
volume: number;
|
|
16
|
-
difficulty: number;
|
|
17
|
-
effort: number;
|
|
18
|
-
bugs: number;
|
|
19
|
-
} | null;
|
|
20
|
-
/**
|
|
21
|
-
* Compute cognitive complexity, cyclomatic complexity, and max nesting depth
|
|
22
|
-
* for a function's AST subtree in a single DFS walk.
|
|
23
|
-
*
|
|
24
|
-
* @param {object} functionNode - tree-sitter node for the function body
|
|
25
|
-
* @param {string} language - Language ID (e.g. 'javascript', 'typescript')
|
|
26
|
-
* @returns {{ cognitive: number, cyclomatic: number, maxNesting: number } | null}
|
|
27
|
-
*/
|
|
28
|
-
export function computeFunctionComplexity(functionNode: object, language: string): {
|
|
1
|
+
import { computeLOCMetrics as _computeLOCMetrics, computeMaintainabilityIndex as _computeMaintainabilityIndex } from '../ast-analysis/metrics.js';
|
|
2
|
+
import { COMPLEXITY_RULES, HALSTEAD_RULES } from '../ast-analysis/rules/index.js';
|
|
3
|
+
import { findFunctionNode as _findFunctionNode } from '../ast-analysis/shared.js';
|
|
4
|
+
import type { BetterSqlite3Database, HalsteadDerivedMetrics, LOCMetrics, TreeSitterNode } from '../types.js';
|
|
5
|
+
export { COMPLEXITY_RULES, HALSTEAD_RULES };
|
|
6
|
+
export declare function computeHalsteadMetrics(functionNode: TreeSitterNode, language: string): HalsteadDerivedMetrics | null;
|
|
7
|
+
export declare const computeLOCMetrics: typeof _computeLOCMetrics;
|
|
8
|
+
export declare const computeMaintainabilityIndex: typeof _computeMaintainabilityIndex;
|
|
9
|
+
export declare function computeFunctionComplexity(functionNode: TreeSitterNode, language: string): {
|
|
29
10
|
cognitive: number;
|
|
30
11
|
cyclomatic: number;
|
|
31
12
|
maxNesting: number;
|
|
32
13
|
} | null;
|
|
33
|
-
|
|
34
|
-
* Compute all metrics (complexity + Halstead + LOC + MI) in a single DFS walk.
|
|
35
|
-
* Merges computeFunctionComplexity and computeHalsteadMetrics into one tree
|
|
36
|
-
* traversal, avoiding two separate DFS walks per function node at build time.
|
|
37
|
-
* LOC is text-based (not tree-based) and computed separately (very cheap).
|
|
38
|
-
*
|
|
39
|
-
* Now delegates to the complexity visitor via the unified walker.
|
|
40
|
-
*
|
|
41
|
-
* @param {object} functionNode - tree-sitter node for the function
|
|
42
|
-
* @param {string} langId - Language ID (e.g. 'javascript', 'python')
|
|
43
|
-
* @returns {{ cognitive: number, cyclomatic: number, maxNesting: number, halstead: object|null, loc: object, mi: number } | null}
|
|
44
|
-
*/
|
|
45
|
-
export function computeAllMetrics(functionNode: object, langId: string): {
|
|
14
|
+
interface AllMetricsResult {
|
|
46
15
|
cognitive: number;
|
|
47
16
|
cyclomatic: number;
|
|
48
17
|
maxNesting: number;
|
|
49
|
-
halstead:
|
|
50
|
-
loc:
|
|
18
|
+
halstead: HalsteadDerivedMetrics | null;
|
|
19
|
+
loc: LOCMetrics;
|
|
51
20
|
mi: number;
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
export function complexityData(customDbPath?: string, opts?: {
|
|
78
|
-
target?: string | undefined;
|
|
79
|
-
limit?: number | undefined;
|
|
80
|
-
sort?: string | undefined;
|
|
81
|
-
aboveThreshold?: boolean | undefined;
|
|
82
|
-
file?: string | undefined;
|
|
83
|
-
kind?: string | undefined;
|
|
84
|
-
noTests?: boolean | undefined;
|
|
85
|
-
}): {
|
|
86
|
-
functions: object[];
|
|
87
|
-
summary: object;
|
|
88
|
-
thresholds: object;
|
|
89
|
-
};
|
|
90
|
-
/**
|
|
91
|
-
* Generator: stream complexity rows one-by-one using .iterate() for memory efficiency.
|
|
92
|
-
* @param {string} [customDbPath]
|
|
93
|
-
* @param {object} [opts]
|
|
94
|
-
* @param {boolean} [opts.noTests]
|
|
95
|
-
* @param {string} [opts.file]
|
|
96
|
-
* @param {string} [opts.target]
|
|
97
|
-
* @param {string} [opts.kind]
|
|
98
|
-
* @param {string} [opts.sort]
|
|
99
|
-
* @yields {{ name: string, kind: string, file: string, line: number, cognitive: number, cyclomatic: number, maxNesting: number, loc: number, sloc: number }}
|
|
100
|
-
*/
|
|
101
|
-
export function iterComplexity(customDbPath?: string, opts?: {
|
|
102
|
-
noTests?: boolean | undefined;
|
|
103
|
-
file?: string | undefined;
|
|
104
|
-
target?: string | undefined;
|
|
105
|
-
kind?: string | undefined;
|
|
106
|
-
sort?: string | undefined;
|
|
107
|
-
}): Generator<{
|
|
108
|
-
name: any;
|
|
109
|
-
kind: any;
|
|
110
|
-
file: any;
|
|
111
|
-
line: any;
|
|
112
|
-
endLine: any;
|
|
113
|
-
cognitive: any;
|
|
114
|
-
cyclomatic: any;
|
|
115
|
-
maxNesting: any;
|
|
116
|
-
loc: any;
|
|
117
|
-
sloc: any;
|
|
118
|
-
}, void, unknown>;
|
|
119
|
-
export const computeLOCMetrics: typeof _computeLOCMetrics;
|
|
120
|
-
export const computeMaintainabilityIndex: typeof _computeMaintainabilityIndex;
|
|
121
|
-
import { COMPLEXITY_RULES } from '../ast-analysis/rules/index.js';
|
|
122
|
-
import { HALSTEAD_RULES } from '../ast-analysis/rules/index.js';
|
|
123
|
-
import { computeLOCMetrics as _computeLOCMetrics } from '../ast-analysis/metrics.js';
|
|
124
|
-
import { computeMaintainabilityIndex as _computeMaintainabilityIndex } from '../ast-analysis/metrics.js';
|
|
125
|
-
import { findFunctionNode as _findFunctionNode } from '../ast-analysis/shared.js';
|
|
126
|
-
export { COMPLEXITY_RULES, HALSTEAD_RULES, _findFunctionNode as findFunctionNode };
|
|
21
|
+
}
|
|
22
|
+
export declare function computeAllMetrics(functionNode: TreeSitterNode, langId: string): AllMetricsResult | null;
|
|
23
|
+
export { _findFunctionNode as findFunctionNode };
|
|
24
|
+
interface FileSymbols {
|
|
25
|
+
_tree?: {
|
|
26
|
+
rootNode: TreeSitterNode;
|
|
27
|
+
} | null;
|
|
28
|
+
_langId?: string | null;
|
|
29
|
+
definitions: Array<{
|
|
30
|
+
name: string;
|
|
31
|
+
kind: string;
|
|
32
|
+
line: number;
|
|
33
|
+
endLine?: number;
|
|
34
|
+
complexity?: {
|
|
35
|
+
cognitive: number;
|
|
36
|
+
cyclomatic: number;
|
|
37
|
+
maxNesting?: number;
|
|
38
|
+
maintainabilityIndex?: number;
|
|
39
|
+
halstead?: HalsteadDerivedMetrics | null;
|
|
40
|
+
loc?: LOCMetrics | null;
|
|
41
|
+
};
|
|
42
|
+
}>;
|
|
43
|
+
}
|
|
44
|
+
export declare function buildComplexityMetrics(db: BetterSqlite3Database, fileSymbols: Map<string, FileSymbols>, rootDir: string, _engineOpts?: unknown): Promise<void>;
|
|
45
|
+
export { complexityData, iterComplexity } from './complexity-query.js';
|
|
127
46
|
//# sourceMappingURL=complexity.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"complexity.d.ts","sourceRoot":"","sources":["../../src/features/complexity.
|
|
1
|
+
{"version":3,"file":"complexity.d.ts","sourceRoot":"","sources":["../../src/features/complexity.ts"],"names":[],"mappings":"AAEA,OAAO,EACL,iBAAiB,IAAI,kBAAkB,EACvC,2BAA2B,IAAI,4BAA4B,EAC5D,MAAM,4BAA4B,CAAC;AACpC,OAAO,EAAE,gBAAgB,EAAE,cAAc,EAAE,MAAM,gCAAgC,CAAC;AAClF,OAAO,EACL,gBAAgB,IAAI,iBAAiB,EAGtC,MAAM,2BAA2B,CAAC;AAKnC,OAAO,KAAK,EACV,qBAAqB,EAErB,sBAAsB,EAEtB,UAAU,EACV,cAAc,EACf,MAAM,aAAa,CAAC;AAGrB,OAAO,EAAE,gBAAgB,EAAE,cAAc,EAAE,CAAC;AAO5C,wBAAgB,sBAAsB,CACpC,YAAY,EAAE,cAAc,EAC5B,QAAQ,EAAE,MAAM,GACf,sBAAsB,GAAG,IAAI,CA+D/B;AAID,eAAO,MAAM,iBAAiB,2BAAqB,CAAC;AAIpD,eAAO,MAAM,2BAA2B,qCAA+B,CAAC;AAIxE,wBAAgB,yBAAyB,CACvC,YAAY,EAAE,cAAc,EAC5B,QAAQ,EAAE,MAAM,GACf;IAAE,SAAS,EAAE,MAAM,CAAC;IAAC,UAAU,EAAE,MAAM,CAAC;IAAC,UAAU,EAAE,MAAM,CAAA;CAAE,GAAG,IAAI,CA4JtE;AAID,UAAU,gBAAgB;IACxB,SAAS,EAAE,MAAM,CAAC;IAClB,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;IACnB,QAAQ,EAAE,sBAAsB,GAAG,IAAI,CAAC;IACxC,GAAG,EAAE,UAAU,CAAC;IAChB,EAAE,EAAE,MAAM,CAAC;CACZ;AAED,wBAAgB,iBAAiB,CAC/B,YAAY,EAAE,cAAc,EAC5B,MAAM,EAAE,MAAM,GACb,gBAAgB,GAAG,IAAI,CAsCzB;AAID,OAAO,EAAE,iBAAiB,IAAI,gBAAgB,EAAE,CAAC;AAEjD,UAAU,WAAW;IACnB,KAAK,CAAC,EAAE;QAAE,QAAQ,EAAE,cAAc,CAAA;KAAE,GAAG,IAAI,CAAC;IAC5C,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB,WAAW,EAAE,KAAK,CAAC;QACjB,IAAI,EAAE,MAAM,CAAC;QACb,IAAI,EAAE,MAAM,CAAC;QACb,IAAI,EAAE,MAAM,CAAC;QACb,OAAO,CAAC,EAAE,MAAM,CAAC;QACjB,UAAU,CAAC,EAAE;YACX,SAAS,EAAE,MAAM,CAAC;YAClB,UAAU,EAAE,MAAM,CAAC;YACnB,UAAU,CAAC,EAAE,MAAM,CAAC;YACpB,oBAAoB,CAAC,EAAE,MAAM,CAAC;YAC9B,QAAQ,CAAC,EAAE,sBAAsB,GAAG,IAAI,CAAC;YACzC,GAAG,CAAC,EAAE,UAAU,GAAG,IAAI,CAAC;SACzB,CAAC;KACH,CAAC,CAAC;CACJ;AAyJD,wBAAsB,sBAAsB,CAC1C,EAAE,EAAE,qBAAqB,EACzB,WAAW,EAAE,GAAG,CAAC,MAAM,EAAE,WAAW,CAAC,EACrC,OAAO,EAAE,MAAM,EACf,WAAW,CAAC,EAAE,OAAO,GACpB,OAAO,CAAC,IAAI,CAAC,CA4Cf;AAKD,OAAO,EAAE,cAAc,EAAE,cAAc,EAAE,MAAM,uBAAuB,CAAC"}
|