homegraph 1.5.4 → 1.5.6

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.
Files changed (74) hide show
  1. package/CHANGELOG.md +33 -0
  2. package/README.md +4 -1
  3. package/dist/arkui/migrate-semantics.d.ts +8 -0
  4. package/dist/arkui/migrate-semantics.d.ts.map +1 -1
  5. package/dist/arkui/migrate-semantics.js +24 -1
  6. package/dist/arkui/migrate-semantics.js.map +1 -1
  7. package/dist/arkui/migrate-snapshot.d.ts.map +1 -1
  8. package/dist/arkui/migrate-snapshot.js +11 -4
  9. package/dist/arkui/migrate-snapshot.js.map +1 -1
  10. package/dist/bin/homegraph.js +6 -0
  11. package/dist/bin/homegraph.js.map +1 -1
  12. package/dist/db/migrations.d.ts +1 -1
  13. package/dist/db/migrations.d.ts.map +1 -1
  14. package/dist/db/migrations.js +37 -1
  15. package/dist/db/migrations.js.map +1 -1
  16. package/dist/db/queries.d.ts +25 -0
  17. package/dist/db/queries.d.ts.map +1 -1
  18. package/dist/db/queries.js +50 -2
  19. package/dist/db/queries.js.map +1 -1
  20. package/dist/db/schema.sql +24 -0
  21. package/dist/extraction/languages/arkts.d.ts +15 -0
  22. package/dist/extraction/languages/arkts.d.ts.map +1 -1
  23. package/dist/extraction/languages/arkts.js +118 -0
  24. package/dist/extraction/languages/arkts.js.map +1 -1
  25. package/dist/index.d.ts +31 -0
  26. package/dist/index.d.ts.map +1 -1
  27. package/dist/index.js +87 -1
  28. package/dist/index.js.map +1 -1
  29. package/dist/mcp/engine.d.ts +26 -0
  30. package/dist/mcp/engine.d.ts.map +1 -1
  31. package/dist/mcp/engine.js +231 -22
  32. package/dist/mcp/engine.js.map +1 -1
  33. package/dist/mcp/explore-repeat-guard.d.ts.map +1 -1
  34. package/dist/mcp/explore-repeat-guard.js +37 -0
  35. package/dist/mcp/explore-repeat-guard.js.map +1 -1
  36. package/dist/mcp/index.d.ts.map +1 -1
  37. package/dist/mcp/index.js +16 -1
  38. package/dist/mcp/index.js.map +1 -1
  39. package/dist/mcp/memory-budget.d.ts +9 -22
  40. package/dist/mcp/memory-budget.d.ts.map +1 -1
  41. package/dist/mcp/memory-budget.js +9 -59
  42. package/dist/mcp/memory-budget.js.map +1 -1
  43. package/dist/mcp/query-pool.js +4 -4
  44. package/dist/mcp/server-instructions.d.ts +2 -2
  45. package/dist/mcp/server-instructions.d.ts.map +1 -1
  46. package/dist/mcp/server-instructions.js +6 -0
  47. package/dist/mcp/server-instructions.js.map +1 -1
  48. package/dist/mcp/tools.d.ts +54 -3
  49. package/dist/mcp/tools.d.ts.map +1 -1
  50. package/dist/mcp/tools.js +1452 -81
  51. package/dist/mcp/tools.js.map +1 -1
  52. package/dist/project-map/index.d.ts +33 -0
  53. package/dist/project-map/index.d.ts.map +1 -0
  54. package/dist/project-map/index.js +260 -0
  55. package/dist/project-map/index.js.map +1 -0
  56. package/dist/search/query-utils.d.ts +10 -0
  57. package/dist/search/query-utils.d.ts.map +1 -1
  58. package/dist/search/query-utils.js +58 -5
  59. package/dist/search/query-utils.js.map +1 -1
  60. package/dist/sync/watcher.d.ts +15 -3
  61. package/dist/sync/watcher.d.ts.map +1 -1
  62. package/dist/sync/watcher.js +14 -1
  63. package/dist/sync/watcher.js.map +1 -1
  64. package/dist/types.d.ts +6 -0
  65. package/dist/types.d.ts.map +1 -1
  66. package/dist/upgrade/index.d.ts +23 -12
  67. package/dist/upgrade/index.d.ts.map +1 -1
  68. package/dist/upgrade/index.js +42 -48
  69. package/dist/upgrade/index.js.map +1 -1
  70. package/dist/upgrade/update-check.d.ts +4 -4
  71. package/dist/upgrade/update-check.d.ts.map +1 -1
  72. package/dist/upgrade/update-check.js +6 -5
  73. package/dist/upgrade/update-check.js.map +1 -1
  74. package/package.json +1 -1
