@quolu/lattice 0.1.0 → 0.12.2
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 +87 -4
- package/bin/lattice-bridge.mjs +87 -0
- package/bin/lattice-dashboard.mjs +70 -0
- package/bin/lattice-mcp.mjs +9 -9
- package/bin/lattice.mjs +61 -8
- package/docs/bridge-setup.md +87 -0
- package/docs/schemas/lattice.plan_create_input.v1.schema.json +56 -0
- package/docs/schemas/lattice.plan_create_input.v2.schema.json +72 -0
- package/docs/schemas/lattice.plan_create_input.v3.schema.json +81 -0
- package/package.json +19 -7
- package/sensor/dist/bin/command-supervision.d.ts +1 -1
- package/sensor/dist/bin/command-supervision.js +4 -4
- package/sensor/dist/bin/command-supervision.js.map +1 -1
- package/sensor/dist/bin/fatal-handler.js +2 -2
- package/sensor/dist/bin/fatal-handler.js.map +1 -1
- package/sensor/dist/bin/{codegraph.js → lattice-sensor.js} +207 -328
- package/sensor/dist/bin/node-version-check.d.ts +7 -5
- package/sensor/dist/bin/node-version-check.d.ts.map +1 -1
- package/sensor/dist/bin/node-version-check.js +19 -14
- package/sensor/dist/bin/node-version-check.js.map +1 -1
- package/sensor/dist/context/index.d.ts +1 -1
- package/sensor/dist/context/index.js +6 -6
- package/sensor/dist/context/index.js.map +1 -1
- package/sensor/dist/db/index.d.ts +5 -5
- package/sensor/dist/db/index.d.ts.map +1 -1
- package/sensor/dist/db/index.js +7 -7
- package/sensor/dist/db/index.js.map +1 -1
- package/sensor/dist/db/migrations.js +1 -1
- package/sensor/dist/db/migrations.js.map +1 -1
- package/sensor/dist/db/queries.d.ts +1 -1
- package/sensor/dist/db/queries.js +5 -5
- package/sensor/dist/db/queries.js.map +1 -1
- package/sensor/dist/db/schema.sql +2 -2
- package/sensor/dist/db/sqlite-adapter.d.ts +2 -2
- package/sensor/dist/db/sqlite-adapter.js +3 -3
- package/sensor/dist/db/sqlite-adapter.js.map +1 -1
- package/sensor/dist/db/wal-valve.d.ts +1 -1
- package/sensor/dist/db/wal-valve.d.ts.map +1 -1
- package/sensor/dist/db/wal-valve.js +2 -2
- package/sensor/dist/db/wal-valve.js.map +1 -1
- package/sensor/dist/directory.d.ts +27 -63
- package/sensor/dist/directory.d.ts.map +1 -1
- package/sensor/dist/directory.js +78 -134
- package/sensor/dist/directory.js.map +1 -1
- package/sensor/dist/errors.d.ts +15 -15
- package/sensor/dist/errors.d.ts.map +1 -1
- package/sensor/dist/errors.js +21 -21
- package/sensor/dist/errors.js.map +1 -1
- package/sensor/dist/extraction/dynamic-import.d.ts +1 -1
- package/sensor/dist/extraction/dynamic-import.js +1 -1
- package/sensor/dist/extraction/extraction-version.d.ts +1 -1
- package/sensor/dist/extraction/extraction-version.js +1 -1
- package/sensor/dist/extraction/generated-detection.d.ts +1 -1
- package/sensor/dist/extraction/generated-detection.js +1 -1
- package/sensor/dist/extraction/grammars.d.ts +3 -3
- package/sensor/dist/extraction/grammars.js +5 -5
- package/sensor/dist/extraction/grammars.js.map +1 -1
- package/sensor/dist/extraction/index.d.ts +6 -6
- package/sensor/dist/extraction/index.js +50 -50
- package/sensor/dist/extraction/index.js.map +1 -1
- package/sensor/dist/extraction/kernel/decode.d.ts +1 -1
- package/sensor/dist/extraction/kernel/decode.js +1 -1
- package/sensor/dist/extraction/kernel/index.d.ts +3 -3
- package/sensor/dist/extraction/kernel/index.js +6 -6
- package/sensor/dist/extraction/kernel/index.js.map +1 -1
- package/sensor/dist/extraction/kernel/layout.d.ts +1 -1
- package/sensor/dist/extraction/kernel/layout.js +1 -1
- package/sensor/dist/extraction/kernel/loader.d.ts +6 -6
- package/sensor/dist/extraction/kernel/loader.js +13 -13
- package/sensor/dist/extraction/kernel/loader.js.map +1 -1
- package/sensor/dist/extraction/languages/cfquery.d.ts +1 -1
- package/sensor/dist/extraction/languages/cfquery.js +1 -1
- package/sensor/dist/extraction/languages/lua.d.ts +11 -0
- package/sensor/dist/extraction/languages/lua.d.ts.map +1 -1
- package/sensor/dist/extraction/languages/lua.js +1 -0
- package/sensor/dist/extraction/languages/lua.js.map +1 -1
- package/sensor/dist/extraction/parse-pool.d.ts +5 -5
- package/sensor/dist/extraction/parse-pool.d.ts.map +1 -1
- package/sensor/dist/extraction/parse-pool.js +4 -4
- package/sensor/dist/extraction/parse-worker.js +1 -1
- package/sensor/dist/extraction/parse-worker.js.map +1 -1
- package/sensor/dist/extraction/store-writer.d.ts +1 -1
- package/sensor/dist/extraction/store-writer.js +1 -1
- package/sensor/dist/extraction/svelte-extractor.d.ts +1 -1
- package/sensor/dist/extraction/svelte-extractor.js +1 -1
- package/sensor/dist/extraction/tree-sitter-helpers.js +1 -1
- package/sensor/dist/extraction/tree-sitter.d.ts +2 -2
- package/sensor/dist/extraction/tree-sitter.d.ts.map +1 -1
- package/sensor/dist/extraction/tree-sitter.js +71 -4
- package/sensor/dist/extraction/tree-sitter.js.map +1 -1
- package/sensor/dist/extraction/wasm-runtime-flags.d.ts +2 -2
- package/sensor/dist/extraction/wasm-runtime-flags.d.ts.map +1 -1
- package/sensor/dist/extraction/wasm-runtime-flags.js +5 -5
- package/sensor/dist/extraction/wasm-runtime-flags.js.map +1 -1
- package/sensor/dist/index.d.ts +36 -36
- package/sensor/dist/index.d.ts.map +1 -1
- package/sensor/dist/index.js +71 -71
- package/sensor/dist/index.js.map +1 -1
- package/sensor/dist/mcp/daemon-manager.js +1 -1
- package/sensor/dist/mcp/daemon-paths.d.ts +3 -3
- package/sensor/dist/mcp/daemon-paths.js +7 -7
- package/sensor/dist/mcp/daemon-paths.js.map +1 -1
- package/sensor/dist/mcp/daemon-registry.d.ts +2 -2
- package/sensor/dist/mcp/daemon-registry.js +5 -5
- package/sensor/dist/mcp/daemon.d.ts +7 -7
- package/sensor/dist/mcp/daemon.d.ts.map +1 -1
- package/sensor/dist/mcp/daemon.js +21 -21
- package/sensor/dist/mcp/daemon.js.map +1 -1
- package/sensor/dist/mcp/dynamic-boundaries.js +1 -1
- package/sensor/dist/mcp/engine.d.ts +9 -9
- package/sensor/dist/mcp/engine.d.ts.map +1 -1
- package/sensor/dist/mcp/engine.js +44 -44
- package/sensor/dist/mcp/engine.js.map +1 -1
- package/sensor/dist/mcp/index.d.ts +14 -14
- package/sensor/dist/mcp/index.d.ts.map +1 -1
- package/sensor/dist/mcp/index.js +41 -41
- package/sensor/dist/mcp/index.js.map +1 -1
- package/sensor/dist/mcp/liveness-watchdog.js +7 -7
- package/sensor/dist/mcp/liveness-watchdog.js.map +1 -1
- package/sensor/dist/mcp/ppid-watchdog.d.ts +3 -3
- package/sensor/dist/mcp/ppid-watchdog.js +2 -2
- package/sensor/dist/mcp/proxy.d.ts.map +1 -1
- package/sensor/dist/mcp/proxy.js +37 -37
- package/sensor/dist/mcp/proxy.js.map +1 -1
- package/sensor/dist/mcp/query-pool.d.ts +3 -3
- package/sensor/dist/mcp/query-pool.js +7 -7
- package/sensor/dist/mcp/query-pool.js.map +1 -1
- package/sensor/dist/mcp/query-worker.d.ts +2 -2
- package/sensor/dist/mcp/query-worker.js +7 -7
- package/sensor/dist/mcp/query-worker.js.map +1 -1
- package/sensor/dist/mcp/server-instructions.d.ts +10 -12
- package/sensor/dist/mcp/server-instructions.d.ts.map +1 -1
- package/sensor/dist/mcp/server-instructions.js +39 -37
- package/sensor/dist/mcp/server-instructions.js.map +1 -1
- package/sensor/dist/mcp/session.d.ts +2 -2
- package/sensor/dist/mcp/session.js +18 -18
- package/sensor/dist/mcp/session.js.map +1 -1
- package/sensor/dist/mcp/startup-handshake.d.ts +3 -3
- package/sensor/dist/mcp/startup-handshake.d.ts.map +1 -1
- package/sensor/dist/mcp/startup-handshake.js +3 -3
- package/sensor/dist/mcp/startup-handshake.js.map +1 -1
- package/sensor/dist/mcp/tools.d.ts +53 -53
- package/sensor/dist/mcp/tools.d.ts.map +1 -1
- package/sensor/dist/mcp/tools.js +180 -216
- package/sensor/dist/mcp/tools.js.map +1 -1
- package/sensor/dist/mcp/transport.d.ts +1 -1
- package/sensor/dist/mcp/transport.js +6 -6
- package/sensor/dist/mcp/transport.js.map +1 -1
- package/sensor/dist/mcp/version.d.ts +2 -2
- package/sensor/dist/mcp/version.d.ts.map +1 -1
- package/sensor/dist/mcp/version.js +3 -3
- package/sensor/dist/mcp/version.js.map +1 -1
- package/sensor/dist/project-config.d.ts +6 -6
- package/sensor/dist/project-config.d.ts.map +1 -1
- package/sensor/dist/project-config.js +10 -10
- package/sensor/dist/project-config.js.map +1 -1
- package/sensor/dist/resolution/callback-synthesizer.js +4 -4
- package/sensor/dist/resolution/callback-synthesizer.js.map +1 -1
- package/sensor/dist/resolution/frameworks/drupal.d.ts +3 -3
- package/sensor/dist/resolution/frameworks/drupal.js +3 -3
- package/sensor/dist/resolution/frameworks/fabric.js +1 -1
- package/sensor/dist/resolution/frameworks/fabric.js.map +1 -1
- package/sensor/dist/resolution/frameworks/java.js +1 -1
- package/sensor/dist/resolution/frameworks/java.js.map +1 -1
- package/sensor/dist/resolution/frameworks/svelte.js +1 -1
- package/sensor/dist/resolution/frameworks/svelte.js.map +1 -1
- package/sensor/dist/resolution/goframe-synthesizer.d.ts +1 -1
- package/sensor/dist/resolution/goframe-synthesizer.js +1 -1
- package/sensor/dist/resolution/index.d.ts +1 -1
- package/sensor/dist/resolution/index.js +9 -9
- package/sensor/dist/resolution/index.js.map +1 -1
- package/sensor/dist/resolution/name-matcher.js +2 -2
- package/sensor/dist/resolution/name-matcher.js.map +1 -1
- package/sensor/dist/resolution/resolver-pool.d.ts +2 -2
- package/sensor/dist/resolution/resolver-pool.js +4 -4
- package/sensor/dist/resolution/resolver-pool.js.map +1 -1
- package/sensor/dist/resolution/resolver-worker.js +2 -2
- package/sensor/dist/resolution/resolver-worker.js.map +1 -1
- package/sensor/dist/resolution/workspace-packages.js +1 -1
- package/sensor/dist/resolution/workspace-packages.js.map +1 -1
- package/sensor/dist/search/identifier-segments.d.ts +1 -1
- package/sensor/dist/search/identifier-segments.js +1 -1
- package/sensor/dist/search/query-utils.d.ts +1 -0
- package/sensor/dist/search/query-utils.d.ts.map +1 -1
- package/sensor/dist/search/query-utils.js +10 -3
- package/sensor/dist/search/query-utils.js.map +1 -1
- package/sensor/dist/sync/git-hooks.d.ts +9 -9
- package/sensor/dist/sync/git-hooks.d.ts.map +1 -1
- package/sensor/dist/sync/git-hooks.js +15 -15
- package/sensor/dist/sync/git-hooks.js.map +1 -1
- package/sensor/dist/sync/watch-policy.d.ts +2 -2
- package/sensor/dist/sync/watch-policy.js +5 -5
- package/sensor/dist/sync/watch-policy.js.map +1 -1
- package/sensor/dist/sync/watcher.d.ts +2 -2
- package/sensor/dist/sync/watcher.d.ts.map +1 -1
- package/sensor/dist/sync/watcher.js +16 -16
- package/sensor/dist/sync/watcher.js.map +1 -1
- package/sensor/dist/sync/worktree.d.ts +5 -5
- package/sensor/dist/sync/worktree.d.ts.map +1 -1
- package/sensor/dist/sync/worktree.js +9 -9
- package/sensor/dist/sync/worktree.js.map +1 -1
- package/sensor/dist/telemetry/index.d.ts +8 -8
- package/sensor/dist/telemetry/index.d.ts.map +1 -1
- package/sensor/dist/telemetry/index.js +16 -16
- package/sensor/dist/telemetry/index.js.map +1 -1
- package/sensor/dist/types.d.ts +2 -2
- package/sensor/dist/types.js +1 -1
- package/sensor/dist/ui/color.d.ts +2 -2
- package/sensor/dist/ui/color.js +2 -2
- package/sensor/dist/ui/glyphs.d.ts +3 -3
- package/sensor/dist/ui/glyphs.js +7 -7
- package/sensor/dist/ui/glyphs.js.map +1 -1
- package/sensor/dist/utils.d.ts +4 -4
- package/sensor/dist/utils.js +8 -8
- package/sensor/dist/utils.js.map +1 -1
- package/sensor/package.json +8 -13
- package/src/artifact-contracts.mjs +2 -2
- package/src/boundary-compiler.mjs +28 -28
- package/src/boundary-observation-compiler-v2.mjs +10 -10
- package/src/bounded-seam.mjs +144 -0
- package/src/bridge-cli.mjs +227 -0
- package/src/bridge-config.mjs +346 -0
- package/src/bridge-daemon.mjs +328 -0
- package/src/bridge-launch-agent.mjs +311 -0
- package/src/bridge-server.mjs +309 -0
- package/src/cli-help.mjs +163 -0
- package/src/control-compiler.mjs +30 -30
- package/src/dag-chain.mjs +261 -0
- package/src/factory-diagnostics.mjs +8 -7
- package/src/hash-chain.mjs +76 -0
- package/src/node-version-guard.mjs +5 -4
- package/src/project-cli.mjs +392 -0
- package/src/project-identity.mjs +71 -0
- package/src/rc1-evidence-bundle.mjs +16 -16
- package/src/rc1-v4-campaign.mjs +15 -14
- package/src/rc1-v5-artifact-set.mjs +2 -2
- package/src/rc1-v5-campaign.mjs +15 -14
- package/src/rc1-v6-artifact-set.mjs +18 -18
- package/src/rc1-v6-campaign.mjs +16 -16
- package/src/rc1-v6-causal-binding.mjs +16 -14
- package/src/rc1-v6-measurement.mjs +20 -38
- package/src/rc2-artifact-set.mjs +45 -40
- package/src/rc2-campaign.mjs +48 -66
- package/src/rc2-delivery-policy-front-end.mjs +30 -30
- package/src/rc2-rc1-transfer-front-end.mjs +5 -5
- package/src/rc3-actual-dogfood.mjs +6 -6
- package/src/rc3-dogfood-scaffold.mjs +12 -7
- package/src/rc3-scripted-campaign.mjs +75 -21
- package/src/rc4-stage1-dogfood.mjs +24 -7
- package/src/runtime-cli.mjs +2424 -45
- package/src/runtime-contracts.mjs +7 -7
- package/src/runtime-control-store.mjs +547 -0
- package/src/runtime-controller-protocol.mjs +517 -0
- package/src/runtime-direct-os-observer.mjs +284 -0
- package/src/runtime-engine.mjs +2 -2
- package/src/runtime-errors.mjs +1 -1
- package/src/runtime-event-store.mjs +15 -43
- package/src/runtime-front-end.mjs +26 -26
- package/src/runtime-gate-store.mjs +477 -0
- package/src/runtime-hold-recompile.mjs +214 -23
- package/src/runtime-lifecycle-lock.mjs +290 -0
- package/src/runtime-managed-supervisor.mjs +1276 -0
- package/src/runtime-multi-epoch-store.mjs +761 -0
- package/src/runtime-projection.mjs +62 -0
- package/src/seam-transform.mjs +38 -38
- package/src/{codegraph-adapter.mjs → sensor-adapter.mjs} +7 -7
- package/src/sensor-cli.mjs +107 -0
- package/src/sensor-runtime.mjs +48 -0
- package/src/timestamp-contract.mjs +8 -0
- package/src/todo-chain.mjs +178 -0
- package/src/todo-cli.mjs +1032 -0
- package/src/todo-contracts.mjs +501 -0
- package/src/todo-dashboard-registry.mjs +318 -0
- package/src/todo-gantt-html.mjs +416 -0
- package/src/todo-gantt-layout.mjs +603 -0
- package/src/todo-gantt-live.mjs +269 -0
- package/src/todo-gantt-presentation.mjs +217 -0
- package/src/todo-gantt-svg.mjs +249 -0
- package/src/todo-markdown-renderer.mjs +260 -0
- package/src/todo-migration.mjs +260 -0
- package/src/todo-narrative-anchor.mjs +130 -0
- package/src/todo-revision.mjs +425 -0
- package/src/todo-status.mjs +340 -0
- package/src/todo-store.mjs +3451 -0
- package/src/treatment-compiler.mjs +28 -28
- package/src/treatment-runner.mjs +42 -44
- package/sensor/dist/bin/codegraph.d.ts +0 -26
- package/sensor/dist/bin/codegraph.d.ts.map +0 -1
- package/sensor/dist/bin/codegraph.js.map +0 -1
- package/sensor/dist/bin/uninstall.d.ts +0 -14
- package/sensor/dist/bin/uninstall.d.ts.map +0 -1
- package/sensor/dist/bin/uninstall.js +0 -36
- package/sensor/dist/bin/uninstall.js.map +0 -1
- package/sensor/dist/installer/beta-signup.d.ts +0 -54
- package/sensor/dist/installer/beta-signup.d.ts.map +0 -1
- package/sensor/dist/installer/beta-signup.js +0 -178
- package/sensor/dist/installer/beta-signup.js.map +0 -1
- package/sensor/dist/installer/config-writer.d.ts +0 -28
- package/sensor/dist/installer/config-writer.d.ts.map +0 -1
- package/sensor/dist/installer/config-writer.js +0 -91
- package/sensor/dist/installer/config-writer.js.map +0 -1
- package/sensor/dist/installer/index.d.ts +0 -142
- package/sensor/dist/installer/index.d.ts.map +0 -1
- package/sensor/dist/installer/index.js +0 -622
- package/sensor/dist/installer/index.js.map +0 -1
- package/sensor/dist/installer/instructions-template.d.ts +0 -41
- package/sensor/dist/installer/instructions-template.d.ts.map +0 -1
- package/sensor/dist/installer/instructions-template.js +0 -53
- package/sensor/dist/installer/instructions-template.js.map +0 -1
- package/sensor/dist/installer/targets/antigravity.d.ts +0 -57
- package/sensor/dist/installer/targets/antigravity.d.ts.map +0 -1
- package/sensor/dist/installer/targets/antigravity.js +0 -308
- package/sensor/dist/installer/targets/antigravity.js.map +0 -1
- package/sensor/dist/installer/targets/claude.d.ts +0 -62
- package/sensor/dist/installer/targets/claude.d.ts.map +0 -1
- package/sensor/dist/installer/targets/claude.js +0 -454
- package/sensor/dist/installer/targets/claude.js.map +0 -1
- package/sensor/dist/installer/targets/codex.d.ts +0 -18
- package/sensor/dist/installer/targets/codex.d.ts.map +0 -1
- package/sensor/dist/installer/targets/codex.js +0 -185
- package/sensor/dist/installer/targets/codex.js.map +0 -1
- package/sensor/dist/installer/targets/cursor.d.ts +0 -35
- package/sensor/dist/installer/targets/cursor.d.ts.map +0 -1
- package/sensor/dist/installer/targets/cursor.js +0 -254
- package/sensor/dist/installer/targets/cursor.js.map +0 -1
- package/sensor/dist/installer/targets/gemini.d.ts +0 -26
- package/sensor/dist/installer/targets/gemini.d.ts.map +0 -1
- package/sensor/dist/installer/targets/gemini.js +0 -165
- package/sensor/dist/installer/targets/gemini.js.map +0 -1
- package/sensor/dist/installer/targets/hermes.d.ts +0 -18
- package/sensor/dist/installer/targets/hermes.d.ts.map +0 -1
- package/sensor/dist/installer/targets/hermes.js +0 -359
- package/sensor/dist/installer/targets/hermes.js.map +0 -1
- package/sensor/dist/installer/targets/kiro.d.ts +0 -27
- package/sensor/dist/installer/targets/kiro.d.ts.map +0 -1
- package/sensor/dist/installer/targets/kiro.js +0 -178
- package/sensor/dist/installer/targets/kiro.js.map +0 -1
- package/sensor/dist/installer/targets/opencode.d.ts +0 -38
- package/sensor/dist/installer/targets/opencode.d.ts.map +0 -1
- package/sensor/dist/installer/targets/opencode.js +0 -288
- package/sensor/dist/installer/targets/opencode.js.map +0 -1
- package/sensor/dist/installer/targets/registry.d.ts +0 -35
- package/sensor/dist/installer/targets/registry.d.ts.map +0 -1
- package/sensor/dist/installer/targets/registry.js +0 -91
- package/sensor/dist/installer/targets/registry.js.map +0 -1
- package/sensor/dist/installer/targets/shared.d.ts +0 -101
- package/sensor/dist/installer/targets/shared.d.ts.map +0 -1
- package/sensor/dist/installer/targets/shared.js +0 -264
- package/sensor/dist/installer/targets/shared.js.map +0 -1
- package/sensor/dist/installer/targets/toml.d.ts +0 -52
- package/sensor/dist/installer/targets/toml.d.ts.map +0 -1
- package/sensor/dist/installer/targets/toml.js +0 -147
- package/sensor/dist/installer/targets/toml.js.map +0 -1
- package/sensor/dist/installer/targets/types.d.ts +0 -108
- package/sensor/dist/installer/targets/types.d.ts.map +0 -1
- package/sensor/dist/installer/targets/types.js +0 -16
- package/sensor/dist/installer/targets/types.js.map +0 -1
- package/sensor/dist/upgrade/index.d.ts +0 -171
- package/sensor/dist/upgrade/index.d.ts.map +0 -1
- package/sensor/dist/upgrade/index.js +0 -659
- package/sensor/dist/upgrade/index.js.map +0 -1
- package/sensor/dist/upgrade/remove-binary.d.ts +0 -87
- package/sensor/dist/upgrade/remove-binary.d.ts.map +0 -1
- package/sensor/dist/upgrade/remove-binary.js +0 -289
- package/sensor/dist/upgrade/remove-binary.js.map +0 -1
- package/sensor/dist/upgrade/update-check.d.ts +0 -92
- package/sensor/dist/upgrade/update-check.d.ts.map +0 -1
- package/sensor/dist/upgrade/update-check.js +0 -258
- package/sensor/dist/upgrade/update-check.js.map +0 -1
- package/src/bootstrap.mjs +0 -88
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* MCP Tool Definitions
|
|
3
3
|
*
|
|
4
|
-
* Defines the tools exposed by the
|
|
4
|
+
* Defines the tools exposed by the LatticeSensor MCP server.
|
|
5
5
|
*/
|
|
6
|
-
import type
|
|
6
|
+
import type LatticeSensor from '../index';
|
|
7
7
|
import type { QueryPool } from './query-pool';
|
|
8
8
|
import type { PendingFile } from '../sync';
|
|
9
9
|
/**
|
|
10
|
-
* An expected, recoverable "
|
|
10
|
+
* An expected, recoverable "lattice sensor can't serve this" condition — most
|
|
11
11
|
* importantly a project with no index. The dispatch catch converts these to
|
|
12
12
|
* SUCCESS-shaped responses (guidance text, NO isError): an `isError: true`
|
|
13
13
|
* early in a session teaches the agent the toolset is broken and it stops
|
|
14
|
-
* calling
|
|
14
|
+
* calling lattice sensor entirely (observed repeatedly), which is exactly wrong
|
|
15
15
|
* for conditions the agent can simply work around (use built-in tools for
|
|
16
16
|
* that codebase / pass projectPath). isError is reserved for "stop trying"
|
|
17
17
|
* cases: security refusals ({@link PathRefusalError}) and genuine
|
|
@@ -28,13 +28,13 @@ export declare class PathRefusalError extends Error {
|
|
|
28
28
|
/**
|
|
29
29
|
* ADR 0049 Decision 5②: a genuine malfunction opening the default project's
|
|
30
30
|
* index — DB open failure, schema mismatch, integrity error, or lock
|
|
31
|
-
* contention — as OPPOSED to the project simply having no `.
|
|
31
|
+
* contention — as OPPOSED to the project simply having no `.lattice/sensor/` at
|
|
32
32
|
* all (that stays {@link NotIndexedError}, the success-shaped guidance case).
|
|
33
33
|
* This is fail-closed by design: it stays `isError: true` (via `execute`'s
|
|
34
34
|
* catch, same as {@link PathRefusalError}) rather than the NotIndexedError
|
|
35
35
|
* success-shaped guidance, because silently degrading to "no default
|
|
36
36
|
* project" here would hide a broken index behind text that reads as "just
|
|
37
|
-
* run `
|
|
37
|
+
* run `lattice sensor init . --json`" — actively misleading for a project that WAS
|
|
38
38
|
* indexed and IS now broken.
|
|
39
39
|
*/
|
|
40
40
|
export declare class IndexOpenError extends Error {
|
|
@@ -62,13 +62,13 @@ export declare class IndexOpenError extends Error {
|
|
|
62
62
|
*/
|
|
63
63
|
export declare function normalizeQuerySpelling(query: string): string;
|
|
64
64
|
/**
|
|
65
|
-
* Calculate the recommended number of
|
|
65
|
+
* Calculate the recommended number of lattice_sensor_explore calls based on project size.
|
|
66
66
|
* Larger codebases need more exploration calls to cover their surface area,
|
|
67
67
|
* but smaller ones should use fewer to avoid unnecessary overhead.
|
|
68
68
|
*/
|
|
69
69
|
export declare function getExploreBudget(fileCount: number): number;
|
|
70
70
|
/**
|
|
71
|
-
* Adaptive output budget for `
|
|
71
|
+
* Adaptive output budget for `lattice_sensor_explore`, scaled to project size.
|
|
72
72
|
*
|
|
73
73
|
* Smaller codebases get a tighter total cap, fewer default files, smaller
|
|
74
74
|
* per-file cap, and tighter clustering — so a focused query on a 100-file
|
|
@@ -136,7 +136,7 @@ export declare function formatStaleFooter(stale: PendingFile[]): string;
|
|
|
136
136
|
* `getPendingFiles()` is empty, so the per-file banner above can't fire even
|
|
137
137
|
* though the index is now FROZEN and silently drifting stale. Leads with the
|
|
138
138
|
* agent-actionable instruction (Read directly) and carries the reason, which
|
|
139
|
-
* already names the operator remedy (`
|
|
139
|
+
* already names the operator remedy (`lattice sensor sync . --json` / git hooks).
|
|
140
140
|
*/
|
|
141
141
|
export declare function formatDegradedBanner(reason: string | null): string;
|
|
142
142
|
/**
|
|
@@ -161,7 +161,7 @@ export interface ToolDefinition {
|
|
|
161
161
|
* doesn't advertise `readOnlyHint: true` (issue #1018).
|
|
162
162
|
*
|
|
163
163
|
* The field is purely additive — a client that predates annotations ignores it
|
|
164
|
-
* — so
|
|
164
|
+
* — so lattice sensor advertises these even though `initialize` still negotiates the
|
|
165
165
|
* 2024-11-05 protocol version.
|
|
166
166
|
*
|
|
167
167
|
* https://modelcontextprotocol.io/specification/2025-06-18/schema#toolannotations
|
|
@@ -195,9 +195,9 @@ export interface ToolResult {
|
|
|
195
195
|
isError?: boolean;
|
|
196
196
|
}
|
|
197
197
|
/**
|
|
198
|
-
* All
|
|
198
|
+
* All LatticeSensor MCP tools
|
|
199
199
|
*
|
|
200
|
-
* Designed for minimal context usage - use
|
|
200
|
+
* Designed for minimal context usage - use lattice_sensor_explore as the primary tool
|
|
201
201
|
* (one call usually answers the whole question), and only use other tools for
|
|
202
202
|
* targeted follow-up queries.
|
|
203
203
|
*
|
|
@@ -207,12 +207,12 @@ export declare const tools: ToolDefinition[];
|
|
|
207
207
|
/**
|
|
208
208
|
* Allowlist-filtered tool definitions WITHOUT an engine — the static surface the
|
|
209
209
|
* proxy answers `tools/list` with before any project is open. Mirrors
|
|
210
|
-
* `ToolHandler.getTools()` in the no-
|
|
210
|
+
* `ToolHandler.getTools()` in the no-LatticeSensor case (the dynamic per-repo budget
|
|
211
211
|
* note in a description only adds once `cg` is loaded; the schemas are static).
|
|
212
212
|
*/
|
|
213
213
|
export declare function getStaticTools(): ToolDefinition[];
|
|
214
214
|
/**
|
|
215
|
-
* Tool handler that executes tools against a
|
|
215
|
+
* Tool handler that executes tools against a LatticeSensor instance
|
|
216
216
|
*
|
|
217
217
|
* Supports cross-project queries via the projectPath parameter.
|
|
218
218
|
* Other projects are opened on-demand and cached for performance.
|
|
@@ -226,7 +226,7 @@ export declare class ToolHandler {
|
|
|
226
226
|
private queryPool;
|
|
227
227
|
private openFailure;
|
|
228
228
|
private executionMode;
|
|
229
|
-
constructor(cg:
|
|
229
|
+
constructor(cg: LatticeSensor | null);
|
|
230
230
|
/**
|
|
231
231
|
* Engine-only: attach (or detach with null) the worker-thread query pool. The
|
|
232
232
|
* shared daemon sets this once its default project is open; the workers each
|
|
@@ -235,24 +235,24 @@ export declare class ToolHandler {
|
|
|
235
235
|
*/
|
|
236
236
|
setQueryPool(pool: QueryPool | null): void;
|
|
237
237
|
/**
|
|
238
|
-
* Update the default
|
|
238
|
+
* Update the default LatticeSensor instance (e.g. after lazy initialization).
|
|
239
239
|
* A successful open supersedes any previously recorded open failure.
|
|
240
240
|
*/
|
|
241
|
-
|
|
241
|
+
setDefaultLatticeSensor(cg: LatticeSensor): void;
|
|
242
242
|
/**
|
|
243
243
|
* ADR 0049 Decision 5②: record that the DEFAULT project's index failed to
|
|
244
|
-
* open for a reason OTHER than "no .
|
|
245
|
-
* this from its init catch block. `
|
|
244
|
+
* open for a reason OTHER than "no .lattice/sensor/ found" — the engine calls
|
|
245
|
+
* this from its init catch block. `getLatticeSensor()` throws it (fail closed)
|
|
246
246
|
* instead of the NotIndexedError guidance the next time a tool call needs
|
|
247
247
|
* the default project, so the failure surfaces as `isError: true` rather
|
|
248
|
-
* than being silently absorbed into "just run
|
|
248
|
+
* than being silently absorbed into "just run lattice sensor init . --json" prose.
|
|
249
249
|
*/
|
|
250
250
|
setOpenFailure(err: Error | null): void;
|
|
251
251
|
/**
|
|
252
252
|
* ADR 0049 Decision 5④: record this session's execution mode
|
|
253
253
|
* (`daemon`/`direct`) and the typed reason direct mode was chosen (or
|
|
254
254
|
* `'daemon'` when routed through the shared daemon). Surfaced verbatim by
|
|
255
|
-
* `
|
|
255
|
+
* `lattice_sensor_status`.
|
|
256
256
|
*/
|
|
257
257
|
setExecutionMode(mode: 'daemon' | 'direct', reason: string): void;
|
|
258
258
|
/** The execution mode last recorded via {@link setExecutionMode}. */
|
|
@@ -284,40 +284,40 @@ export declare class ToolHandler {
|
|
|
284
284
|
*/
|
|
285
285
|
setDefaultProjectHint(searchedPath: string): void;
|
|
286
286
|
/**
|
|
287
|
-
* Whether a default
|
|
287
|
+
* Whether a default LatticeSensor instance is available
|
|
288
288
|
*/
|
|
289
|
-
|
|
289
|
+
hasDefaultLatticeSensor(): boolean;
|
|
290
290
|
/**
|
|
291
|
-
* Optional allowlist of exposed tools, parsed from the
|
|
291
|
+
* Optional allowlist of exposed tools, parsed from the LATTICE_SENSOR_MCP_TOOLS
|
|
292
292
|
* env var (comma-separated short names, e.g. "trace,search,node,context").
|
|
293
|
-
* Unset/empty →
|
|
293
|
+
* Unset/empty → the contracted eight-tool surface. Lets an operator (or an A/B harness)
|
|
294
294
|
* trim the tool surface without rebuilding the client config; the ablated
|
|
295
295
|
* tool is then truly absent from ListTools rather than merely denied on call.
|
|
296
|
-
* Matching is on the short form, so "node" and "
|
|
296
|
+
* Matching is on the short form, so "node" and "lattice_sensor_node" both work.
|
|
297
297
|
*/
|
|
298
298
|
private toolAllowlist;
|
|
299
|
-
/** Whether a tool name passes the
|
|
299
|
+
/** Whether a tool name passes the LATTICE_SENSOR_MCP_TOOLS allowlist (if any). */
|
|
300
300
|
private isToolAllowed;
|
|
301
301
|
/**
|
|
302
302
|
* Get tool definitions with dynamic descriptions based on project size.
|
|
303
|
-
* The
|
|
304
|
-
* scaled to the number of indexed files. Honors the
|
|
303
|
+
* The lattice_sensor_explore tool description includes a budget recommendation
|
|
304
|
+
* scaled to the number of indexed files. Honors the LATTICE_SENSOR_MCP_TOOLS
|
|
305
305
|
* allowlist so a trimmed surface is reflected in ListTools.
|
|
306
306
|
*/
|
|
307
307
|
getTools(): ToolDefinition[];
|
|
308
308
|
/**
|
|
309
|
-
* Get
|
|
309
|
+
* Get LatticeSensor instance for a project
|
|
310
310
|
*
|
|
311
|
-
* If projectPath is provided, opens that project's
|
|
312
|
-
* Otherwise returns the default
|
|
311
|
+
* If projectPath is provided, opens that project's LatticeSensor (cached).
|
|
312
|
+
* Otherwise returns the default LatticeSensor instance.
|
|
313
313
|
*
|
|
314
|
-
* Walks up parent directories to find the nearest .
|
|
314
|
+
* Walks up parent directories to find the nearest .lattice/sensor/ folder,
|
|
315
315
|
* similar to how git finds .git/ directories.
|
|
316
316
|
*/
|
|
317
|
-
private
|
|
317
|
+
private getLatticeSensor;
|
|
318
318
|
/**
|
|
319
|
-
* Heal a long-lived connection whose `.
|
|
320
|
-
* at the same path (a worktree recreated, or `rm -rf .
|
|
319
|
+
* Heal a long-lived connection whose `.lattice/sensor/` was removed and recreated
|
|
320
|
+
* at the same path (a worktree recreated, or `rm -rf .lattice/sensor` + re-init)
|
|
321
321
|
* before handing it to a tool. Otherwise the daemon keeps serving the
|
|
322
322
|
* pre-removal snapshot from its now-unlinked file handle until restart — and
|
|
323
323
|
* because the daemon registry is keyed by path, a same-path recreate routes
|
|
@@ -360,7 +360,7 @@ export declare class ToolHandler {
|
|
|
360
360
|
* notice when the resolved index belongs to a different git working tree than
|
|
361
361
|
* the caller's (issue #155). Without this, an agent in a nested worktree
|
|
362
362
|
* silently trusts main-branch results. No-op on error results and when there
|
|
363
|
-
* is no mismatch. `
|
|
363
|
+
* is no mismatch. `lattice_sensor_status` is excluded — it embeds its own verbose
|
|
364
364
|
* warning — so it stays out of this path.
|
|
365
365
|
*/
|
|
366
366
|
private withWorktreeNotice;
|
|
@@ -398,13 +398,13 @@ export declare class ToolHandler {
|
|
|
398
398
|
executeReadTool(toolName: string, args: Record<string, unknown>): Promise<ToolResult>;
|
|
399
399
|
/**
|
|
400
400
|
* Pure dispatch over the read tools — the switch, with no gate, no notices, no
|
|
401
|
-
* allowlist/validation (the caller owns those). `
|
|
401
|
+
* allowlist/validation (the caller owns those). `lattice_sensor_status` is handled
|
|
402
402
|
* on the main thread in {@link execute} and never reaches here. May throw
|
|
403
403
|
* NotIndexed/PathRefusal, which {@link executeReadTool} classifies.
|
|
404
404
|
*/
|
|
405
405
|
private dispatchTool;
|
|
406
406
|
/**
|
|
407
|
-
* Handle
|
|
407
|
+
* Handle lattice_sensor_search
|
|
408
408
|
*/
|
|
409
409
|
private handleSearch;
|
|
410
410
|
/**
|
|
@@ -418,15 +418,15 @@ export declare class ToolHandler {
|
|
|
418
418
|
/** Section heading for one distinct definition in grouped output. */
|
|
419
419
|
private definitionHeading;
|
|
420
420
|
/**
|
|
421
|
-
* Handle
|
|
421
|
+
* Handle lattice_sensor_callers
|
|
422
422
|
*/
|
|
423
423
|
private handleCallers;
|
|
424
424
|
/**
|
|
425
|
-
* Handle
|
|
425
|
+
* Handle lattice_sensor_callees
|
|
426
426
|
*/
|
|
427
427
|
private handleCallees;
|
|
428
428
|
/**
|
|
429
|
-
* Handle
|
|
429
|
+
* Handle lattice_sensor_impact
|
|
430
430
|
*/
|
|
431
431
|
private handleImpact;
|
|
432
432
|
/**
|
|
@@ -437,7 +437,7 @@ export declare class ToolHandler {
|
|
|
437
437
|
*/
|
|
438
438
|
private synthEdgeNote;
|
|
439
439
|
/**
|
|
440
|
-
* Flow-from-named-symbols: an agent's
|
|
440
|
+
* Flow-from-named-symbols: an agent's lattice_sensor_explore query is a bag of
|
|
441
441
|
* symbol names that usually spans the flow it's investigating (e.g.
|
|
442
442
|
* "PmsProductController getList PmsProductService list PmsProductServiceImpl").
|
|
443
443
|
* Surface the longest call chain AMONG those named symbols — scoped to what the
|
|
@@ -473,7 +473,7 @@ export declare class ToolHandler {
|
|
|
473
473
|
* the concrete target is chosen at runtime from N implementations, so no single
|
|
474
474
|
* static edge is "the answer" — the implementations ARE the continuations. We
|
|
475
475
|
* announce the supertype, its TRUE implementer count, and a few concrete targets,
|
|
476
|
-
* then steer to
|
|
476
|
+
* then steer to lattice_sensor_explore. Graph-only, query-time, zero mutation; the
|
|
477
477
|
* caller fires it ONLY for an UNCOVERED named token, so a connected flow is silent.
|
|
478
478
|
*
|
|
479
479
|
* Robust to FTS sampling bias: the same-name family is a capped FTS sample that
|
|
@@ -506,7 +506,7 @@ export declare class ToolHandler {
|
|
|
506
506
|
* PageRank) from the query's matched SEED nodes over the call/reference graph.
|
|
507
507
|
*
|
|
508
508
|
* This is the ranking signal text search (FTS/bm25) CANNOT provide, and it's
|
|
509
|
-
*
|
|
509
|
+
* lattice sensor's home turf: relevance by STRUCTURE, not words. A file whose
|
|
510
510
|
* symbols are call-connected to the matched cluster accrues walk mass and
|
|
511
511
|
* ranks high; a lone TEXT match — e.g. `LensSwitcher.swift` matched the word
|
|
512
512
|
* "switch" from `switchOrganization`, but calls none of `setUser`/`fetchUser`
|
|
@@ -519,11 +519,11 @@ export declare class ToolHandler {
|
|
|
519
519
|
*/
|
|
520
520
|
private computeGraphRelevance;
|
|
521
521
|
/**
|
|
522
|
-
* Handle
|
|
522
|
+
* Handle lattice_sensor_explore — deep exploration in a single call
|
|
523
523
|
*
|
|
524
524
|
* Strategy: find relevant symbols via graph traversal, group by file,
|
|
525
525
|
* then read contiguous file sections covering all symbols per file.
|
|
526
|
-
* This replaces multiple
|
|
526
|
+
* This replaces multiple lattice_sensor_node + Read calls.
|
|
527
527
|
*
|
|
528
528
|
* Output size is adaptive to project file count via
|
|
529
529
|
* `getExploreOutputBudget` — see #185 for why a fixed 35k cap was a
|
|
@@ -531,7 +531,7 @@ export declare class ToolHandler {
|
|
|
531
531
|
*/
|
|
532
532
|
private handleExplore;
|
|
533
533
|
/**
|
|
534
|
-
* Handle
|
|
534
|
+
* Handle lattice_sensor_node
|
|
535
535
|
*/
|
|
536
536
|
private handleNode;
|
|
537
537
|
/**
|
|
@@ -552,20 +552,20 @@ export declare class ToolHandler {
|
|
|
552
552
|
private renderNodeSection;
|
|
553
553
|
/**
|
|
554
554
|
* Build the "trail" for a symbol: its direct callees (what it calls) and
|
|
555
|
-
* callers (what calls it), each with file:line — so
|
|
555
|
+
* callers (what calls it), each with file:line — so lattice_sensor_node doubles as
|
|
556
556
|
* the structural Grep→Read→expand primitive: a spot PLUS where to go next.
|
|
557
|
-
* Capped to stay cheap. Walk the graph by calling
|
|
557
|
+
* Capped to stay cheap. Walk the graph by calling lattice_sensor_node on a trail
|
|
558
558
|
* entry; no Read needed for covered hops. Empty edges on a non-leaf often mean
|
|
559
559
|
* dynamic dispatch the static graph couldn't resolve — that absence is itself
|
|
560
560
|
* a signal (read that one hop) rather than a dead end.
|
|
561
561
|
*/
|
|
562
562
|
private formatTrail;
|
|
563
563
|
/**
|
|
564
|
-
* Handle
|
|
564
|
+
* Handle lattice_sensor_status
|
|
565
565
|
*/
|
|
566
566
|
private handleStatus;
|
|
567
567
|
/**
|
|
568
|
-
* Handle
|
|
568
|
+
* Handle lattice_sensor_files - get project file structure from the index
|
|
569
569
|
*/
|
|
570
570
|
private handleFiles;
|
|
571
571
|
/**
|
|
@@ -608,7 +608,7 @@ export declare class ToolHandler {
|
|
|
608
608
|
*/
|
|
609
609
|
private matchesSymbol;
|
|
610
610
|
/**
|
|
611
|
-
* Find ALL definitions matching a name, ranked, so
|
|
611
|
+
* Find ALL definitions matching a name, ranked, so lattice_sensor_node can return
|
|
612
612
|
* every overload instead of guessing one (the wrong guess → a Read). Keepers
|
|
613
613
|
* rank before generated stubs (.pb.go etc.); stable within a group preserves
|
|
614
614
|
* FTS order. Returns [] when nothing matches; a qualified lookup that finds no
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tools.d.ts","sourceRoot":"","sources":["../../src/mcp/tools.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"tools.d.ts","sourceRoot":"","sources":["../../src/mcp/tools.ts"],"names":[],"mappings":"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"}
|