@bike4mind/cli 0.2.42-fix-delegate-agent-timeout.20443 → 0.2.42

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,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  import {
3
3
  CurationArtifactType
4
- } from "./chunk-CQBMTJ5R.js";
4
+ } from "./chunk-XO4KZXR3.js";
5
5
 
6
6
  // ../../b4m-core/packages/services/dist/src/notebookCurationService/artifactExtractor.js
7
7
  var ARTIFACT_TAG_REGEX = /<artifact\s+(.*?)>([\s\S]*?)<\/artifact>/gi;
@@ -20,7 +20,7 @@ import {
20
20
  extractSnippetMeta,
21
21
  isGPTImageModel,
22
22
  settingsMap
23
- } from "./chunk-CQBMTJ5R.js";
23
+ } from "./chunk-XO4KZXR3.js";
24
24
 
25
25
  // ../../b4m-core/packages/utils/dist/src/storage/S3Storage.js
26
26
  import { S3Client, PutObjectCommand, DeleteObjectCommand, GetObjectCommand, HeadObjectCommand } from "@aws-sdk/client-s3";
@@ -5561,7 +5561,7 @@ var GeminiBackend = class {
5561
5561
  releaseDate: "2026-02-19",
5562
5562
  description: "Google's latest model for multimodal understanding, delivering richer visuals and deeper interactivity, all built on a foundation of state-of-the-art reasoning."
5563
5563
  },
5564
- // Gemini 3 pro preivew
5564
+ // Gemini 3 pro preview (deprecated: migrate to Gemini 3.1 Pro Preview)
5565
5565
  {
5566
5566
  id: ChatModels.GEMINI_3_PRO_PREVIEW,
5567
5567
  type: "text",
@@ -5584,6 +5584,7 @@ var GeminiBackend = class {
5584
5584
  rank: 5,
5585
5585
  trainingCutoff: "2025-01-31",
5586
5586
  releaseDate: "2025-11-30",
5587
+ deprecationDate: "2026-03-09",
5587
5588
  description: "Google's best model for multimodal understanding, delivering richer visuals and deeper interactivity, all built on a foundation of state-of-the-art reasoning."
5588
5589
  },
5589
5590
  // Gemini 3 pro preivew
@@ -2,7 +2,7 @@
2
2
  import {
3
3
  BadRequestError,
4
4
  secureParameters
5
- } from "./chunk-QXTMFSVQ.js";
5
+ } from "./chunk-6DIDLC5R.js";
6
6
  import {
7
7
  CompletionApiUsageTransaction,
8
8
  GenericCreditDeductTransaction,
@@ -13,7 +13,7 @@ import {
13
13
  ToolUsageTransaction,
14
14
  TransferCreditTransaction,
15
15
  VideoGenerationUsageTransaction
16
- } from "./chunk-CQBMTJ5R.js";
16
+ } from "./chunk-XO4KZXR3.js";
17
17
 
18
18
  // ../../b4m-core/packages/services/dist/src/creditService/subtractCredits.js
19
19
  import { z } from "zod";
@@ -7,11 +7,11 @@ import {
7
7
  getSettingsMap,
8
8
  getSettingsValue,
9
9
  secureParameters
10
- } from "./chunk-QXTMFSVQ.js";
10
+ } from "./chunk-6DIDLC5R.js";
11
11
  import {
12
12
  KnowledgeType,
13
13
  SupportedFabFileMimeTypes
14
- } from "./chunk-CQBMTJ5R.js";
14
+ } from "./chunk-XO4KZXR3.js";
15
15
 
16
16
  // ../../b4m-core/packages/services/dist/src/fabFileService/create.js
17
17
  import { z } from "zod";
@@ -4,7 +4,7 @@ import {
4
4
  getOpenWeatherKey,
5
5
  getSerperKey,
6
6
  getWolframAlphaKey
7
- } from "./chunk-LASSRSY5.js";
7
+ } from "./chunk-XFH3RPVU.js";
8
8
  import {
9
9
  BFLImageService,
10
10
  BaseStorage,
@@ -16,14 +16,14 @@ import {
16
16
  OpenAIBackend,
17
17
  OpenAIImageService,
18
18
  XAIImageService
19
- } from "./chunk-QXTMFSVQ.js";
19
+ } from "./chunk-6DIDLC5R.js";
20
20
  import {
21
21
  Logger
22
22
  } from "./chunk-PFBYGCOW.js";