@@ -1,30 +1,17 @@
1
1
  /**
2
- * Process-wide RSS budget for the HomeGraph MCP / daemon process.
2
+ * Catch-up sync skip policy for the HomeGraph MCP / daemon process.
3
3
  *
4
- * Large indexes (~hundreds of MB SQLite) + catch-up sync (tree-sitter re-parse)
5
- * + unbounded callers/explore graphs previously pushed a single Node process
6
- * into multi-GB RSS. Agents measure the parent process tree, so that shows up
7
- * as ~5GB "peaks". Cap the HomeGraph process itself so *no* query or background
8
- * path can quietly grow without bound.
4
+ * Process RSS soft ceilings were removed (spec 0015): Windows Working Set and
5
+ * macOS resident_size are not comparable, and RSS gates falsely Partial'd tools
6
+ * on large indexes. Growth is still bounded by SQLite `mmap_size = 0`, small
7
+ * page cache, and default query-pool concurrency of 1.
9
8
  *
10
- * Override with `HOMEGRAPH_MAX_RSS_MB` (clamped 256–4096). Default 1024.
9
+ * Catch-up sync may still skip for explicit env or large on-disk indexes —
10
+ * re-parsing a dirty multi-hundred-MB tree remains expensive regardless of RSS.
11
11
  */
12
- export declare function resolveMaxRssMb(): number;
13
- export declare function getProcessRssMb(): number;
14
- export declare function isOverRssBudget(maxMb?: number): boolean;
15
- /** Soft tripwire — stop growing (catch-up etc.) before the hard tool refusal. */
16
- export declare function isNearRssBudget(maxMb?: number): boolean;
17
- export declare function rssBudgetPartialText(context?: string): string;
18
- export declare function rssBudgetPartialResult(context?: string): {
19
- content: Array<{
20
- type: 'text';
21
- text: string;
22
- }>;
23
- isError: false;
24
- };
25
12
  /**
26
- * MCP catch-up sync re-scans + may re-parse dirty files — the multi-GB path on
27
- * large indexes. Skip unless explicitly forced.
13
+ * MCP catch-up sync re-scans + may re-parse dirty files. Skip unless explicitly
14
+ * forced when the operator opts out or the on-disk index is large.
28
15
  */
29
16
  export declare function shouldSkipCatchUpSync(dbPath: string | null | undefined): boolean;
30
17
  //# sourceMappingURL=memory-budget.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"memory-budget.d.ts","sourceRoot":"","sources":["../../src/mcp/memory-budget.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAWH,wBAAgB,eAAe,IAAI,MAAM,CAMxC;AAED,wBAAgB,eAAe,IAAI,MAAM,CAMxC;AAED,wBAAgB,eAAe,CAAC,KAAK,GAAE,MAA0B,GAAG,OAAO,CAE1E;AAED,iFAAiF;AACjF,wBAAgB,eAAe,CAAC,KAAK,GAAE,MAA0B,GAAG,OAAO,CAE1E;AAED,wBAAgB,oBAAoB,CAAC,OAAO,CAAC,EAAE,MAAM,GAAG,MAAM,CAU7D;AAED,wBAAgB,sBAAsB,CAAC,OAAO,CAAC,EAAE,MAAM,GAAG;IACxD,OAAO,EAAE,KAAK,CAAC;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAA;KAAE,CAAC,CAAC;IAC/C,OAAO,EAAE,KAAK,CAAC;CAChB,CAKA;AAED;;;GAGG;AACH,wBAAgB,qBAAqB,CAAC,MAAM,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,GAAG,OAAO,CAahF"}
1
+ {"version":3,"file":"memory-budget.d.ts","sourceRoot":"","sources":["../../src/mcp/memory-budget.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAOH;;;GAGG;AACH,wBAAgB,qBAAqB,CAAC,MAAM,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,GAAG,OAAO,CAYhF"}
@@ -1,14 +1,14 @@
1
1
  "use strict";
2
2
  /**
3
- * Process-wide RSS budget for the HomeGraph MCP / daemon process.
3
+ * Catch-up sync skip policy for the HomeGraph MCP / daemon process.
4
4
  *
5
- * Large indexes (~hundreds of MB SQLite) + catch-up sync (tree-sitter re-parse)
6
- * + unbounded callers/explore graphs previously pushed a single Node process
7
- * into multi-GB RSS. Agents measure the parent process tree, so that shows up
8
- * as ~5GB "peaks". Cap the HomeGraph process itself so *no* query or background
9
- * path can quietly grow without bound.
5
+ * Process RSS soft ceilings were removed (spec 0015): Windows Working Set and
6
+ * macOS resident_size are not comparable, and RSS gates falsely Partial'd tools
7
+ * on large indexes. Growth is still bounded by SQLite `mmap_size = 0`, small
8
+ * page cache, and default query-pool concurrency of 1.
10
9
  *
11
- * Override with `HOMEGRAPH_MAX_RSS_MB` (clamped 256–4096). Default 1024.
10
+ * Catch-up sync may still skip for explicit env or large on-disk indexes —
11
+ * re-parsing a dirty multi-hundred-MB tree remains expensive regardless of RSS.
12
12
  */
13
13
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
14
14
  if (k2 === undefined) k2 = k;
@@ -44,61 +44,13 @@ var __importStar = (this && this.__importStar) || (function () {
44
44
  };
45
45
  })();
