@triedotdev/mcp 1.0.129 → 1.0.132

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.
@@ -1,3 +1,6 @@
1
+ import {
2
+ IncidentIndex
3
+ } from "./chunk-WHIQAGB7.js";
1
4
  import {
2
5
  TriePatternDiscovery
3
6
  } from "./chunk-ZV2K6M7T.js";
@@ -13,9 +16,6 @@ import {
13
16
  import {
14
17
  ContextGraph
15
18
  } from "./chunk-55CBWOEZ.js";
16
- import {
17
- IncidentIndex
18
- } from "./chunk-WHIQAGB7.js";
19
19
  import {
20
20
  getTrieDirectory,
21
21
  getWorkingDirectory
@@ -1756,4 +1756,4 @@ export {
1756
1756
  handleCheckpointCommand,
1757
1757
  isTrieInitialized
1758
1758
  };
1759
- //# sourceMappingURL=chunk-6LD7OPJL.js.map
1759
+ //# sourceMappingURL=chunk-7TTVDHXO.js.map
@@ -11,7 +11,7 @@ import {
11
11
  GotchaPredictor,
12
12
  findCrossProjectPatterns,
13
13
  recordToGlobalMemory
14
- } from "./chunk-A4EDTN6R.js";
14
+ } from "./chunk-WIMNGEY2.js";
15
15
  import {
16
16
  isAIAvailable,
17
17
  runAIAnalysis
@@ -2143,4 +2143,4 @@ export {
2143
2143
  GuardianAgent,
2144
2144
  getGuardian
2145
2145
  };
2146
- //# sourceMappingURL=chunk-D2CGMX7K.js.map
2146
+ //# sourceMappingURL=chunk-CDU4B7AC.js.map
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  getGuardian
3
- } from "./chunk-D2CGMX7K.js";
3
+ } from "./chunk-CDU4B7AC.js";
4
4
  import {
5
5
  getChatStore
6
6
  } from "./chunk-DFPVUMVE.js";
@@ -13,12 +13,13 @@ import {
13
13
  perceiveCurrentChanges,
14
14
  reasonAboutChangesHumanReadable,
15
15
  saveCheckpoint
16
- } from "./chunk-6LD7OPJL.js";
16
+ } from "./chunk-7TTVDHXO.js";
17
17
  import {
18
- TieredStorage,
19
- findCrossProjectPatterns,
20
- getStorage
21
- } from "./chunk-A4EDTN6R.js";
18
+ IncidentIndex
19
+ } from "./chunk-WHIQAGB7.js";
20
+ import {
21
+ findCrossProjectPatterns
22
+ } from "./chunk-WIMNGEY2.js";
22
23
  import {
23
24
  getKeyFromKeychain,
24
25
  isAIAvailable,
@@ -28,12 +29,13 @@ import {
28
29
  import {
29
30
  getGuardianState
30
31
  } from "./chunk-UHMMANC2.js";
32
+ import {
33
+ TieredStorage,
34
+ getStorage
35
+ } from "./chunk-Z4DN527J.js";
31
36
  import {
32
37
  ContextGraph
33
38
  } from "./chunk-55CBWOEZ.js";
34
- import {
35
- IncidentIndex
36
- } from "./chunk-WHIQAGB7.js";
37
39
  import {
38
40
  getOutputManager
39
41
  } from "./chunk-VRLMTOB6.js";
@@ -1758,6 +1760,10 @@ function AgentView() {
1758
1760
  const { getInsightStore } = await import("./insight-store-F5KDBY5Y.js");
1759
1761
  const store = getInsightStore(workDir);
1760
1762
  await store.dismissInsight(insight.id);
1763
+ const { getStorage: getStorage2 } = await import("./tiered-storage-QW2G7GSG.js");
1764
+ const storage = getStorage2(workDir);
1765
+ await storage.dismissNudge(insight.id).catch(() => {
1766
+ });
1761
1767
  } catch (error) {
1762
1768
  console.error("Failed to persist insight dismissal:", error);
1763
1769
  }
@@ -5924,8 +5930,17 @@ function formatToolInput(input) {
5924
5930
  const parts = [];
5925
5931
  for (const [k, v] of Object.entries(input)) {
5926
5932
  if (k === "directory") continue;
5927
- if (Array.isArray(v)) parts.push(`${k}: [${v.join(", ")}]`);
5928
- else parts.push(`${k}: ${String(v)}`);
5933
+ if (Array.isArray(v)) {
5934
+ if (v.length > 0 && typeof v[0] === "object" && v[0] !== null) {
5935
+ parts.push(`${k}: [${v.length} item${v.length !== 1 ? "s" : ""}]`);
5936
+ } else {
5937
+ parts.push(`${k}: [${v.join(", ")}]`);
5938
+ }
5939
+ } else if (typeof v === "object" && v !== null) {
5940
+ parts.push(`${k}: {object}`);
5941
+ } else {
5942
+ parts.push(`${k}: ${String(v)}`);
5943
+ }
5929
5944
  }
5930
5945
  return parts.length > 0 ? parts.join(", ") : "";
5931
5946
  }
@@ -6543,4 +6558,4 @@ export {
6543
6558
  handleCheckpointTool,
6544
6559
  InteractiveDashboard
6545
6560
  };
6546
- //# sourceMappingURL=chunk-VHQBL2I7.js.map
6561
+ //# sourceMappingURL=chunk-PQ4OTP4D.js.map