23
23
  import {
24
24
  ConfigStore,
25
25
  logger
26
- } from "./chunk-5LAMXWSG.js";
26
+ } from "./chunk-LSGK2ME7.js";
27
27
  import {
28
28
  ALERT_THRESHOLDS,
29
29
  AiEvents,
@@ -84,7 +84,7 @@ import {
84
84
  getViewById,
85
85
  resolveNavigationIntents,
86
86
  sanitizeTelemetryError
87
- } from "./chunk-CQBMTJ5R.js";
87
+ } from "./chunk-XO4KZXR3.js";
88
88
 
89
89
  // src/utils/fileSearch.ts
90
90
  import * as fs from "fs";
@@ -5196,6 +5196,20 @@ async function evaluateMath(params) {
5196
5196
  console.log("\u{1F522} Math Tool: Starting evaluation of expression:", params.expression);
5197
5197
  try {
5198
5198
  let expression = params.expression.trim();
5199
+ if (expression.includes(";")) {
5200
+ console.log("\u{1F522} Math Tool: Detected multi-statement expression, evaluating with shared scope...");
5201
+ const result2 = math.evaluate(expression);
5202
+ if (math.typeOf(result2) === "ResultSet") {
5203
+ const entries = result2.entries;
5204
+ const lastResult = entries[entries.length - 1];
5205
+ if (math.typeOf(lastResult) === "Matrix") {
5206
+ return `Matrix result:
5207
+ ${math.format(lastResult, { precision: params.precision })}`;
5208
+ }
5209
+ return math.format(lastResult, { precision: params.precision });
5210
+ }
5211
+ return math.format(result2, { precision: params.precision });
5212
+ }
5199
5213
  if (expression.includes("=") || expression.match(/solve\s*\(/)) {
5200
5214
  console.log("\u{1F522} Math Tool: Detected equation, processing...");
5201
5215
  const solveMatch = expression.match(/solve\s*\(\s*([^,=]+)\s*=\s*([^,)]+)\s*(?:,\s*([a-zA-Z]\w*))?\s*\)/);
@@ -5328,7 +5342,7 @@ var mathTool = {
5328
5342
  toolFn: (value) => evaluateMath(value),
5329
5343
  toolSchema: {
5330
5344
  name: "math_evaluate",
5331
- description: `Evaluate mathematical expressions using mathjs syntax. Supports arithmetic, algebra, trigonometry, calculus, and statistics. IMPORTANT: Use simple mathematical notation only - no loops, variables assignments, or programming constructs. For multi-step calculations, make multiple separate tool calls.
5345
+ description: `Evaluate mathematical expressions using mathjs syntax. Supports arithmetic, algebra, trigonometry, calculus, and statistics. Supports multi-step calculations with semicolon-separated statements sharing a scope (e.g., "x = 5; y = 10; x * y" returns 50). IMPORTANT: Use simple mathematical notation only - no loops or programming constructs.
5332
5346
 
5333
5347
  **LaTeX Rendering Support:**
5334
5348
  When showing mathematical work, equations, or formulas in your response, use LaTeX syntax for professional rendering:
@@ -5359,7 +5373,7 @@ Always use LaTeX for mathematical notation to ensure clear, professional present
5359
5373
  properties: {
5360
5374
  expression: {
5361
5375
  type: "string",
5362
- description: 'The mathematical expression to evaluate. Must be a single mathematical expression using mathjs syntax. Examples: "5 * 6 + 3", "sin(pi/4)", "solve(x^2 - 4 = 0, x)". DO NOT use: variable assignments (base=1.6), loops (for/while), comments (//), or multi-line code. For complex calculations, break into multiple tool calls.'
5376
+ description: 'The mathematical expression to evaluate using mathjs syntax. Supports single expressions (e.g., "5 * 6 + 3", "sin(pi/4)") and multi-step semicolon-separated statements with variable assignments (e.g., "muE=3.986e14; d=3.844e8; muE/d"). Array results are supported (e.g., "a=3; b=4; [a, b]"). DO NOT use loops (for/while) or comments (//).'
5363
5377
  },
5364
5378
  precision: {
5365
5379
  type: "number",
@@ -8753,6 +8767,27 @@ var knowledgeBaseSearchTool = {
8753
8767
  // Include data lake files user has access to
8754
8768
  });
8755
8769
  context.logger.log("\u{1F4DA} Knowledge Base Search: Found", searchResults.data.length, "of", searchResults.total, "results. Files:", searchResults.data.map((f) => f.fileName));
8770
+ if (searchResults.data.length > 0) {
8771
+ const citables = searchResults.data.map((file, index) => {
8772
+ const fileTags = (file.tags?.map((t) => t.name) || []).filter((t) => !t.startsWith("datalake:")).slice(0, 4).join(", ");
8773
+ return {
8774
+ id: file.id,
8775
+ type: "document",
8776
+ title: file.fileName,
8777
+ url: `/opti?mode=datalake&article=${file.id}`,
8778
+ description: fileTags || void 0,
8779
+ timestamp: (/* @__PURE__ */ new Date()).toISOString(),
8780
+ status: "complete",
8781
+ metadata: {
8782
+ sourceSystem: "knowledge_base",
8783
+ tags: file.tags?.map((t) => t.name) || [],
8784
+ relevanceScore: 1 - index * 0.1
8785
+ }
8786
+ };
8787
+ });
8788
+ await context.statusUpdate({ promptMeta: { citables } }, "Knowledge base search results");
8789
+ context.logger.log(`\u{1F4DA} Knowledge Base Search: Stored ${citables.length} citables`);
8790
+ }
8756
8791
  return formatSearchResults(searchResults.data);
8757
8792
  } catch (error) {
8758
8793
  context.logger.error("\u274C Knowledge Base Search: Error during search:", error);
@@ -8880,6 +8915,7 @@ Chunks: ${chunks.length} | Characters: ${charLabel}
8880
8915
  id: file.id,
8881
8916
  type: "document",
8882
8917
  title: file.fileName,
8918
+ url: `/opti?mode=datalake&article=${file.id}`,
8883
8919
  description: fileTags || void 0,
8884
8920
  timestamp: (/* @__PURE__ */ new Date()).toISOString(),
8885
8921
  status: "complete",
@@ -13352,14 +13388,7 @@ var generateMcpToolsFromCache = (serverName, cachedTools, callTool) => {
13352
13388
  };
13353
13389
 
13354
13390
  // ../../b4m-core/packages/services/dist/src/llm/agents/ServerSubagentOrchestrator.js
13355
- var SUBAGENT_TIMEOUT_BY_THOROUGHNESS = {
13356
- quick: 2 * 60 * 1e3,
13357
- // 2 minutes
13358
- medium: 5 * 60 * 1e3,
13359
- // 5 minutes
13360
- very_thorough: 10 * 60 * 1e3
13361
- // 10 minutes
13362
- };
13391
+ var SUBAGENT_TIMEOUT_MS = 5 * 60 * 1e3;
13363
13392
 
13364
13393
  // ../../b4m-core/packages/services/dist/src/llm/ChatCompletionProcess.js
13365
13394
  import throttle2 from "lodash/throttle.js";
@@ -16256,8 +16285,30 @@ var ServerLlmBackend = class {
16256
16285
  });
16257
16286
  });
16258
16287
  }
16259
- pushToolMessages(_messages, _tool, _result) {
16260
- throw new Error("ServerLlmBackend does not support pushToolMessages \u2014 tools are executed server-side");
16288
+ pushToolMessages(messages, tool, result, thinkingBlocks) {
16289
+ const assistantContent = [
16290
+ ...thinkingBlocks || [],
16291
+ {
16292
+ type: "tool_use",
16293
+ id: tool.id,
16294
+ name: tool.name,
16295
+ input: JSON.parse(tool.parameters || "{}")
16296
+ }
16297
+ ];
16298
+ messages.push({
16299
+ role: "assistant",
16300
+ content: assistantContent
16301
+ });
16302
+ messages.push({
16303
+ role: "user",
16304
+ content: [
16305
+ {
16306
+ type: "tool_result",
16307
+ tool_use_id: tool.id,
16308
+ content: result
16309
+ }
16310
+ ]
16311
+ });
16261
16312
  }
16262
16313
  /**
16263
16314
  * Get available models from server
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  import {
3
3
  ChatModels
4
- } from "./chunk-CQBMTJ5R.js";
4
+ } from "./chunk-XO4KZXR3.js";
5
5
  import {
6
6
  DEFAULT_SANDBOX_CONFIG
7
7
  } from "./chunk-4BIBE3J7.js";
@@ -3,7 +3,7 @@
3
3
  // package.json
4
4
  var package_default = {
5
5
  name: "@bike4mind/cli",
6
- version: "0.2.42-fix-delegate-agent-timeout.20443+ac4b21696",
6
+ version: "0.2.42",
7
7
  type: "module",
8
8
  description: "Interactive CLI tool for Bike4Mind with ReAct agents",
9
9
  license: "UNLICENSED",
@@ -117,10 +117,10 @@ var package_default = {
117
117
  },
118
118
  devDependencies: {
119
119
  "@bike4mind/agents": "0.1.0",
120
- "@bike4mind/common": "2.61.2-fix-delegate-agent-timeout.20443+ac4b21696",
121
- "@bike4mind/mcp": "1.33.4-fix-delegate-agent-timeout.20443+ac4b21696",
122
- "@bike4mind/services": "2.57.2-fix-delegate-agent-timeout.20443+ac4b21696",
123
- "@bike4mind/utils": "2.12.4-fix-delegate-agent-timeout.20443+ac4b21696",
120
+ "@bike4mind/common": "2.62.0",
121
+ "@bike4mind/mcp": "1.33.4",
122
+ "@bike4mind/services": "2.58.0",
123
+ "@bike4mind/utils": "2.13.0",
124
124
  "@types/better-sqlite3": "^7.6.13",
125
125
  "@types/diff": "^5.0.9",
126
126
  "@types/jsonwebtoken": "^9.0.4",
@@ -138,7 +138,7 @@ var package_default = {
138
138
  optionalDependencies: {
139
139
  "@vscode/ripgrep": "^1.17.0"
140
140
  },
141
- gitHead: "ac4b2169699b63da431adc2d65d264b54623c7d3"
141
+ gitHead: "74824b6ccd765d6fa6b4ec94d18ba44d90f1f360"
142
142
  };
143
143
 
144
144
  // src/utils/updateChecker.ts
@@ -6,12 +6,12 @@ import {
6
6
  getSettingsByNames,
7
7
  obfuscateApiKey,
8
8
  secureParameters
9
- } from "./chunk-QXTMFSVQ.js";
9
+ } from "./chunk-6DIDLC5R.js";
10
10
  import {
11
11
  ApiKeyType,
12
12
  MementoTier,
13
13
  isSupportedEmbeddingModel
14
- } from "./chunk-CQBMTJ5R.js";
14
+ } from "./chunk-XO4KZXR3.js";
15
15
 
16
16
  // ../../b4m-core/packages/services/dist/src/apiKeyService/get.js
17
17
  import { z } from "zod";
@@ -10912,8 +10912,8 @@ var VIEW_REGISTRY = [
10912
10912
  section: "global",
10913
10913
  label: "Knowledge Base",
10914
10914
  description: "Browse uploaded files and documents in your knowledge base",
10915
- navigationType: "route",
10916
- target: "/knowledge",
10915
+ navigationType: "action",
10916
+ target: "file_browser",
10917
10917
  keywords: ["knowledge", "files", "documents", "uploads", "library"]
10918
10918
  },
10919
10919
  {
@@ -3,7 +3,7 @@ import {
3
3
  fetchLatestVersion,
4
4
  forceCheckForUpdate,
5
5
  package_default
6
- } from "../chunk-4F4ZR5VZ.js";
6
+ } from "../chunk-M7WWYJKD.js";
7
7
 
8
8
  // src/commands/doctorCommand.ts
9
9
  import { execSync } from "child_process";
@@ -36,20 +36,20 @@ import {
36
36
  isReadOnlyTool,
37
37
  loadContextFiles,
38
38
  setWebSocketToolExecutor
39
- } from "../chunk-W56Y4NQ3.js";
39
+ } from "../chunk-LIRZ74HT.js";
40
40
  import "../chunk-BDQBOLYG.js";
41
- import "../chunk-LASSRSY5.js";
41
+ import "../chunk-XFH3RPVU.js";
42
42
  import "../chunk-GQGOWACU.js";
43
- import "../chunk-VLJPDKBB.js";
44
- import "../chunk-PQUTFN3I.js";
45
- import "../chunk-QXTMFSVQ.js";
43
+ import "../chunk-BDUHALFT.js";
44
+ import "../chunk-F33RP5VW.js";
45
+ import "../chunk-6DIDLC5R.js";
46
46
  import "../chunk-PFBYGCOW.js";
47
47
  import "../chunk-BPFEGDC7.js";
48
48
  import {
49
49
  ConfigStore,
50
50
  logger
51
- } from "../chunk-5LAMXWSG.js";
52
- import "../chunk-CQBMTJ5R.js";
51
+ } from "../chunk-LSGK2ME7.js";
52
+ import "../chunk-XO4KZXR3.js";
53
53
  import {
54
54
  DEFAULT_SANDBOX_CONFIG
55
55
  } from "../chunk-4BIBE3J7.js";
@@ -1,8 +1,8 @@
1
1
  #!/usr/bin/env node
2
2
  import {
3
3
  ConfigStore
4
- } from "../chunk-5LAMXWSG.js";
5
- import "../chunk-CQBMTJ5R.js";
4
+ } from "../chunk-LSGK2ME7.js";
5
+ import "../chunk-XO4KZXR3.js";
6
6
  import "../chunk-4BIBE3J7.js";
7
7
 
8
8
  // src/commands/mcpCommand.ts
@@ -2,7 +2,7 @@
2
2
  import {
3
3
  forceCheckForUpdate,
4
4
  package_default
5
- } from "../chunk-4F4ZR5VZ.js";
5
+ } from "../chunk-M7WWYJKD.js";
6
6
 
7
7
  // src/commands/updateCommand.ts
8
8
  import { execSync } from "child_process";
@@ -2,10 +2,10 @@
2
2
  import {
3
3
  createFabFile,
4
4
  createFabFileSchema
5
- } from "./chunk-PQUTFN3I.js";
6
- import "./chunk-QXTMFSVQ.js";
5
+ } from "./chunk-F33RP5VW.js";
6
+ import "./chunk-6DIDLC5R.js";
7
7
  import "./chunk-PFBYGCOW.js";
8
- import "./chunk-CQBMTJ5R.js";
8
+ import "./chunk-XO4KZXR3.js";
9
9
  export {
10
10
  createFabFile,
11
11
  createFabFileSchema
package/dist/index.js CHANGED
@@ -46,23 +46,23 @@ import {
46
46
  setWebSocketToolExecutor,
47
47
  substituteArguments,
48
48
  warmFileCache
49
- } from "./chunk-W56Y4NQ3.js";
49
+ } from "./chunk-LIRZ74HT.js";
50
50
  import "./chunk-BDQBOLYG.js";
51
- import "./chunk-LASSRSY5.js";
51
+ import "./chunk-XFH3RPVU.js";
52
52
  import "./chunk-GQGOWACU.js";
53
- import "./chunk-VLJPDKBB.js";
54
- import "./chunk-PQUTFN3I.js";
55
- import "./chunk-QXTMFSVQ.js";
53
+ import "./chunk-BDUHALFT.js";
54
+ import "./chunk-F33RP5VW.js";
55
+ import "./chunk-6DIDLC5R.js";
56
56
  import "./chunk-PFBYGCOW.js";
57
57
  import "./chunk-BPFEGDC7.js";
58
58
  import {
59
59
  ConfigStore,
60
60
  logger
61
- } from "./chunk-5LAMXWSG.js";
61
+ } from "./chunk-LSGK2ME7.js";
62
62
  import {
63
63
  checkForUpdate,
64
64
  package_default
65
- } from "./chunk-4F4ZR5VZ.js";
65
+ } from "./chunk-M7WWYJKD.js";
66
66
  import {
67
67
  selectActiveBackgroundAgents,
68
68
  useCliStore
@@ -70,7 +70,7 @@ import {
70
70
  import {
71
71
  CREDIT_DEDUCT_TRANSACTION_TYPES,
72
72
  ChatModels
73
- } from "./chunk-CQBMTJ5R.js";
73
+ } from "./chunk-XO4KZXR3.js";
74
74
  import "./chunk-4BIBE3J7.js";
75
75
 
76
76
  // src/index.tsx
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  import {
3
3
  CurationArtifactType
4
- } from "./chunk-CQBMTJ5R.js";
4
+ } from "./chunk-XO4KZXR3.js";
5
5
 
6
6
  // ../../b4m-core/packages/services/dist/src/notebookCurationService/llmMarkdownGenerator.js
7
7
  var DEFAULT_OPTIONS = {
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  import {
3
3
  CurationArtifactType
4
- } from "./chunk-CQBMTJ5R.js";
4
+ } from "./chunk-XO4KZXR3.js";
5
5
 
6
6
  // ../../b4m-core/packages/services/dist/src/notebookCurationService/markdownGenerator.js
7
7
  var DEFAULT_OPTIONS = {
@@ -2,10 +2,10 @@
2
2
  import {
3
3
  findMostSimilarMemento,
4
4
  getRelevantMementos
5
- } from "./chunk-LASSRSY5.js";
6
- import "./chunk-QXTMFSVQ.js";
5
+ } from "./chunk-XFH3RPVU.js";
6
+ import "./chunk-6DIDLC5R.js";
7
7
  import "./chunk-PFBYGCOW.js";
8
- import "./chunk-CQBMTJ5R.js";
8
+ import "./chunk-XO4KZXR3.js";
9
9
  export {
10
10
  findMostSimilarMemento,
11
11
  getRelevantMementos
@@ -140,7 +140,7 @@ import {
140
140
  validateUrlForFetch,
141
141
  warmUpSettingsCache,
142
142
  withRetry
143
- } from "./chunk-QXTMFSVQ.js";
143
+ } from "./chunk-6DIDLC5R.js";
144
144
  import {
145
145
  Logger,
146
146
  NotificationDeduplicator,
@@ -153,7 +153,7 @@ import {
153
153
  buildRateLimitLogEntry,
154
154
  isNearLimit,
155
155
  parseRateLimitHeaders
156
- } from "./chunk-CQBMTJ5R.js";
156
+ } from "./chunk-XO4KZXR3.js";
157
157
  export {
158
158
  AIVideoService,
159
159
  AWSBackend,
@@ -512,7 +512,7 @@ import {
512
512
  validateReactArtifactV2,
513
513
  validateSvgArtifactV2,
514
514
  wikiMarkupToAdf
515
- } from "./chunk-CQBMTJ5R.js";
515
+ } from "./chunk-XO4KZXR3.js";
516
516
  export {
517
517
  ALERT_THRESHOLDS,
518
518
  ALL_IMAGE_MODELS,
@@ -2,10 +2,10 @@
2
2
  import {
3
3
  SubtractCreditsSchema,
4
4
  subtractCredits
5
- } from "./chunk-VLJPDKBB.js";
6
- import "./chunk-QXTMFSVQ.js";
5
+ } from "./chunk-BDUHALFT.js";
6
+ import "./chunk-6DIDLC5R.js";
7
7
  import "./chunk-PFBYGCOW.js";
8
- import "./chunk-CQBMTJ5R.js";
8
+ import "./chunk-XO4KZXR3.js";
9
9
  export {
10
10
  SubtractCreditsSchema,
11
11
  subtractCredits
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bike4mind/cli",
3
- "version": "0.2.42-fix-delegate-agent-timeout.20443+ac4b21696",
3
+ "version": "0.2.42",
4
4
  "type": "module",
5
5
  "description": "Interactive CLI tool for Bike4Mind with ReAct agents",
6
6
  "license": "UNLICENSED",
@@ -114,10 +114,10 @@
114
114
  },
115
115
  "devDependencies": {
116
116
  "@bike4mind/agents": "0.1.0",
117
- "@bike4mind/common": "2.61.2-fix-delegate-agent-timeout.20443+ac4b21696",
118
- "@bike4mind/mcp": "1.33.4-fix-delegate-agent-timeout.20443+ac4b21696",
119
- "@bike4mind/services": "2.57.2-fix-delegate-agent-timeout.20443+ac4b21696",
120
- "@bike4mind/utils": "2.12.4-fix-delegate-agent-timeout.20443+ac4b21696",
117
+ "@bike4mind/common": "2.62.0",
118
+ "@bike4mind/mcp": "1.33.4",
119
+ "@bike4mind/services": "2.58.0",
120
+ "@bike4mind/utils": "2.13.0",
121
121
  "@types/better-sqlite3": "^7.6.13",
122
122
  "@types/diff": "^5.0.9",
123
123
  "@types/jsonwebtoken": "^9.0.4",
@@ -135,5 +135,5 @@
135
135
  "optionalDependencies": {
136
136
  "@vscode/ripgrep": "^1.17.0"
137
137
  },
138
- "gitHead": "ac4b2169699b63da431adc2d65d264b54623c7d3"
138
+ "gitHead": "74824b6ccd765d6fa6b4ec94d18ba44d90f1f360"
139
139
  }