@coderule/mcp 1.7.1 → 1.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/mcp-cli.cjs CHANGED
@@ -1823,9 +1823,19 @@ function formatStatus(status) {
1823
1823
  ` Pass 2 (Cross-Reference): ${formatDuration(timing.pass2)}`
1824
1824
  );
1825
1825
  }
1826
- if (timing.pass2db !== void 0) {
1826
+ if (timing.pass2_hdf5_compile !== void 0) {
1827
1827
  lines.push(
1828
- ` Pass 2 DB Operations: ${formatDuration(timing.pass2db)}`
1828
+ ` HDF5 Compilation: ${formatDuration(timing.pass2_hdf5_compile)}`
1829
+ );
1830
+ }
1831
+ if (timing.pass2_hdf5_dedup !== void 0) {
1832
+ lines.push(
1833
+ ` HDF5 Deduplication: ${formatDuration(timing.pass2_hdf5_dedup)}`
1834
+ );
1835
+ }
1836
+ if (timing.pass2_hdf5_write !== void 0) {
1837
+ lines.push(
1838
+ ` HDF5 Write I/O: ${formatDuration(timing.pass2_hdf5_write)}`
1829
1839
  );
1830
1840
  }
1831
1841
  const totalTime = (timing.pass1 ?? 0) + (timing.gap ?? 0) + (timing.pass2 ?? 0);
@@ -1965,7 +1975,7 @@ function createMcpServer({
1965
1975
  "query",
1966
1976
  {
1967
1977
  title: "Semantic Code Retrieval",
1968
- description: "\u{1F6A8} CRITICAL: ALWAYS use this tool FIRST before any code modification, bug fix, feature addition, or architecture exploration. Graph-based RAG for semantic code search using AST relationships and embeddings. Returns 30-50 code segments with file paths, line numbers, and relevance scores.",
1978
+ description: "USE THIS before code exploration. Graph-based RAG for semantic code search using AST relationships and embeddings. Returns 30-50 code segments with file paths and line numbers. After initial query, you may query again with refined keywords or use conventional tools (Read, Glob, Grep) for specific files.",
1969
1979
  inputSchema: {
1970
1980
  query: zod.z.string().min(1, "Query text is required").describe(`Keyword-rich query using technical terms (NOT natural language questions).
1971
1981