46
46
  Object.defineProperty(exports, "__esModule", { value: true });
47
- exports.resolveMaxRssMb = resolveMaxRssMb;
48
- exports.getProcessRssMb = getProcessRssMb;
49
- exports.isOverRssBudget = isOverRssBudget;
50
- exports.isNearRssBudget = isNearRssBudget;
51
- exports.rssBudgetPartialText = rssBudgetPartialText;
52
- exports.rssBudgetPartialResult = rssBudgetPartialResult;
53
47
  exports.shouldSkipCatchUpSync = shouldSkipCatchUpSync;
54
48
  const fs = __importStar(require("fs"));
55
- const DEFAULT_MAX_RSS_MB = 1024;
56
- const MIN_MAX_RSS_MB = 256;
57
- const MAX_MAX_RSS_MB = 4096;
58
49
  /** Index files at/above this size skip MCP catch-up sync unless forced. */
59
50
  const LARGE_INDEX_SKIP_CATCHUP_BYTES = 64 * 1024 * 1024;
60
- function resolveMaxRssMb() {
61
- const raw = process.env.HOMEGRAPH_MAX_RSS_MB;
62
- if (raw === undefined || raw === '')
63
- return DEFAULT_MAX_RSS_MB;
64
- const n = Number(raw);
65
- if (!Number.isFinite(n) || n <= 0)
66
- return DEFAULT_MAX_RSS_MB;
67
- return Math.min(MAX_MAX_RSS_MB, Math.max(MIN_MAX_RSS_MB, Math.floor(n)));
68
- }
69
- function getProcessRssMb() {
70
- try {
71
- return process.memoryUsage().rss / (1024 * 1024);
72
- }
73
- catch {
74
- return 0;
75
- }
76
- }
77
- function isOverRssBudget(maxMb = resolveMaxRssMb()) {
78
- return getProcessRssMb() >= maxMb;
79
- }
80
- /** Soft tripwire — stop growing (catch-up etc.) before the hard tool refusal. */
81
- function isNearRssBudget(maxMb = resolveMaxRssMb()) {
82
- return getProcessRssMb() >= maxMb * 0.7;
83
- }
84
- function rssBudgetPartialText(context) {
85
- const max = resolveMaxRssMb();
86
- const now = Math.round(getProcessRssMb());
87
- const where = context ? ` (${context})` : '';
88
- return (`⚠️ **Partial result** — HomeGraph hit its process memory budget ` +
89
- `(~${now}MB RSS, limit ${max}MB)${where}. This is NOT an error. ` +
90
- `Retry ONE tighter \`homegraph_explore\` / \`homegraph_callers\` with a concrete ` +
91
- `symbol name — do not fan out dozens of caller lookups, and do not grep the same symbols.`);
92
- }
93
- function rssBudgetPartialResult(context) {
94
- return {
95
- content: [{ type: 'text', text: rssBudgetPartialText(context) }],
96
- isError: false,
97
- };
98
- }
99
51
  /**
100
- * MCP catch-up sync re-scans + may re-parse dirty files — the multi-GB path on
101
- * large indexes. Skip unless explicitly forced.
52
+ * MCP catch-up sync re-scans + may re-parse dirty files. Skip unless explicitly
53
+ * forced when the operator opts out or the on-disk index is large.
102
54
  */
