homegraph 1.5.2 → 1.5.3
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/CHANGELOG.md +131 -0
- package/README.md +15 -8
- package/dist/arkui/index.d.ts +4 -0
- package/dist/arkui/index.d.ts.map +1 -0
- package/dist/arkui/index.js +23 -0
- package/dist/arkui/index.js.map +1 -0
- package/dist/arkui/migrate-passage.d.ts +28 -0
- package/dist/arkui/migrate-passage.d.ts.map +1 -0
- package/dist/arkui/migrate-passage.js +310 -0
- package/dist/arkui/migrate-passage.js.map +1 -0
- package/dist/arkui/migrate-semantics.d.ts +47 -0
- package/dist/arkui/migrate-semantics.d.ts.map +1 -0
- package/dist/arkui/migrate-semantics.js +229 -0
- package/dist/arkui/migrate-semantics.js.map +1 -0
- package/dist/arkui/migrate-snapshot.d.ts +79 -0
- package/dist/arkui/migrate-snapshot.d.ts.map +1 -0
- package/dist/arkui/migrate-snapshot.js +340 -0
- package/dist/arkui/migrate-snapshot.js.map +1 -0
- package/dist/bin/fatal-handler.js +2 -2
- package/dist/bin/homegraph.js +105 -156
- package/dist/bin/homegraph.js.map +1 -1
- package/dist/bin/node-version-check.d.ts +6 -15
- package/dist/bin/node-version-check.d.ts.map +1 -1
- package/dist/bin/node-version-check.js +8 -37
- package/dist/bin/node-version-check.js.map +1 -1
- package/dist/db/index.d.ts +36 -1
- package/dist/db/index.d.ts.map +1 -1
- package/dist/db/index.js +92 -6
- package/dist/db/index.js.map +1 -1
- package/dist/db/migrations.d.ts +1 -1
- package/dist/db/migrations.d.ts.map +1 -1
- package/dist/db/migrations.js +15 -1
- package/dist/db/migrations.js.map +1 -1
- package/dist/db/queries.d.ts +42 -0
- package/dist/db/queries.d.ts.map +1 -1
- package/dist/db/queries.js +177 -10
- package/dist/db/queries.js.map +1 -1
- package/dist/db/schema.sql +6 -1
- package/dist/db/sqlite-adapter.d.ts +8 -3
- package/dist/db/sqlite-adapter.d.ts.map +1 -1
- package/dist/db/sqlite-adapter.js +45 -3
- package/dist/db/sqlite-adapter.js.map +1 -1
- package/dist/extraction/extraction-version.d.ts +1 -1
- package/dist/extraction/extraction-version.js +1 -1
- package/dist/extraction/generated-detection.d.ts +42 -11
- package/dist/extraction/generated-detection.d.ts.map +1 -1
- package/dist/extraction/generated-detection.js +141 -20
- package/dist/extraction/generated-detection.js.map +1 -1
- package/dist/extraction/index.d.ts +42 -0
- package/dist/extraction/index.d.ts.map +1 -1
- package/dist/extraction/index.js +96 -0
- package/dist/extraction/index.js.map +1 -1
- package/dist/extraction/languages/arkts.d.ts +19 -2
- package/dist/extraction/languages/arkts.d.ts.map +1 -1
- package/dist/extraction/languages/arkts.js +460 -110
- package/dist/extraction/languages/arkts.js.map +1 -1
- package/dist/extraction/wasm-runtime-flags.d.ts.map +1 -1
- package/dist/extraction/wasm-runtime-flags.js +9 -6
- package/dist/extraction/wasm-runtime-flags.js.map +1 -1
- package/dist/graph-sources.d.ts +41 -0
- package/dist/graph-sources.d.ts.map +1 -0
- package/dist/graph-sources.js +82 -0
- package/dist/graph-sources.js.map +1 -0
- package/dist/index.d.ts +19 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +79 -9
- package/dist/index.js.map +1 -1
- package/dist/installer/index.d.ts.map +1 -1
- package/dist/installer/index.js +0 -48
- package/dist/installer/index.js.map +1 -1
- package/dist/installer/targets/antigravity.js +1 -1
- package/dist/installer/targets/antigravity.js.map +1 -1
- package/dist/installer/targets/deveco.js +1 -1
- package/dist/installer/targets/deveco.js.map +1 -1
- package/dist/installer/targets/hermes.d.ts +1 -1
- package/dist/installer/targets/hermes.js +2 -2
- package/dist/installer/targets/hermes.js.map +1 -1
- package/dist/installer/targets/opencode.js +1 -1
- package/dist/installer/targets/opencode.js.map +1 -1
- package/dist/installer/targets/shared.js +1 -1
- package/dist/installer/targets/shared.js.map +1 -1
- package/dist/mcp/daemon-paths.d.ts +5 -4
- package/dist/mcp/daemon-paths.d.ts.map +1 -1
- package/dist/mcp/daemon-paths.js +28 -13
- package/dist/mcp/daemon-paths.js.map +1 -1
- package/dist/mcp/daemon-registry.d.ts.map +1 -1
- package/dist/mcp/daemon-registry.js +4 -1
- package/dist/mcp/daemon-registry.js.map +1 -1
- package/dist/mcp/daemon.d.ts +1 -1
- package/dist/mcp/daemon.js +1 -1
- package/dist/mcp/engine.d.ts.map +1 -1
- package/dist/mcp/engine.js +12 -3
- package/dist/mcp/engine.js.map +1 -1
- package/dist/mcp/explore-dedup.d.ts +137 -0
- package/dist/mcp/explore-dedup.d.ts.map +1 -0
- package/dist/mcp/explore-dedup.js +236 -0
- package/dist/mcp/explore-dedup.js.map +1 -0
- package/dist/mcp/explore-session-state.d.ts +217 -0
- package/dist/mcp/explore-session-state.d.ts.map +1 -0
- package/dist/mcp/explore-session-state.js +322 -0
- package/dist/mcp/explore-session-state.js.map +1 -0
- package/dist/mcp/index.d.ts.map +1 -1
- package/dist/mcp/index.js +4 -7
- package/dist/mcp/index.js.map +1 -1
- package/dist/mcp/proxy.d.ts.map +1 -1
- package/dist/mcp/proxy.js +5 -14
- package/dist/mcp/proxy.js.map +1 -1
- package/dist/mcp/query-worker.d.ts +1 -1
- package/dist/mcp/query-worker.js +1 -1
- package/dist/mcp/server-instructions.d.ts +7 -2
- package/dist/mcp/server-instructions.d.ts.map +1 -1
- package/dist/mcp/server-instructions.js +104 -28
- package/dist/mcp/server-instructions.js.map +1 -1
- package/dist/mcp/session.d.ts +14 -3
- package/dist/mcp/session.d.ts.map +1 -1
- package/dist/mcp/session.js +17 -14
- package/dist/mcp/session.js.map +1 -1
- package/dist/mcp/startup-handshake.d.ts +1 -1
- package/dist/mcp/startup-handshake.js +1 -1
- package/dist/mcp/tools.d.ts +117 -7
- package/dist/mcp/tools.d.ts.map +1 -1
- package/dist/mcp/tools.js +3056 -503
- package/dist/mcp/tools.js.map +1 -1
- package/dist/resolution/frameworks/arkts-napi.d.ts +14 -0
- package/dist/resolution/frameworks/arkts-napi.d.ts.map +1 -1
- package/dist/resolution/frameworks/arkts-napi.js +169 -49
- package/dist/resolution/frameworks/arkts-napi.js.map +1 -1
- package/dist/search/query-utils.d.ts +116 -4
- package/dist/search/query-utils.d.ts.map +1 -1
- package/dist/search/query-utils.js +869 -60
- package/dist/search/query-utils.js.map +1 -1
- package/dist/types.d.ts +8 -0
- package/dist/types.d.ts.map +1 -1
- package/dist/upgrade/index.d.ts +14 -26
- package/dist/upgrade/index.d.ts.map +1 -1
- package/dist/upgrade/index.js +28 -123
- package/dist/upgrade/index.js.map +1 -1
- package/dist/upgrade/remove-binary.d.ts +19 -19
- package/dist/upgrade/remove-binary.d.ts.map +1 -1
- package/dist/upgrade/remove-binary.js +20 -21
- package/dist/upgrade/remove-binary.js.map +1 -1
- package/dist/upgrade/update-check.d.ts +4 -3
- package/dist/upgrade/update-check.d.ts.map +1 -1
- package/dist/upgrade/update-check.js +4 -3
- package/dist/upgrade/update-check.js.map +1 -1
- package/package.json +12 -8
- package/dist/telemetry/index.d.ts +0 -143
- package/dist/telemetry/index.d.ts.map +0 -1
- package/dist/telemetry/index.js +0 -541
- package/dist/telemetry/index.js.map +0 -1
package/dist/mcp/tools.d.ts
CHANGED
|
@@ -5,7 +5,9 @@
|
|
|
5
5
|
*/
|
|
6
6
|
import type HomeGraph from '../index';
|
|
7
7
|
import type { QueryPool } from './query-pool';
|
|
8
|
+
export declare function __setLoadHomeGraphForTests(cls: typeof import('../index').default | null): void;
|
|
8
9
|
import type { PendingFile } from '../sync';
|
|
10
|
+
import { ExploreSessionState, type ExploreEmission } from './explore-session-state';
|
|
9
11
|
/**
|
|
10
12
|
* An expected, recoverable "homegraph can't serve this" condition — most
|
|
11
13
|
* importantly a project with no index. The dispatch catch converts these to
|
|
@@ -19,6 +21,9 @@ import type { PendingFile } from '../sync';
|
|
|
19
21
|
*/
|
|
20
22
|
export declare class NotIndexedError extends Error {
|
|
21
23
|
}
|
|
24
|
+
/** `HOMEGRAPH_SOURCES=none` (or equivalent) — success-shaped, not isError. */
|
|
25
|
+
export declare class GraphSourcesDisabledError extends Error {
|
|
26
|
+
}
|
|
22
27
|
/**
|
|
23
28
|
* A security refusal (sensitive system path). Stays `isError: true` WITHOUT
|
|
24
29
|
* retry guidance — abandoning this path is the desired agent reaction.
|
|
@@ -100,6 +105,10 @@ export declare function getExploreOutputBudget(fileCount: number): ExploreOutput
|
|
|
100
105
|
* Shrink explore ceilings for local-detail / no-flow named-symbol questions.
|
|
101
106
|
* Large repos otherwise dump ~24K related source that the agent then still
|
|
102
107
|
* greps/reads — the main token regression vs without-homegraph.
|
|
108
|
+
*
|
|
109
|
+
* Mechanism / cross-module flows also get a tighter ceiling: full 24K + a
|
|
110
|
+
* second explore/node/Read stack is what blows session tokens on "how is X
|
|
111
|
+
* implemented" questions even when the first answer was already enough.
|
|
103
112
|
*/
|
|
104
113
|
export declare function tightenExploreBudgetForQuery(budget: ExploreOutputBudget, query: string, opts?: {
|
|
105
114
|
hasFlowPath?: boolean;
|
|
@@ -187,13 +196,19 @@ export interface ToolResult {
|
|
|
187
196
|
text: string;
|
|
188
197
|
}>;
|
|
189
198
|
isError?: boolean;
|
|
199
|
+
/**
|
|
200
|
+
* Internal: what an explore call emitted (CG-17). {@link ToolHandler.execute}
|
|
201
|
+
* records it into the calling session's state and deletes it before the result
|
|
202
|
+
* reaches the wire — see {@link EXPLORE_EMISSION_KEY}.
|
|
203
|
+
*/
|
|
204
|
+
_hgExploreEmission?: ExploreEmission;
|
|
190
205
|
}
|
|
191
206
|
/**
|
|
192
207
|
* All HomeGraph MCP tools
|
|
193
208
|
*
|
|
194
|
-
*
|
|
195
|
-
*
|
|
196
|
-
*
|
|
209
|
+
* Prefer the smallest tool that answers: callers/node for one named symbol,
|
|
210
|
+
* explore for multi-file flows. Skip HomeGraph entirely for topic file-lists,
|
|
211
|
+
* concept compares, SDK catalogs, and literal greps.
|
|
197
212
|
*
|
|
198
213
|
* All tools support cross-project queries via the optional `projectPath` parameter.
|
|
199
214
|
*/
|
|
@@ -349,11 +364,46 @@ export declare class ToolHandler {
|
|
|
349
364
|
* Cost when nothing is pending — the common case — is one boolean check.
|
|
350
365
|
* No I/O, no parsing of markdown beyond a per-pending-file substring scan.
|
|
351
366
|
*/
|
|
367
|
+
private driftCache;
|
|
368
|
+
private static readonly DRIFT_TTL_MS;
|
|
369
|
+
/**
|
|
370
|
+
* On-disk drift check for a single indexed file (issue #1474). The code
|
|
371
|
+
* renderers slice CURRENT bytes at INDEXED line ranges; when the file
|
|
372
|
+
* changed after its last index sync those ranges can point at a DIFFERENT
|
|
373
|
+
* symbol's code. Freshness is verified here from data the index already
|
|
374
|
+
* stores: one stat() (size + mtime); content hashed only on mismatch.
|
|
375
|
+
*/
|
|
376
|
+
private isFileStaleOnDisk;
|
|
352
377
|
private withStalenessNotice;
|
|
353
378
|
/**
|
|
354
|
-
* Execute a tool by name
|
|
379
|
+
* Execute a tool by name.
|
|
380
|
+
*
|
|
381
|
+
* `sessionState` is the calling MCP session's explore history (CG-17). Omit
|
|
382
|
+
* it (the CLI does) and explore behaves exactly as before, untracked.
|
|
383
|
+
*/
|
|
384
|
+
execute(toolName: string, args: Record<string, unknown>, sessionState?: ExploreSessionState): Promise<ToolResult>;
|
|
385
|
+
/**
|
|
386
|
+
* Attach the caller's session view to an explore call's args (CG-17), on a
|
|
387
|
+
* COPY so the caller's object is never mutated. Nothing else sees it: a
|
|
388
|
+
* non-explore tool, or a caller with no session state, gets the args
|
|
389
|
+
* unchanged and pays nothing.
|
|
390
|
+
*
|
|
391
|
+
* A client that spells the internal key itself is stripped rather than
|
|
392
|
+
* trusted — the view decides what source a later call may withhold, so it has
|
|
393
|
+
* to come from the server's own record, never from the wire.
|
|
355
394
|
*/
|
|
356
|
-
|
|
395
|
+
private withSessionView;
|
|
396
|
+
/**
|
|
397
|
+
* Record an explore call's emission into the caller's session state and strip
|
|
398
|
+
* it from the result (CG-17).
|
|
399
|
+
*
|
|
400
|
+
* Unconditional strip: the property is internal, so it comes off even when
|
|
401
|
+
* there is no session state to record it into (the CLI path) — that is what
|
|
402
|
+
* keeps the agent-facing response byte-identical. Recording is wrapped
|
|
403
|
+
* because a bookkeeping bug must never fail a tool call that already
|
|
404
|
+
* succeeded.
|
|
405
|
+
*/
|
|
406
|
+
private takeExploreEmission;
|
|
357
407
|
/**
|
|
358
408
|
* Dispatch a read tool with a hard deadline under the typical ~60s MCP client
|
|
359
409
|
* timeout.
|
|
@@ -486,7 +536,7 @@ export declare class ToolHandler {
|
|
|
486
536
|
private boundaryCandidates;
|
|
487
537
|
/**
|
|
488
538
|
* Import sites for @kit.* / *Kit module names — surfaces full `import { … } from '@kit.X'`
|
|
489
|
-
* lines. When the query also names
|
|
539
|
+
* lines. When the query also names an export/API token, only matching imports are listed.
|
|
490
540
|
*/
|
|
491
541
|
private buildImportSitesSection;
|
|
492
542
|
/**
|
|
@@ -494,8 +544,22 @@ export declare class ToolHandler {
|
|
|
494
544
|
*/
|
|
495
545
|
private buildCallerListingSection;
|
|
496
546
|
/**
|
|
497
|
-
*
|
|
547
|
+
* Multi-module / circular dependency survey — lean cycle list, not an import flood.
|
|
498
548
|
*/
|
|
549
|
+
private buildModuleDependencySurveySection;
|
|
550
|
+
/**
|
|
551
|
+
* Path-module / named-Type NAPI export surface — not a 50-file domain dump.
|
|
552
|
+
*/
|
|
553
|
+
private buildModuleExportSurveySection;
|
|
554
|
+
/**
|
|
555
|
+
* Named `.d.ts` wrap — where the basename is imported / called in-repo.
|
|
556
|
+
*/
|
|
557
|
+
private buildDtsWrapSurveySection;
|
|
558
|
+
/**
|
|
559
|
+
* Named Toggle/control state-sync — which files/modules mention the control
|
|
560
|
+
* (Type may be missing from FTS; seed stems + text scan).
|
|
561
|
+
*/
|
|
562
|
+
private buildNamedControlStateSyncSection;
|
|
499
563
|
private buildDataSourceSection;
|
|
500
564
|
/**
|
|
501
565
|
* Main-thread fast path for inventory surveys — skips the worker queue.
|
|
@@ -515,11 +579,18 @@ export declare class ToolHandler {
|
|
|
515
579
|
* agent grep/read loops (token savings).
|
|
516
580
|
*/
|
|
517
581
|
private tryLightMechanismExplore;
|
|
582
|
+
/** Cap import bullets inside a light-mechanism response. */
|
|
583
|
+
private trimLightImportSection;
|
|
518
584
|
/**
|
|
519
585
|
* Compact explore for local-symbol behavior questions — skips findRelevantContext
|
|
520
586
|
* and caps to 1–2 defining files (avoids the ~24K related-file dump).
|
|
521
587
|
*/
|
|
522
588
|
private tryCompactLocalSymbolExplore;
|
|
589
|
+
/**
|
|
590
|
+
* Hover / pointer-handler inventory — onHover / Hover* symbols + short snippets.
|
|
591
|
+
* Used when the agent asks about hover effects without naming a Type yet.
|
|
592
|
+
*/
|
|
593
|
+
private buildHoverHandlerSurveySection;
|
|
523
594
|
/**
|
|
524
595
|
* @kit module capability survey — repo import/usage only (SDK defs are not indexed).
|
|
525
596
|
*/
|
|
@@ -535,6 +606,16 @@ export declare class ToolHandler {
|
|
|
535
606
|
/**
|
|
536
607
|
* API call-site survey — where a named API/symbol (statfs, napi_*) appears in repo source.
|
|
537
608
|
*/
|
|
609
|
+
/**
|
|
610
|
+
* In-repo how-to for system settings/capabilities (language/locale/…).
|
|
611
|
+
* Lists concrete `@ohos.i18n` / `getSystemLanguage` call sites — not every
|
|
612
|
+
* file that mentions the word "language".
|
|
613
|
+
*/
|
|
614
|
+
private buildSystemCapabilityHowtoSection;
|
|
615
|
+
/**
|
|
616
|
+
* Declaration / id / native-binding sites for a named UI/native Type (XComponent…).
|
|
617
|
+
*/
|
|
618
|
+
private buildDeclarationSiteSurveySection;
|
|
538
619
|
private buildApiUsageSection;
|
|
539
620
|
/**
|
|
540
621
|
* Domain file inventory — related files, usage existence, or concept comparison.
|
|
@@ -583,6 +664,12 @@ export declare class ToolHandler {
|
|
|
583
664
|
* tax on small projects while earning its keep on large ones.
|
|
584
665
|
*/
|
|
585
666
|
private handleExplore;
|
|
667
|
+
/**
|
|
668
|
+
* An explore response plus the record of what it emitted (CG-17). The record
|
|
669
|
+
* rides the result only as far as {@link execute}, which files it into the
|
|
670
|
+
* calling session's state and deletes it — see {@link EXPLORE_EMISSION_KEY}.
|
|
671
|
+
*/
|
|
672
|
+
private exploreResult;
|
|
586
673
|
/**
|
|
587
674
|
* Handle homegraph_node
|
|
588
675
|
*/
|
|
@@ -603,6 +690,15 @@ export declare class ToolHandler {
|
|
|
603
690
|
private handleFileView;
|
|
604
691
|
/** Render one symbol: details + (optional) body/outline + its caller/callee trail. */
|
|
605
692
|
private renderNodeSection;
|
|
693
|
+
private static readonly STALE_WHOLE_FILE_MAX_LINES;
|
|
694
|
+
private static readonly STALE_WHOLE_FILE_MAX_CHARS;
|
|
695
|
+
/**
|
|
696
|
+
* homegraph_node render for a symbol whose file changed on disk after the
|
|
697
|
+
* last index sync (issue #1474). Indexed line ranges are untrustworthy, so
|
|
698
|
+
* no slice is emitted: small files get full CURRENT source; large ones get
|
|
699
|
+
* an explicit notice.
|
|
700
|
+
*/
|
|
701
|
+
private renderStaleNodeSection;
|
|
606
702
|
/**
|
|
607
703
|
* Build the "trail" for a symbol: its direct callees (what it calls) and
|
|
608
704
|
* callers (what calls it), each with file:line — so homegraph_node doubles as
|
|
@@ -617,6 +713,10 @@ export declare class ToolHandler {
|
|
|
617
713
|
* Handle homegraph_status
|
|
618
714
|
*/
|
|
619
715
|
private handleStatus;
|
|
716
|
+
/**
|
|
717
|
+
* Handle homegraph_arkui_migrate — one-shot ArkUI migrate / state snapshot (spec 0007).
|
|
718
|
+
*/
|
|
719
|
+
private handleArkuiMigrate;
|
|
620
720
|
/**
|
|
621
721
|
* Handle homegraph_files - get project file structure from the index
|
|
622
722
|
*/
|
|
@@ -690,6 +790,10 @@ export declare class ToolHandler {
|
|
|
690
790
|
* Python — `stage_apply::run` matches a `run` in `stage_apply.rs`)
|
|
691
791
|
*/
|
|
692
792
|
private matchesSymbol;
|
|
793
|
+
/**
|
|
794
|
+
* Generated-file demotion signal: path convention OR persisted content banner.
|
|
795
|
+
*/
|
|
796
|
+
private isGeneratedCandidate;
|
|
693
797
|
/**
|
|
694
798
|
* Find ALL definitions matching a name, ranked, so homegraph_node can return
|
|
695
799
|
* every overload instead of guessing one (the wrong guess → a Read). Keepers
|
|
@@ -710,6 +814,12 @@ export declare class ToolHandler {
|
|
|
710
814
|
private truncateOutput;
|
|
711
815
|
private formatSearchResults;
|
|
712
816
|
private formatNodeList;
|
|
817
|
+
/**
|
|
818
|
+
* At caller sites, list nearby `#include` / `import` lines — answers
|
|
819
|
+
* "which call makes Type X's definition visible" without a second Grep/Read
|
|
820
|
+
* when the agent only called `homegraph_callers`.
|
|
821
|
+
*/
|
|
822
|
+
private formatCallerIncludeVisibility;
|
|
713
823
|
/**
|
|
714
824
|
* Relationship label for a non-`calls` edge in callers/callees lists. A
|
|
715
825
|
* function-as-value edge (#756) is the high-signal one: `callers(cb)`
|
package/dist/mcp/tools.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tools.d.ts","sourceRoot":"","sources":["../../src/mcp/tools.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,KAAK,SAAS,MAAM,UAAU,CAAC;AACtC,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAiB9C,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,SAAS,CAAC;
|
|
1
|
+
{"version":3,"file":"tools.d.ts","sourceRoot":"","sources":["../../src/mcp/tools.ts"],"names":[],"mappings":"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"}
|