@bike4mind/cli 0.2.72-fix-data-lake-injected-bugs.22143 → 0.2.72
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/{ConfigStore-CJrPFsAE.mjs → ConfigStore-Chtdkz1u.mjs} +7 -1
- package/dist/commands/doctorCommand.mjs +1 -1
- package/dist/commands/headlessCommand.mjs +2 -2
- package/dist/commands/mcpCommand.mjs +1 -1
- package/dist/commands/updateCommand.mjs +1 -1
- package/dist/index.mjs +3 -3
- package/dist/{tools-BiesGCpS.mjs → tools-CDcSP1ky.mjs} +24 -19
- package/dist/{updateChecker-COhrTXmr.mjs → updateChecker-CkbWr3V1.mjs} +1 -1
- package/package.json +17 -17
|
@@ -67,7 +67,7 @@ let ImageModels = /* @__PURE__ */ function(ImageModels) {
|
|
|
67
67
|
ImageModels["FLUX_DEV"] = "flux-dev";
|
|
68
68
|
ImageModels["FLUX_KONTEXT_PRO"] = "flux-kontext-pro";
|
|
69
69
|
ImageModels["FLUX_KONTEXT_MAX"] = "flux-kontext-max";
|
|
70
|
-
ImageModels["GROK_2_IMAGE"] = "grok-2-image
|
|
70
|
+
ImageModels["GROK_2_IMAGE"] = "grok-2-image";
|
|
71
71
|
ImageModels["GEMINI_2_5_FLASH_IMAGE"] = "gemini-2.5-flash-image";
|
|
72
72
|
ImageModels["GEMINI_3_PRO_IMAGE_PREVIEW"] = "gemini-3-pro-image-preview";
|
|
73
73
|
return ImageModels;
|
|
@@ -1005,6 +1005,7 @@ const SecopsTriageConfigSchema = z.object({
|
|
|
1005
1005
|
high: "P1"
|
|
1006
1006
|
}),
|
|
1007
1007
|
maxIssuesPerScan: z.number().min(1).max(100).default(20),
|
|
1008
|
+
slackWorkspaceId: z.string().optional(),
|
|
1008
1009
|
slackChannelId: z.string().optional(),
|
|
1009
1010
|
dryRun: z.boolean().default(false)
|
|
1010
1011
|
});
|
|
@@ -1744,6 +1745,11 @@ const SceneCommandSchema = z.discriminatedUnion("type", [
|
|
|
1744
1745
|
gid: z.number()
|
|
1745
1746
|
})),
|
|
1746
1747
|
worldVersion: z.number().optional()
|
|
1748
|
+
}),
|
|
1749
|
+
z.object({
|
|
1750
|
+
type: z.literal("update_metadata"),
|
|
1751
|
+
id: z.string(),
|
|
1752
|
+
patch: z.record(z.string(), z.unknown())
|
|
1747
1753
|
})
|
|
1748
1754
|
]);
|
|
1749
1755
|
/** Client → Server: send scene commands to broadcast to all HUD clients */
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import { i as version, n as fetchLatestVersion, r as forceCheckForUpdate } from "../updateChecker-
|
|
2
|
+
import { i as version, n as fetchLatestVersion, r as forceCheckForUpdate } from "../updateChecker-CkbWr3V1.mjs";
|
|
3
3
|
import { execSync } from "child_process";
|
|
4
4
|
import { constants, existsSync, promises } from "fs";
|
|
5
5
|
import { homedir } from "os";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import { B as CustomCommandStore, C as getApiUrl, E as generateCliTools, I as buildCoreSystemPrompt, P as setWebSocketToolExecutor, R as isReadOnlyTool, S as loadContextFiles, T as PermissionManager, U as SessionStore, V as CheckpointStore, _ as ServerLlmBackend, a as createBackgroundAgentTools, c as AgentStore, f as ApiClient, g as WebSocketLlmBackend, h as FallbackLlmBackend, i as createWriteTodosTool, l as SubagentOrchestrator, m as WebSocketConnectionManager, n as createFindDefinitionTool, o as BackgroundAgentManager, p as WebSocketToolExecutor, r as createTodoStore, s as createAgentDelegateTool, t as createGetFileStructureTool, u as createSkillTool, v as McpManager, z as ReActAgent } from "../tools-
|
|
3
|
-
import { n as logger, t as ConfigStore } from "../ConfigStore-
|
|
2
|
+
import { B as CustomCommandStore, C as getApiUrl, E as generateCliTools, I as buildCoreSystemPrompt, P as setWebSocketToolExecutor, R as isReadOnlyTool, S as loadContextFiles, T as PermissionManager, U as SessionStore, V as CheckpointStore, _ as ServerLlmBackend, a as createBackgroundAgentTools, c as AgentStore, f as ApiClient, g as WebSocketLlmBackend, h as FallbackLlmBackend, i as createWriteTodosTool, l as SubagentOrchestrator, m as WebSocketConnectionManager, n as createFindDefinitionTool, o as BackgroundAgentManager, p as WebSocketToolExecutor, r as createTodoStore, s as createAgentDelegateTool, t as createGetFileStructureTool, u as createSkillTool, v as McpManager, z as ReActAgent } from "../tools-CDcSP1ky.mjs";
|
|
3
|
+
import { n as logger, t as ConfigStore } from "../ConfigStore-Chtdkz1u.mjs";
|
|
4
4
|
import { t as DEFAULT_SANDBOX_CONFIG } from "../types-DBEjF9YS.mjs";
|
|
5
5
|
import { t as createSandboxRuntime } from "../SandboxRuntimeAdapter-C1B4t20N.mjs";
|
|
6
6
|
import { t as SandboxOrchestrator } from "../SandboxOrchestrator-BEW3rqYi.mjs";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import { i as version, r as forceCheckForUpdate } from "../updateChecker-
|
|
2
|
+
import { i as version, r as forceCheckForUpdate } from "../updateChecker-CkbWr3V1.mjs";
|
|
3
3
|
import { execSync } from "child_process";
|
|
4
4
|
//#region src/commands/updateCommand.ts
|
|
5
5
|
/**
|
package/dist/index.mjs
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import { n as useCliStore, t as selectActiveBackgroundAgents } from "./store-Dw1nZX2Y.mjs";
|
|
3
|
-
import { A as DEFAULT_RETRY_CONFIG, B as CustomCommandStore, C as getApiUrl, D as ALWAYS_DENIED_FOR_AGENTS, E as generateCliTools, F as OllamaBackend, G as hasFileReferences, H as CommandHistoryStore, I as buildCoreSystemPrompt, J as mergeCommands, K as processFileReferences, L as buildSkillsPromptSection, M as clearFeatureModuleTools, N as registerFeatureModuleTools, O as DEFAULT_AGENT_MODEL, P as setWebSocketToolExecutor, R as isReadOnlyTool, S as loadContextFiles, T as PermissionManager, U as SessionStore, V as CheckpointStore, W as OAuthClient, X as searchFiles, Y as formatFileSize, Z as warmFileCache, _ as ServerLlmBackend, a as createBackgroundAgentTools, b as formatStep, c as AgentStore, d as parseAgentConfig, f as ApiClient, g as WebSocketLlmBackend, h as FallbackLlmBackend, i as createWriteTodosTool, j as DEFAULT_THOROUGHNESS, k as DEFAULT_MAX_ITERATIONS, l as SubagentOrchestrator, m as WebSocketConnectionManager, n as createFindDefinitionTool, o as BackgroundAgentManager, p as WebSocketToolExecutor, q as searchCommands, r as createTodoStore, s as createAgentDelegateTool, t as createGetFileStructureTool, u as createSkillTool, v as McpManager, w as getEnvironmentName, x as extractCompactInstructions, y as substituteArguments, z as ReActAgent } from "./tools-
|
|
4
|
-
import { Dt as validateNotebookPath$1, Et as validateJupyterKernelName, g as ChatModels, m as CREDIT_DEDUCT_TRANSACTION_TYPES, n as logger, t as ConfigStore } from "./ConfigStore-
|
|
5
|
-
import { i as version, t as checkForUpdate } from "./updateChecker-
|
|
3
|
+
import { A as DEFAULT_RETRY_CONFIG, B as CustomCommandStore, C as getApiUrl, D as ALWAYS_DENIED_FOR_AGENTS, E as generateCliTools, F as OllamaBackend, G as hasFileReferences, H as CommandHistoryStore, I as buildCoreSystemPrompt, J as mergeCommands, K as processFileReferences, L as buildSkillsPromptSection, M as clearFeatureModuleTools, N as registerFeatureModuleTools, O as DEFAULT_AGENT_MODEL, P as setWebSocketToolExecutor, R as isReadOnlyTool, S as loadContextFiles, T as PermissionManager, U as SessionStore, V as CheckpointStore, W as OAuthClient, X as searchFiles, Y as formatFileSize, Z as warmFileCache, _ as ServerLlmBackend, a as createBackgroundAgentTools, b as formatStep, c as AgentStore, d as parseAgentConfig, f as ApiClient, g as WebSocketLlmBackend, h as FallbackLlmBackend, i as createWriteTodosTool, j as DEFAULT_THOROUGHNESS, k as DEFAULT_MAX_ITERATIONS, l as SubagentOrchestrator, m as WebSocketConnectionManager, n as createFindDefinitionTool, o as BackgroundAgentManager, p as WebSocketToolExecutor, q as searchCommands, r as createTodoStore, s as createAgentDelegateTool, t as createGetFileStructureTool, u as createSkillTool, v as McpManager, w as getEnvironmentName, x as extractCompactInstructions, y as substituteArguments, z as ReActAgent } from "./tools-CDcSP1ky.mjs";
|
|
4
|
+
import { Dt as validateNotebookPath$1, Et as validateJupyterKernelName, g as ChatModels, m as CREDIT_DEDUCT_TRANSACTION_TYPES, n as logger, t as ConfigStore } from "./ConfigStore-Chtdkz1u.mjs";
|
|
5
|
+
import { i as version, t as checkForUpdate } from "./updateChecker-CkbWr3V1.mjs";
|
|
6
6
|
import React, { useCallback, useEffect, useMemo, useReducer, useRef, useState } from "react";
|
|
7
7
|
import { Box, Static, Text, render, useApp, useInput } from "ink";
|
|
8
8
|
import { execSync } from "child_process";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import { $ as RegInviteEvents, A as ImageGenerationUsageTransaction, B as OpenAIEmbeddingModel, C as FileEvents, Ct as isGPTImageModel, D as GenericCreditAddTransaction, E as GenerateImageToolCallSchema, F as KnowledgeType, G as ProjectEvents, H as Permission, I as LLMEvents, J as QuestMasterParamsSchema, K as PromptMetaZodSchema, L as MiscEvents, M as InboxEvents, N as InviteEvents, O as GenericCreditDeductTransaction, Ot as CollectionType, P as InviteType, Q as RechartsChartTypeList, R as ModalEvents, S as FeedbackEvents, St as getViewById, T as GEMINI_IMAGE_MODELS, Tt as sanitizeTelemetryError, U as PermissionDeniedError, V as OpenAIImageGenerationInput, W as ProfileEvents, X as RealtimeVoiceUsageTransaction, Y as REASONING_SUPPORTED_MODELS, Z as ReceivedCreditTransaction, _ as CompletionApiUsageTransaction, _t as VoyageAIEmbeddingModel, a as ApiKeyEvents, at as SpeechToTextModels, b as FIXED_TEMPERATURE_MODELS, bt as getDataLakeTags, c as AppFileEvents, ct as TagType, d as BFL_IMAGE_MODELS, dt as ToolUsageTransaction, et as ResearchModeParamsSchema, f as BFL_SAFETY_TOLERANCE, ft as TransferCreditTransaction, g as ChatModels, gt as VideoModels, h as ChatCompletionCreateInputSchema, ht as VideoGenerationUsageTransaction, i as AiEvents, it as SessionEvents, j as ImageModels, k as ImageEditUsageTransaction, l as ArtifactTypeSchema, lt as TaskScheduleHandler, mt as VIDEO_SIZE_CONSTRAINTS, n as logger, nt as ResearchTaskPeriodicFrequencyType, o as ApiKeyScope, ot as SubscriptionCreditTransaction, p as BedrockEmbeddingModel, pt as UiNavigationEvents, q as PurchaseTransaction, r as ALERT_THRESHOLDS, rt as ResearchTaskType, s as ApiKeyType, st as SupportedFabFileMimeTypes, t as ConfigStore, tt as ResearchTaskExecutionType, u as AuthEvents, ut as TextGenerationUsageTransaction, v as DashboardParamsSchema, vt as XAI_IMAGE_MODELS, w as FriendshipEvents, wt as resolveNavigationIntents, x as FavoriteDocumentType, xt as getMcpProviderMetadata, y as ElabsEvents, yt as b4mLLMTools, z as ModelBackend } from "./ConfigStore-
|
|
2
|
+
import { $ as RegInviteEvents, A as ImageGenerationUsageTransaction, B as OpenAIEmbeddingModel, C as FileEvents, Ct as isGPTImageModel, D as GenericCreditAddTransaction, E as GenerateImageToolCallSchema, F as KnowledgeType, G as ProjectEvents, H as Permission, I as LLMEvents, J as QuestMasterParamsSchema, K as PromptMetaZodSchema, L as MiscEvents, M as InboxEvents, N as InviteEvents, O as GenericCreditDeductTransaction, Ot as CollectionType, P as InviteType, Q as RechartsChartTypeList, R as ModalEvents, S as FeedbackEvents, St as getViewById, T as GEMINI_IMAGE_MODELS, Tt as sanitizeTelemetryError, U as PermissionDeniedError, V as OpenAIImageGenerationInput, W as ProfileEvents, X as RealtimeVoiceUsageTransaction, Y as REASONING_SUPPORTED_MODELS, Z as ReceivedCreditTransaction, _ as CompletionApiUsageTransaction, _t as VoyageAIEmbeddingModel, a as ApiKeyEvents, at as SpeechToTextModels, b as FIXED_TEMPERATURE_MODELS, bt as getDataLakeTags, c as AppFileEvents, ct as TagType, d as BFL_IMAGE_MODELS, dt as ToolUsageTransaction, et as ResearchModeParamsSchema, f as BFL_SAFETY_TOLERANCE, ft as TransferCreditTransaction, g as ChatModels, gt as VideoModels, h as ChatCompletionCreateInputSchema, ht as VideoGenerationUsageTransaction, i as AiEvents, it as SessionEvents, j as ImageModels, k as ImageEditUsageTransaction, l as ArtifactTypeSchema, lt as TaskScheduleHandler, mt as VIDEO_SIZE_CONSTRAINTS, n as logger, nt as ResearchTaskPeriodicFrequencyType, o as ApiKeyScope, ot as SubscriptionCreditTransaction, p as BedrockEmbeddingModel, pt as UiNavigationEvents, q as PurchaseTransaction, r as ALERT_THRESHOLDS, rt as ResearchTaskType, s as ApiKeyType, st as SupportedFabFileMimeTypes, t as ConfigStore, tt as ResearchTaskExecutionType, u as AuthEvents, ut as TextGenerationUsageTransaction, v as DashboardParamsSchema, vt as XAI_IMAGE_MODELS, w as FriendshipEvents, wt as resolveNavigationIntents, x as FavoriteDocumentType, xt as getMcpProviderMetadata, y as ElabsEvents, yt as b4mLLMTools, z as ModelBackend } from "./ConfigStore-Chtdkz1u.mjs";
|
|
3
3
|
import { n as isPathAllowed, t as assertPathAllowed } from "./pathValidation-CIytuhr3-Dt5dntLx.mjs";
|
|
4
4
|
import { execFile, execFileSync, spawn } from "child_process";
|
|
5
5
|
import { createHash, randomBytes } from "crypto";
|
|
@@ -5604,7 +5604,7 @@ var XAIImageService = class extends AIImageService {
|
|
|
5604
5604
|
} catch (error) {
|
|
5605
5605
|
Logger.error("XAI image generation failed:", error);
|
|
5606
5606
|
if (error instanceof Error) {
|
|
5607
|
-
if (error.message.includes("model") && !error.message.includes("unavailable")) throw new Error(`XAI image generation failed: Invalid model. Only '
|
|
5607
|
+
if (error.message.includes("model") && !error.message.includes("unavailable")) throw new Error(`XAI image generation failed: Invalid model. Only '${ImageModels.GROK_2_IMAGE}' is supported for image generation. Original error: ${error.message}`);
|
|
5608
5608
|
if (error.message.includes("unauthorized") || error.message.includes("api_key")) throw new Error(`XAI image generation failed: Invalid API key or unauthorized access. Please check your XAI API key. Original error: ${error.message}`);
|
|
5609
5609
|
if (error.message.includes("rate_limit")) throw new Error(`XAI image generation failed: Rate limit exceeded. Please try again later. Original error: ${error.message}`);
|
|
5610
5610
|
throw new Error(`XAI image generation failed: ${error.message}`);
|
|
@@ -8134,7 +8134,7 @@ No markdown, no explanation, no code blocks — just the raw JSON object.`;
|
|
|
8134
8134
|
"Minimize: sum(error^2)"
|
|
8135
8135
|
].join("\n");
|
|
8136
8136
|
//#endregion
|
|
8137
|
-
//#region ../../b4m-core/services/dist/tools-
|
|
8137
|
+
//#region ../../b4m-core/services/dist/tools-DINJfXEt.mjs
|
|
8138
8138
|
async function performDeepResearch(context, params, config) {
|
|
8139
8139
|
const maxDepth = config.maxDepth || 7;
|
|
8140
8140
|
const duration = config.duration || 4.5;
|
|
@@ -8836,6 +8836,8 @@ async function evaluateMath(params) {
|
|
|
8836
8836
|
console.log("🔢 Math Tool: Starting evaluation of expression:", params.expression);
|
|
8837
8837
|
try {
|
|
8838
8838
|
let expression = params.expression.trim();
|
|
8839
|
+
expression = expression.replace(/\/\/[^\n]*/g, "");
|
|
8840
|
+
expression = expression.split("\n").map((line) => line.trim()).filter((line) => line.length > 0).join("\n").replace(/;\s*$/, "");
|
|
8839
8841
|
if (expression.includes(";")) {
|
|
8840
8842
|
console.log("🔢 Math Tool: Detected multi-statement expression, evaluating with shared scope...");
|
|
8841
8843
|
const result = math.evaluate(expression);
|
|
@@ -11598,8 +11600,7 @@ const knowledgeBaseSearchTool = {
|
|
|
11598
11600
|
textSearch: true,
|
|
11599
11601
|
includeShared: true,
|
|
11600
11602
|
userGroups: context.user.groups || [],
|
|
11601
|
-
dataLakeTags: await getDynamicDataLakeTags(context)
|
|
11602
|
-
excludeContent: true
|
|
11603
|
+
dataLakeTags: await getDynamicDataLakeTags(context)
|
|
11603
11604
|
});
|
|
11604
11605
|
context.logger.log("📚 Knowledge Base Search: Found", searchResults.data.length, "of", searchResults.total, "results. Files:", searchResults.data.map((f) => f.fileName));
|
|
11605
11606
|
if (searchResults.data.length > 0) {
|
|
@@ -11698,18 +11699,23 @@ const knowledgeBaseRetrieveTool = {
|
|
|
11698
11699
|
try {
|
|
11699
11700
|
let files = [];
|
|
11700
11701
|
if (file_id) {
|
|
11701
|
-
const
|
|
11702
|
-
if (
|
|
11703
|
-
else {
|
|
11704
|
-
|
|
11705
|
-
|
|
11706
|
-
|
|
11707
|
-
|
|
11708
|
-
|
|
11709
|
-
|
|
11710
|
-
|
|
11711
|
-
|
|
11712
|
-
}
|
|
11702
|
+
const file = await context.db.fabfiles.findByIdAndUserId(file_id, context.userId);
|
|
11703
|
+
if (file) files = [file];
|
|
11704
|
+
else files = (await context.db.fabfiles.search(context.userId, file_id, {
|
|
11705
|
+
tags: [],
|
|
11706
|
+
shared: false
|
|
11707
|
+
}, {
|
|
11708
|
+
page: 1,
|
|
11709
|
+
limit: 1
|
|
11710
|
+
}, {
|
|
11711
|
+
by: "fileName",
|
|
11712
|
+
direction: "asc"
|
|
11713
|
+
}, {
|
|
11714
|
+
textSearch: true,
|
|
11715
|
+
includeShared: true,
|
|
11716
|
+
userGroups: context.user.groups || [],
|
|
11717
|
+
dataLakeTags: await getDynamicDataLakeTags(context)
|
|
11718
|
+
})).data;
|
|
11713
11719
|
if (files.length === 0) return `No document found with ID "${file_id}". The file may not exist or you may not have access to it. Try using search_knowledge_base to find the correct file ID.`;
|
|
11714
11720
|
}
|
|
11715
11721
|
if (files.length === 0 && (tags?.length || query)) {
|
|
@@ -11726,8 +11732,7 @@ const knowledgeBaseRetrieveTool = {
|
|
|
11726
11732
|
textSearch: true,
|
|
11727
11733
|
includeShared: true,
|
|
11728
11734
|
userGroups: context.user.groups || [],
|
|
11729
|
-
dataLakeTags: await getDynamicDataLakeTags(context)
|
|
11730
|
-
excludeContent: true
|
|
11735
|
+
dataLakeTags: await getDynamicDataLakeTags(context)
|
|
11731
11736
|
})).data;
|
|
11732
11737
|
if (files.length === 0) return `No documents found matching ${[query && `query "${query}"`, tags?.length && `tags [${tags.join(", ")}]`].filter(Boolean).join(" and ")}. Try broadening your search with search_knowledge_base.`;
|
|
11733
11738
|
}
|
|
@@ -4,7 +4,7 @@ import { homedir } from "os";
|
|
|
4
4
|
import path from "path";
|
|
5
5
|
import axios from "axios";
|
|
6
6
|
//#region package.json
|
|
7
|
-
var version = "0.2.72
|
|
7
|
+
var version = "0.2.72";
|
|
8
8
|
//#endregion
|
|
9
9
|
//#region src/utils/updateChecker.ts
|
|
10
10
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bike4mind/cli",
|
|
3
|
-
"version": "0.2.72
|
|
3
|
+
"version": "0.2.72",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Interactive CLI tool for Bike4Mind with ReAct agents",
|
|
6
6
|
"license": "UNLICENSED",
|
|
@@ -42,15 +42,15 @@
|
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
44
|
"@anthropic-ai/sdk": "^0.79.0",
|
|
45
|
-
"@aws-sdk/client-apigatewaymanagementapi": "^3.
|
|
46
|
-
"@aws-sdk/client-bedrock-runtime": "^3.
|
|
47
|
-
"@aws-sdk/client-cloudwatch": "^3.
|
|
48
|
-
"@aws-sdk/client-lambda": "^3.
|
|
49
|
-
"@aws-sdk/client-s3": "^3.
|
|
50
|
-
"@aws-sdk/client-sqs": "^3.
|
|
51
|
-
"@aws-sdk/client-transcribe": "^3.
|
|
52
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
53
|
-
"@aws-sdk/s3-request-presigner": "^3.
|
|
45
|
+
"@aws-sdk/client-apigatewaymanagementapi": "^3.1026.0",
|
|
46
|
+
"@aws-sdk/client-bedrock-runtime": "^3.1026.0",
|
|
47
|
+
"@aws-sdk/client-cloudwatch": "^3.1026.0",
|
|
48
|
+
"@aws-sdk/client-lambda": "^3.1026.0",
|
|
49
|
+
"@aws-sdk/client-s3": "^3.1026.0",
|
|
50
|
+
"@aws-sdk/client-sqs": "^3.1026.0",
|
|
51
|
+
"@aws-sdk/client-transcribe": "^3.1026.0",
|
|
52
|
+
"@aws-sdk/credential-provider-node": "^3.972.30",
|
|
53
|
+
"@aws-sdk/s3-request-presigner": "^3.1026.0",
|
|
54
54
|
"@casl/ability": "^6.8.0",
|
|
55
55
|
"@google/genai": "^1.46.0",
|
|
56
56
|
"@joplin/turndown-plugin-gfm": "^1.0.64",
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
"@modelcontextprotocol/sdk": "1.27.1",
|
|
59
59
|
"@octokit/rest": "^22.0.1",
|
|
60
60
|
"@opensearch-project/opensearch": "2.11.0",
|
|
61
|
-
"@smithy/node-http-handler": "^4.5.
|
|
61
|
+
"@smithy/node-http-handler": "^4.5.2",
|
|
62
62
|
"async-mutex": "^0.5.0",
|
|
63
63
|
"axios": "1.14.0",
|
|
64
64
|
"bcryptjs": "^3.0.2",
|
|
@@ -115,11 +115,11 @@
|
|
|
115
115
|
"zustand": "^4.5.4"
|
|
116
116
|
},
|
|
117
117
|
"devDependencies": {
|
|
118
|
-
"@bike4mind/agents": "0.4.9
|
|
119
|
-
"@bike4mind/common": "2.
|
|
120
|
-
"@bike4mind/mcp": "1.33.28
|
|
121
|
-
"@bike4mind/services": "2.72.1
|
|
122
|
-
"@bike4mind/utils": "2.16.10
|
|
118
|
+
"@bike4mind/agents": "0.4.9",
|
|
119
|
+
"@bike4mind/common": "2.80.0",
|
|
120
|
+
"@bike4mind/mcp": "1.33.28",
|
|
121
|
+
"@bike4mind/services": "2.72.1",
|
|
122
|
+
"@bike4mind/utils": "2.16.10",
|
|
123
123
|
"@types/better-sqlite3": "^7.6.13",
|
|
124
124
|
"@types/jsonwebtoken": "^9.0.4",
|
|
125
125
|
"@types/node": "^22.9.0",
|
|
@@ -136,5 +136,5 @@
|
|
|
136
136
|
"optionalDependencies": {
|
|
137
137
|
"@vscode/ripgrep": "^1.17.1"
|
|
138
138
|
},
|
|
139
|
-
"gitHead": "
|
|
139
|
+
"gitHead": "6de3f26f4e53c47b4dccf54cd1079f2ba07d6450"
|
|
140
140
|
}
|