103
55
  function shouldSkipCatchUpSync(dbPath) {
104
56
  const force = process.env.HOMEGRAPH_FORCE_CATCHUP_SYNC;
@@ -107,8 +59,6 @@ function shouldSkipCatchUpSync(dbPath) {
107
59
  const skip = process.env.HOMEGRAPH_SKIP_CATCHUP_SYNC;
108
60
  if (skip === '1' || skip === 'true' || skip === 'yes')
109
61
  return true;
110
- if (isNearRssBudget())
111
- return true;
112
62
  if (!dbPath)
113
63
  return false;
114
64
  try {
@@ -1 +1 @@
1
- {"version":3,"file":"memory-budget.js","sourceRoot":"","sources":["../../src/mcp/memory-budget.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"memory-budget.js","sourceRoot":"","sources":["../../src/mcp/memory-budget.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAWH,sDAYC;AArBD,uCAAyB;AAEzB,2EAA2E;AAC3E,MAAM,8BAA8B,GAAG,EAAE,GAAG,IAAI,GAAG,IAAI,CAAC;AAExD;;;GAGG;AACH,SAAgB,qBAAqB,CAAC,MAAiC;IACrE,MAAM,KAAK,GAAG,OAAO,CAAC,GAAG,CAAC,4BAA4B,CAAC;IACvD,IAAI,KAAK,KAAK,GAAG,IAAI,KAAK,KAAK,MAAM,IAAI,KAAK,KAAK,KAAK;QAAE,OAAO,KAAK,CAAC;IACvE,MAAM,IAAI,GAAG,OAAO,CAAC,GAAG,CAAC,2BAA2B,CAAC;IACrD,IAAI,IAAI,KAAK,GAAG,IAAI,IAAI,KAAK,MAAM,IAAI,IAAI,KAAK,KAAK;QAAE,OAAO,IAAI,CAAC;IACnE,IAAI,CAAC,MAAM;QAAE,OAAO,KAAK,CAAC;IAC1B,IAAI,CAAC;QACH,IAAI,EAAE,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAC,IAAI,IAAI,8BAA8B;YAAE,OAAO,IAAI,CAAC;IAC9E,CAAC;IAAC,MAAM,CAAC;QACP,sCAAsC;IACxC,CAAC;IACD,OAAO,KAAK,CAAC;AACf,CAAC"}
@@ -77,11 +77,11 @@ const explore_repeat_guard_1 = require("./explore-repeat-guard");
77
77
  const WORKER_FILE = path.join(__dirname, 'query-worker.js');
78
78
  /**
79
79
  * Default soft backstop — must stay **well below** typical MCP client hard
80
- * timeouts (~60s). Large monorepo explores often need >15s; leave headroom
81
- * under client cuts. Env `CODEGRAPH_QUERY_BUSY_TIMEOUT_MS` is clamped to
82
- * {@link MAX_BUSY_TIMEOUT_MS} so a mistaken `60000` cannot race the client.
80
+ * timeouts (~60s). Default 15s keeps the agent from waiting on a stuck explore;
81
+ * raise via `CODEGRAPH_QUERY_BUSY_TIMEOUT_MS` (clamped to
82
+ * {@link MAX_BUSY_TIMEOUT_MS}) when large monorepos need more headroom.
83
83
  */
84
- const DEFAULT_BUSY_TIMEOUT_MS = 25_000;
84
+ const DEFAULT_BUSY_TIMEOUT_MS = 15_000;
85
85
  /** Hard ceiling — leave headroom under ~60s client timeouts. */
86
86
  const MAX_BUSY_TIMEOUT_MS = 45_000;
87
87
  /**
@@ -7,6 +7,6 @@
7
7
  * Keep this short: long essays are low-salience and rarely change tool choice.
8
8
  * Prefer concrete habits (query shape, which tool, when to stop).
9
9
  */
10
- export declare const SERVER_INSTRUCTIONS = "# HomeGraph \u2014 structural locator for THIS repo\n\nLocal symbol graph (defs / calls / imports / files). Use it to **coarse-locate** in-repo symbols (`file:line` + short source), then answer. Not general Q&A, not SDK docs.\n\n## Call first (do not Grep/Glob/Read first)\n\nWill you **explain or edit in-repo code**? \u2192 `homegraph_explore` **once** with the user task as `query` (Chinese OK; add English Type / `Type.member` / `@kit` / `@ohos` tokens when you know them).\n\nAlready know **one** exact symbol? Prefer smaller tools: `homegraph_callers` / `homegraph_callees` / `homegraph_node`. Spelling unknown \u2192 `homegraph_search` last.\n\n**Must explore-first:** how/mechanism wiring, named Type / `.member`, in-repo `@kit`/`@ohos` **usages**, deps/cycles, NAPI / `.d.ts` wrap sites, pre-edit orientation.\n\nArkUI V1\u2194V2 / state-decorator migration on a named component \u2192 `homegraph_arkui_migrate` once (not explore stitching).\n\n## How to write `query`\n\n- Put **concrete anchors** in the bag: `FooManager`, `BarEvent`, `Type.member`, `feature/foo`, `@kit.X`.\n- Map Chinese entities to English symbol stems when you can (`\u8BBE\u7F6E`\u2192`Setting`, `\u65B0\u5EFA`\u2192`New`) \u2014 search/explore cluster `Entity` / `EntityManager` / `EntityViewModel`.\n- Keep **intent words** with the Type (`\u6765\u6E90` / `\u5206\u53D1` / `\u4F9D\u8D56` / `NAPI` / `\u9A71\u52A8`) \u2014 bare Type alone may drop survey routing.\n- Multi-app monorepo: pass `projectPath` to the app root; ignore sibling-app paths as noise.\n\n## After one explore\n\n- Returned line-numbered source = **already Read** for those symbols \u2014 do not re-Grep/Read/node the **same** symbols.\n- **Coarse locate / ANSWER NOW** \u2192 answer/edit from anchors; do not verify with a Grep storm.\n- **Partial locator** \u2192 **ONE** tighter follow-up with the named **Next anchor** only \u2014 never a paraphrase or a different Type (server refuses). After Partial: **no** `homegraph_callers`/`callees`; at most **one** `homegraph_node`. A **second** Partial \u2192 stop HomeGraph; ONE narrow Grep then answer \u2014 never a repo-wide glob/Read storm.\n- Busy/deadline \u2192 retry **once** tighter; then answer from anchors (narrow Grep OK for residuals).\n\nPrefer smallest tool when the name is known: callers/callees/node \u226A explore \u226A search. Prefer **one** Type-wide inventory explore over fanning `homegraph_callers` per method. Session fuse: **\u22642** `homegraph_explore` per project; after Partial follow-ups must name the **Next anchor**; **\u22641** `homegraph_node` after Partial \u2014 further calls are refused.\n\n## Do not call HomeGraph\n\nRuntime Skip is a short blacklist (everything else is served if you call):\n\n- Topic \u2192 file list with no Type/file basename\n- Literal / layout copy hunts with no Type/file/`@kit`/`@ohos`\n- Pure existence / concept-compare with no graph anchors\n- Official website/docs only \u00B7 scaffold empty project \u00B7 git/blame/diff \u00B7 media/binary inventories\n\n`@kit` / OHOS **API usage in this repo** \u2192 explore (not Skip). Feature **catalogs** of an SDK \u2192 SDK docs, not HomeGraph.\n\nIf a tool returns **Skip HomeGraph**, stop \u2014 do not retry `homegraph_*`.\n\n## Tips\n\n- Empty callers/callees = **edges not indexed**, not \u201Cmissing symbol\u201D \u2014 use the definition anchor; narrow Grep for registration if needed.\n- **Staleness banner** \u2014 Read only listed edited files.\n- **Not indexed** \u2014 use built-ins; user runs `homegraph init` (you do not).\n";
11
- export declare const SERVER_INSTRUCTIONS_NO_ROOT_INDEX = "# HomeGraph \u2014 per-project (pass projectPath)\n\nPass `projectPath` to a folder that has `.homegraph/`.\n\n**Call first:** explain/edit in-repo code \u2192 `homegraph_explore` with task keywords (no Grep-first). Named Type / `Type.member` / usages / deps / NAPI / `@kit` \u2192 explore.\n\n**Skip:** topic file-lists, concept compares, literal hunts, git history, media. No index \u2192 Read/Grep/Glob; user runs `homegraph init`.\n\n**Query habit:** Chinese OK; add English Type/`@kit` tokens when known. Explore = coarse locate. Partial \u2192 one tighter follow-up with a concrete name from the list. ONE narrow Grep OK for residual unindexed wiring \u2014 not a Grep storm.\n";
10
+ export declare const SERVER_INSTRUCTIONS = "# HomeGraph \u2014 structural locator for THIS repo\n\nLocal symbol graph (defs / calls / imports / files). Use it to **coarse-locate** in-repo symbols (`file:line` + short source), then answer. Not general Q&A, not SDK docs.\n\n## Call first (do not Grep/Glob/Read first)\n\nWill you **explain or edit in-repo code**? \u2192 `homegraph_explore` **once** with the user task as `query` (Chinese OK; add English Type / `Type.member` / `@kit` / `@ohos` tokens when you know them).\n\nAlready know **one** exact symbol? Prefer smaller tools: `homegraph_callers` / `homegraph_callees` / `homegraph_node`. Spelling unknown \u2192 `homegraph_search` last.\n\nFor a narrow inventory, call `homegraph_usages` (where-used), `homegraph_modules` (named module deps/cycles), or `homegraph_native` (NAPI exports). Existing clients may keep calling `homegraph_explore`: high-confidence shapes route to the same bounded handlers.\n\nEngineering overview / module\u2192file map (including while the full index is still building) \u2192 `homegraph_project`.\n\n**Must explore-first:** how/mechanism wiring, named Type / `.member`, in-repo `@kit`/`@ohos` **usages**, deps/cycles, NAPI / `.d.ts` wrap sites, pre-edit orientation.\n\nArkUI V1\u2194V2 / state-decorator migration on a named component \u2192 `homegraph_arkui_migrate` once (not explore stitching).\n\n## How to write `query`\n\n- Put **concrete anchors** in the bag: `FooManager`, `BarEvent`, `Type.member`, `feature/foo`, `@kit.X`.\n- Map Chinese entities to English symbol stems when you can (`\u8BBE\u7F6E`\u2192`Setting`, `\u65B0\u5EFA`\u2192`New`) \u2014 search/explore cluster `Entity` / `EntityManager` / `EntityViewModel`.\n- Keep **intent words** with the Type (`\u6765\u6E90` / `\u5206\u53D1` / `\u4F9D\u8D56` / `NAPI` / `\u9A71\u52A8`) \u2014 bare Type alone may drop survey routing.\n- Multi-app monorepo: pass `projectPath` to the app root; ignore sibling-app paths as noise.\n\n## After one explore\n\n- Returned line-numbered source = **already Read** for those symbols \u2014 do not re-Grep/Read/node the **same** symbols.\n- **Coarse locate / ANSWER NOW** \u2192 answer/edit from anchors; do not verify with a Grep storm.\n- **Partial locator** \u2192 **ONE** tighter follow-up with the named **Next anchor** only \u2014 never a paraphrase or a different Type (server refuses). After Partial: **no** `homegraph_callers`/`callees`; at most **one** `homegraph_node`. A **second** Partial \u2192 stop HomeGraph; ONE narrow Grep then answer \u2014 never a repo-wide glob/Read storm.\n- Busy/deadline \u2192 retry **once** tighter; then answer from anchors (narrow Grep OK for residuals).\n\nPrefer smallest tool when the name is known: callers/callees/node \u226A explore \u226A search. Prefer **one** Type-wide inventory explore over fanning `homegraph_callers` per method. Session fuse: **\u22642** `homegraph_explore` per project; after Partial follow-ups must name the **Next anchor**; **\u22641** `homegraph_node` after Partial \u2014 further calls are refused.\n\n## Do not call HomeGraph\n\nRuntime Skip is a short blacklist (everything else is served if you call):\n\n- Topic \u2192 file list with no Type/file basename\n- Literal / layout copy hunts with no Type/file/`@kit`/`@ohos`\n- Pure existence / concept-compare with no graph anchors\n- Official website/docs only \u00B7 scaffold empty project \u00B7 git/blame/diff \u00B7 media/binary inventories\n\n`@kit` / OHOS **API usage in this repo** \u2192 explore (not Skip). Feature **catalogs** of an SDK \u2192 SDK docs, not HomeGraph.\n\nIf a tool returns **Skip HomeGraph**, stop \u2014 do not retry `homegraph_*`.\n\n## Tips\n\n- Empty callers/callees = **edges not indexed**, not \u201Cmissing symbol\u201D \u2014 use the definition anchor; narrow Grep for registration if needed.\n- **Staleness banner** \u2014 Read only listed edited files.\n- **Not indexed** \u2014 use built-ins; user runs `homegraph init` (you do not).\n";
11
+ export declare const SERVER_INSTRUCTIONS_NO_ROOT_INDEX = "# HomeGraph \u2014 per-project (pass projectPath)\n\nPass `projectPath` to a folder that has `.homegraph/`.\n\n**Call first:** explain/edit in-repo code \u2192 `homegraph_explore` with task keywords (no Grep-first). Named Type / `Type.member` / usages / deps / NAPI / `@kit` \u2192 explore.\n\nNarrow inventories may call `homegraph_usages`, `homegraph_modules`, or `homegraph_native` directly; pass the same `projectPath`.\n\n**Skip:** topic file-lists, concept compares, literal hunts, git history, media. No index \u2192 Read/Grep/Glob; user runs `homegraph init`.\n\n**Query habit:** Chinese OK; add English Type/`@kit` tokens when known. Explore = coarse locate. Partial \u2192 one tighter follow-up with a concrete name from the list. ONE narrow Grep OK for residual unindexed wiring \u2014 not a Grep storm.\n";
12
12
  //# sourceMappingURL=server-instructions.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"server-instructions.d.ts","sourceRoot":"","sources":["../../src/mcp/server-instructions.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,eAAO,MAAM,mBAAmB,2+GAgD/B,CAAC;AAEF,eAAO,MAAM,iCAAiC,grBAS7C,CAAC"}
1
+ {"version":3,"file":"server-instructions.d.ts","sourceRoot":"","sources":["../../src/mcp/server-instructions.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,eAAO,MAAM,mBAAmB,k3HAoD/B,CAAC;AAEF,eAAO,MAAM,iCAAiC,qzBAW7C,CAAC"}
@@ -20,6 +20,10 @@ Will you **explain or edit in-repo code**? → \`homegraph_explore\` **once** wi
20
20
 
21
21
  Already know **one** exact symbol? Prefer smaller tools: \`homegraph_callers\` / \`homegraph_callees\` / \`homegraph_node\`. Spelling unknown → \`homegraph_search\` last.
22
22
 
23
+ For a narrow inventory, call \`homegraph_usages\` (where-used), \`homegraph_modules\` (named module deps/cycles), or \`homegraph_native\` (NAPI exports). Existing clients may keep calling \`homegraph_explore\`: high-confidence shapes route to the same bounded handlers.
24
+
25
+ Engineering overview / module→file map (including while the full index is still building) → \`homegraph_project\`.
26
+
23
27
  **Must explore-first:** how/mechanism wiring, named Type / \`.member\`, in-repo \`@kit\`/\`@ohos\` **usages**, deps/cycles, NAPI / \`.d.ts\` wrap sites, pre-edit orientation.
24
28
 
25
29
  ArkUI V1↔V2 / state-decorator migration on a named component → \`homegraph_arkui_migrate\` once (not explore stitching).
@@ -65,6 +69,8 @@ Pass \`projectPath\` to a folder that has \`.homegraph/\`.
65
69
 
66
70
  **Call first:** explain/edit in-repo code → \`homegraph_explore\` with task keywords (no Grep-first). Named Type / \`Type.member\` / usages / deps / NAPI / \`@kit\` → explore.
67
71
 
72
+ Narrow inventories may call \`homegraph_usages\`, \`homegraph_modules\`, or \`homegraph_native\` directly; pass the same \`projectPath\`.
73
+
68
74
  **Skip:** topic file-lists, concept compares, literal hunts, git history, media. No index → Read/Grep/Glob; user runs \`homegraph init\`.
69
75
 
70
76
  **Query habit:** Chinese OK; add English Type/\`@kit\` tokens when known. Explore = coarse locate. Partial → one tighter follow-up with a concrete name from the list. ONE narrow Grep OK for residual unindexed wiring — not a Grep storm.
@@ -1 +1 @@
1
- {"version":3,"file":"server-instructions.js","sourceRoot":"","sources":["../../src/mcp/server-instructions.ts"],"names":[],"mappings":";AAAA;;;;;;;;GAQG;;;AAEU,QAAA,mBAAmB,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAgDlC,CAAC;AAEW,QAAA,iCAAiC,GAAG;;;;;;;;;CAShD,CAAC"}
1
+ {"version":3,"file":"server-instructions.js","sourceRoot":"","sources":["../../src/mcp/server-instructions.ts"],"names":[],"mappings":";AAAA;;;;;;;;GAQG;;;AAEU,QAAA,mBAAmB,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAoDlC,CAAC;AAEW,QAAA,iCAAiC,GAAG;;;;;;;;;;;CAWhD,CAAC"}
@@ -226,12 +226,30 @@ export declare const tools: ToolDefinition[];
226
226
  * note in a description only adds once `cg` is loaded; the schemas are static).
227
227
  */
228
228
  export declare function getStaticTools(): ToolDefinition[];
229
+ /** Identifier-shaped tokens from a bare symbol bag. */
230
+ export declare function extractBareUsageSymbols(query: string): string[];
229
231
  /**
230
- * Tool handler that executes tools against a HomeGraph instance
232
+ * True only for a short bag of ALL_CAPS constants. Type/method bags remain on
233
+ * explore-flow because routing those to usages would discard call paths.
234
+ */
235
+ export declare function queryAsBareSymbolInventory(query: string): boolean;
236
+ /** True only for a positive instruction to stop and answer, not "do not/before ANSWER NOW". */
237
+ export declare function hasPositiveAnswerNowDirective(text: string): boolean;
238
+ /**
239
+ * Drop stop-searching directives from an output that also declares itself partial.
240
+ *
241
+ * Section builders each append their own footer and cannot see their siblings, so
242
+ * one output can carry both `**Partial locator**` ("these are anchors, keep
243
+ * looking") and `**ANSWER NOW**` ("stop, do not Grep"). Measured on a 54-question
244
+ * run: 21 such outputs across 17 of 48 questions. Whichever the agent obeys, the
245
+ * other was wrong — it either answers from an inventory the tool just called
246
+ * incomplete, or it keeps searching against an explicit prohibition.
231
247
  *
232
- * Supports cross-project queries via the projectPath parameter.
233
- * Other projects are opened on-demand and cached for performance.
248
+ * Partial wins: an under-informed agent that keeps looking recovers, while one
249
+ * that stops on a partial answer cannot. Negated mentions (`do **not** ANSWER
250
+ * NOW`) are the correct pairing and are preserved.
234
251
  */
252
+ export declare function reconcilePartialAnswerNow(text: string): string;
235
253
  export declare class ToolHandler {
236
254
  private cg;
237
255
  private projectCache;
@@ -455,6 +473,12 @@ export declare class ToolHandler {
455
473
  * NotIndexed/PathRefusal, which {@link executeReadTool} classifies.
456
474
  */
457
475
  private dispatchTool;
476
+ /**
477
+ * Gate symbol/graph tools while auto-init is still on the fast map or
478
+ * background full index (and no nodes exist yet). Success-shaped guidance —
479
+ * never isError — so agents keep using HomeGraph.
480
+ */
481
+ private maybeDeepToolPhaseGate;
458
482
  private handleSearch;
459
483
  /**
460
484
  * Group symbol matches into DISTINCT DEFINITIONS — one group per
@@ -559,7 +583,10 @@ export declare class ToolHandler {
559
583
  /**
560
584
  * Multi-module / circular dependency survey — lean cycle list, not an import flood.
561
585
  */
586
+ private extractFocusedModuleNames;
562
587
  private buildModuleDependencySurveySection;
588
+ /** Bounded manifest-only dependency graph for modules named in the query. */
589
+ private buildFocusedModuleManifestSection;
563
590
  /**
564
591
  * Path-module / named-Type NAPI export surface — not a 50-file domain dump.
565
592
  */
@@ -589,6 +616,16 @@ export declare class ToolHandler {
589
616
  * Main-thread fast path for inventory surveys — skips the worker queue.
590
617
  */
591
618
  private tryFastPathResult;
619
+ /** Conservative compatibility router: ambiguous mechanism queries stay broad. */
620
+ private specializedExploreRouteForQuery;
621
+ /** Run exactly one bounded survey family and expose the selected route. */
622
+ private runSpecializedExploreRoute;
623
+ /** Usage sites for a bare symbol bag, including non-call textual references. */
624
+ private buildBareSymbolUsageSection;
625
+ private trySpecializedExploreRoute;
626
+ private handleSpecializedUsages;
627
+ private handleSpecializedModules;
628
+ private handleSpecializedNative;
592
629
  /**
593
630
  * Fast inventory-only explore — skips findRelevantContext for survey/caller/dependency queries.
594
631
  */
@@ -615,6 +652,16 @@ export declare class ToolHandler {
615
652
  * and caps to 1–2 defining files (avoids the ~24K related-file dump).
616
653
  */
617
654
  private tryCompactLocalSymbolExplore;
655
+ /**
656
+ * When a lifecycle Type only exists as SDK `.d.ts`, extract state enums +
657
+ * callback registrations from the stub so agents stop grep-storming in-repo.
658
+ */
659
+ private buildSdkStubLifecycleSection;
660
+ /**
661
+ * Pages sharing a container component + how they inject differentiated
662
+ * ViewModel / LocalStorage state into the shared shell.
663
+ */
664
+ private buildContainerCompositionSection;
618
665
  /**
619
666
  * Hover / pointer-handler inventory — onHover / Hover* symbols + short snippets.
620
667
  * Used when the agent asks about hover effects without naming a Type yet.
@@ -744,6 +791,10 @@ export declare class ToolHandler {
744
791
  * Handle homegraph_status
745
792
  */
746
793
  private handleStatus;
794
+ /**
795
+ * Handle homegraph_project — shallow module → file map (fast build).
796
+ */
797
+ private handleProject;
747
798
  /**
748
799
  * Handle homegraph_arkui_migrate — one-shot ArkUI migrate / state snapshot (spec 0007).
749
800
  */
@@ -1 +1 @@
1
- {"version":3,"file":"tools.d.ts","sourceRoot":"","sources":["../../src/mcp/tools.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"tools.d.ts","sourceRoot":"","sources":["../../src/mcp/tools.ts"],"names":[],"mappings":"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"}