@bike4mind/cli 0.2.37 → 0.2.38-add-notebook-project-fixes.20160
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/{artifactExtractor-QIDCYO4J.js → artifactExtractor-Z6UQO2IR.js} +1 -1
- package/dist/{chunk-AOP6RYDY.js → chunk-5APQNY55.js} +2 -2
- package/dist/{chunk-LJG44UT3.js → chunk-AU7OYPU4.js} +2 -2
- package/dist/{chunk-FACWWYF7.js → chunk-F4TQZA4G.js} +6 -6
- package/dist/{chunk-H7RVLAQD.js → chunk-HJVFUXVX.js} +1 -1
- package/dist/{chunk-NJQYWIDJ.js → chunk-J3YSVA6W.js} +2 -2
- package/dist/{chunk-EY65E4W4.js → chunk-OCFOJXLA.js} +39 -11
- package/dist/{chunk-5YLGNW2B.js → chunk-QCDYXXSD.js} +163 -54
- package/dist/{chunk-XIB66EG7.js → chunk-XBAC2O32.js} +298 -94
- package/dist/commands/doctorCommand.js +1 -1
- package/dist/commands/headlessCommand.js +20 -18
- package/dist/commands/mcpCommand.js +2 -2
- package/dist/commands/updateCommand.js +1 -1
- package/dist/{create-IFIWNV4T.js → create-MVD65MYF.js} +3 -3
- package/dist/index.js +54 -35
- package/dist/{llmMarkdownGenerator-7D3C33BP.js → llmMarkdownGenerator-MEEKZGSS.js} +1 -1
- package/dist/{markdownGenerator-C2QW7FBH.js → markdownGenerator-NKNJTN6H.js} +1 -1
- package/dist/{mementoService-ABCCDW6T.js → mementoService-QPAN6H6A.js} +3 -3
- package/dist/{src-ZPD2SIIU.js → src-I44AUY66.js} +11 -1
- package/dist/{src-D6KSYF2W.js → src-UJ7SX2X5.js} +2 -2
- package/dist/{subtractCredits-QKF6HTX3.js → subtractCredits-K56NLITN.js} +3 -3
- package/package.json +6 -6
|
@@ -36,20 +36,20 @@ import {
|
|
|
36
36
|
isReadOnlyTool,
|
|
37
37
|
loadContextFiles,
|
|
38
38
|
setWebSocketToolExecutor
|
|
39
|
-
} from "../chunk-
|
|
39
|
+
} from "../chunk-XBAC2O32.js";
|
|
40
40
|
import "../chunk-BDQBOLYG.js";
|
|
41
|
-
import "../chunk-
|
|
41
|
+
import "../chunk-J3YSVA6W.js";
|
|
42
42
|
import "../chunk-GQGOWACU.js";
|
|
43
|
-
import "../chunk-
|
|
44
|
-
import "../chunk-
|
|
45
|
-
import "../chunk-
|
|
43
|
+
import "../chunk-AU7OYPU4.js";
|
|
44
|
+
import "../chunk-5APQNY55.js";
|
|
45
|
+
import "../chunk-QCDYXXSD.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-
|
|
52
|
-
import "../chunk-
|
|
51
|
+
} from "../chunk-HJVFUXVX.js";
|
|
52
|
+
import "../chunk-OCFOJXLA.js";
|
|
53
53
|
import {
|
|
54
54
|
DEFAULT_SANDBOX_CONFIG
|
|
55
55
|
} from "../chunk-4BIBE3J7.js";
|
|
@@ -182,16 +182,16 @@ ${stdinContent}
|
|
|
182
182
|
return Promise.resolve({ answers: [] });
|
|
183
183
|
};
|
|
184
184
|
const sandboxConfig = config.sandbox ?? DEFAULT_SANDBOX_CONFIG;
|
|
185
|
-
const
|
|
185
|
+
const checkpointProjectDir = configStore.getProjectConfigDir() ?? process.cwd();
|
|
186
|
+
const checkpointStore = new CheckpointStore(checkpointProjectDir);
|
|
187
|
+
const [sandboxRuntime] = await Promise.all([
|
|
188
|
+
createSandboxRuntime(),
|
|
189
|
+
checkpointStore.init(session.id).catch(() => {
|
|
190
|
+
})
|
|
191
|
+
]);
|
|
186
192
|
const proxyManager = new ProxyManager(sandboxConfig.network);
|
|
187
193
|
const sandboxOrchestrator = new SandboxOrchestrator(sandboxConfig, sandboxRuntime, proxyManager);
|
|
188
194
|
permissionManager.setSandboxState(sandboxConfig.mode, sandboxOrchestrator.isActive());
|
|
189
|
-
const checkpointProjectDir = configStore.getProjectConfigDir() ?? process.cwd();
|
|
190
|
-
const checkpointStore = new CheckpointStore(checkpointProjectDir);
|
|
191
|
-
try {
|
|
192
|
-
await checkpointStore.init(session.id);
|
|
193
|
-
} catch {
|
|
194
|
-
}
|
|
195
195
|
const agentContext = {
|
|
196
196
|
currentAgent: null,
|
|
197
197
|
observationQueue: []
|
|
@@ -212,12 +212,15 @@ ${stdinContent}
|
|
|
212
212
|
additionalDirectories
|
|
213
213
|
);
|
|
214
214
|
const mcpManager = new McpManager(config);
|
|
215
|
-
await mcpManager.initialize();
|
|
216
|
-
const mcpTools = mcpManager.getTools();
|
|
217
215
|
const projectConfigDir = configStore.getProjectConfigDir();
|
|
218
216
|
const builtinAgentsDir = new URL("../agents/defaults/", import.meta.url).pathname;
|
|
219
217
|
const agentStore = new AgentStore(builtinAgentsDir, projectConfigDir ?? process.cwd());
|
|
220
|
-
await
|
|
218
|
+
const [, , contextResult] = await Promise.all([
|
|
219
|
+
mcpManager.initialize(),
|
|
220
|
+
agentStore.loadAgents(),
|
|
221
|
+
loadContextFiles(projectConfigDir)
|
|
222
|
+
]);
|
|
223
|
+
const mcpTools = mcpManager.getTools();
|
|
221
224
|
const orchestrator = new SubagentOrchestrator({
|
|
222
225
|
userId: config.userId,
|
|
223
226
|
llm,
|
|
@@ -246,7 +249,6 @@ ${stdinContent}
|
|
|
246
249
|
const cliTools = [agentDelegateTool, ...backgroundTools, writeTodosTool, findDefinitionTool, getFileStructureTool];
|
|
247
250
|
if (skillTool) cliTools.push(skillTool);
|
|
248
251
|
const allTools = [...b4mTools, ...mcpTools, ...cliTools];
|
|
249
|
-
const contextResult = await loadContextFiles(projectConfigDir);
|
|
250
252
|
const systemPrompt = buildCoreSystemPrompt({
|
|
251
253
|
contextContent: contextResult.mergedContent,
|
|
252
254
|
agentStore,
|
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
import {
|
|
3
3
|
createFabFile,
|
|
4
4
|
createFabFileSchema
|
|
5
|
-
} from "./chunk-
|
|
6
|
-
import "./chunk-
|
|
5
|
+
} from "./chunk-5APQNY55.js";
|
|
6
|
+
import "./chunk-QCDYXXSD.js";
|
|
7
7
|
import "./chunk-PFBYGCOW.js";
|
|
8
|
-
import "./chunk-
|
|
8
|
+
import "./chunk-OCFOJXLA.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-
|
|
49
|
+
} from "./chunk-XBAC2O32.js";
|
|
50
50
|
import "./chunk-BDQBOLYG.js";
|
|
51
|
-
import "./chunk-
|
|
51
|
+
import "./chunk-J3YSVA6W.js";
|
|
52
52
|
import "./chunk-GQGOWACU.js";
|
|
53
|
-
import "./chunk-
|
|
54
|
-
import "./chunk-
|
|
55
|
-
import "./chunk-
|
|
53
|
+
import "./chunk-AU7OYPU4.js";
|
|
54
|
+
import "./chunk-5APQNY55.js";
|
|
55
|
+
import "./chunk-QCDYXXSD.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-
|
|
61
|
+
} from "./chunk-HJVFUXVX.js";
|
|
62
62
|
import {
|
|
63
63
|
checkForUpdate,
|
|
64
64
|
package_default
|
|
65
|
-
} from "./chunk-
|
|
65
|
+
} from "./chunk-F4TQZA4G.js";
|
|
66
66
|
import {
|
|
67
67
|
selectActiveBackgroundAgents,
|
|
68
68
|
useCliStore
|
|
@@ -70,11 +70,11 @@ import {
|
|
|
70
70
|
import {
|
|
71
71
|
CREDIT_DEDUCT_TRANSACTION_TYPES,
|
|
72
72
|
ChatModels
|
|
73
|
-
} from "./chunk-
|
|
73
|
+
} from "./chunk-OCFOJXLA.js";
|
|
74
74
|
import "./chunk-4BIBE3J7.js";
|
|
75
75
|
|
|
76
76
|
// src/index.tsx
|
|
77
|
-
import React22, { useState as useState11, useEffect as
|
|
77
|
+
import React22, { useState as useState11, useEffect as useEffect8, useCallback as useCallback3, useRef as useRef3 } from "react";
|
|
78
78
|
import { render, Box as Box21, Text as Text21, useApp, useInput as useInput10 } from "ink";
|
|
79
79
|
import { execSync } from "child_process";
|
|
80
80
|
import { randomBytes } from "crypto";
|
|
@@ -84,7 +84,7 @@ import path2 from "path";
|
|
|
84
84
|
import { v4 as uuidv42 } from "uuid";
|
|
85
85
|
|
|
86
86
|
// src/components/App.tsx
|
|
87
|
-
import React16, { useState as useState7, useEffect as
|
|
87
|
+
import React16, { useState as useState7, useEffect as useEffect6 } from "react";
|
|
88
88
|
import { Box as Box15, Text as Text15, Static, useInput as useInput7 } from "ink";
|
|
89
89
|
|
|
90
90
|
// src/components/StatusBar.tsx
|
|
@@ -1471,9 +1471,16 @@ function ConfigEditor({ config, availableModels, onSave, onClose }) {
|
|
|
1471
1471
|
}
|
|
1472
1472
|
|
|
1473
1473
|
// src/components/McpViewer.tsx
|
|
1474
|
-
import React13 from "react";
|
|
1474
|
+
import React13, { useEffect as useEffect5, useReducer } from "react";
|
|
1475
1475
|
import { Box as Box12, Text as Text12, useInput as useInput6 } from "ink";
|
|
1476
1476
|
function McpViewer({ config, mcpManager, onClose }) {
|
|
1477
|
+
const [, forceUpdate] = useReducer((x) => x + 1, 0);
|
|
1478
|
+
useEffect5(() => {
|
|
1479
|
+
if (!mcpManager) return;
|
|
1480
|
+
mcpManager.setOnStateChange(forceUpdate);
|
|
1481
|
+
return () => mcpManager.setOnStateChange(() => {
|
|
1482
|
+
});
|
|
1483
|
+
}, [mcpManager]);
|
|
1477
1484
|
useInput6((input, key) => {
|
|
1478
1485
|
if (key.escape || input === "q") {
|
|
1479
1486
|
onClose();
|
|
@@ -1695,7 +1702,7 @@ function App({
|
|
|
1695
1702
|
const setIsThinking = useCliStore((state) => state.setIsThinking);
|
|
1696
1703
|
const pendingBackgroundTrigger = useCliStore((state) => state.pendingBackgroundTrigger);
|
|
1697
1704
|
const setPendingBackgroundTrigger = useCliStore((state) => state.setPendingBackgroundTrigger);
|
|
1698
|
-
|
|
1705
|
+
useEffect6(() => {
|
|
1699
1706
|
if (pendingBackgroundTrigger && !isThinking && onBackgroundCompletion) {
|
|
1700
1707
|
setPendingBackgroundTrigger(false);
|
|
1701
1708
|
onBackgroundCompletion();
|
|
@@ -2003,7 +2010,7 @@ function SessionSelector({ sessions, currentSession, onSelect, onCancel }) {
|
|
|
2003
2010
|
}
|
|
2004
2011
|
|
|
2005
2012
|
// src/components/LoginFlow.tsx
|
|
2006
|
-
import React21, { useState as useState10, useEffect as
|
|
2013
|
+
import React21, { useState as useState10, useEffect as useEffect7 } from "react";
|
|
2007
2014
|
import { Box as Box20, Text as Text20 } from "ink";
|
|
2008
2015
|
import Spinner3 from "ink-spinner";
|
|
2009
2016
|
import jwt from "jsonwebtoken";
|
|
@@ -2041,7 +2048,7 @@ function LoginFlow({ apiUrl = "http://localhost:3000", configStore, onSuccess, o
|
|
|
2041
2048
|
const [deviceFlow, setDeviceFlow] = useState10(null);
|
|
2042
2049
|
const [statusMessage, setStatusMessage] = useState10("Initiating device authorization...");
|
|
2043
2050
|
const [error, setError] = useState10(null);
|
|
2044
|
-
|
|
2051
|
+
useEffect7(() => {
|
|
2045
2052
|
const runLoginFlow = async () => {
|
|
2046
2053
|
const oauth = new OAuthClient(apiUrl);
|
|
2047
2054
|
try {
|
|
@@ -2076,7 +2083,7 @@ function LoginFlow({ apiUrl = "http://localhost:3000", configStore, onSuccess, o
|
|
|
2076
2083
|
};
|
|
2077
2084
|
runLoginFlow();
|
|
2078
2085
|
}, [apiUrl, configStore, onSuccess, onError]);
|
|
2079
|
-
|
|
2086
|
+
useEffect7(() => {
|
|
2080
2087
|
if (deviceFlow && status === "waiting") {
|
|
2081
2088
|
open(deviceFlow.verification_uri_complete).catch((err) => {
|
|
2082
2089
|
console.error("Failed to auto-open browser:", err);
|
|
@@ -2454,6 +2461,9 @@ Please acknowledge these background agent results and incorporate them into your
|
|
|
2454
2461
|
}
|
|
2455
2462
|
return this.inner.complete(model, effectiveMessages, options, callback);
|
|
2456
2463
|
}
|
|
2464
|
+
pushToolMessages(messages, tool, result) {
|
|
2465
|
+
return this.inner.pushToolMessages(messages, tool, result);
|
|
2466
|
+
}
|
|
2457
2467
|
async getModelInfo() {
|
|
2458
2468
|
return this.inner.getModelInfo();
|
|
2459
2469
|
}
|
|
@@ -2879,12 +2889,27 @@ function CliApp() {
|
|
|
2879
2889
|
config.tools.disabled || []
|
|
2880
2890
|
// denied tools from project config
|
|
2881
2891
|
);
|
|
2882
|
-
const
|
|
2883
|
-
|
|
2884
|
-
|
|
2885
|
-
|
|
2886
|
-
|
|
2892
|
+
const [
|
|
2893
|
+
{ createSandboxRuntime },
|
|
2894
|
+
{ SandboxOrchestrator },
|
|
2895
|
+
{ DEFAULT_SANDBOX_CONFIG },
|
|
2896
|
+
{ ProxyManager },
|
|
2897
|
+
{ ViolationLogStore }
|
|
2898
|
+
] = await Promise.all([
|
|
2899
|
+
import("./SandboxRuntimeAdapter-FQ56MAB2.js"),
|
|
2900
|
+
import("./SandboxOrchestrator-UIJ5GYBB.js"),
|
|
2901
|
+
import("./types-KB5NP6T4.js"),
|
|
2902
|
+
import("./ProxyManager-HEB4TLVX.js"),
|
|
2903
|
+
import("./ViolationLogStore-RIIUVURH.js")
|
|
2904
|
+
]);
|
|
2887
2905
|
const sandboxConfig = config.sandbox ?? DEFAULT_SANDBOX_CONFIG;
|
|
2906
|
+
const checkpointProjectDir = state.configStore.getProjectConfigDir() || process.cwd();
|
|
2907
|
+
const checkpointStore = new CheckpointStore(checkpointProjectDir);
|
|
2908
|
+
const [sandboxRuntime] = await Promise.all([
|
|
2909
|
+
createSandboxRuntime(),
|
|
2910
|
+
checkpointStore.init(newSession.id).catch(() => {
|
|
2911
|
+
})
|
|
2912
|
+
]);
|
|
2888
2913
|
const proxyManager = new ProxyManager(sandboxConfig.network);
|
|
2889
2914
|
const sandboxOrchestrator = new SandboxOrchestrator(sandboxConfig, sandboxRuntime, proxyManager);
|
|
2890
2915
|
proxyManager.onEvent((event) => {
|
|
@@ -2906,7 +2931,6 @@ function CliApp() {
|
|
|
2906
2931
|
});
|
|
2907
2932
|
}
|
|
2908
2933
|
});
|
|
2909
|
-
const { ViolationLogStore } = await import("./ViolationLogStore-RIIUVURH.js");
|
|
2910
2934
|
const violationStore = new ViolationLogStore();
|
|
2911
2935
|
sandboxOrchestrator.setViolationStore(violationStore);
|
|
2912
2936
|
permissionManager.setSandboxState(sandboxConfig.mode, sandboxOrchestrator.isActive());
|
|
@@ -2945,12 +2969,6 @@ function CliApp() {
|
|
|
2945
2969
|
enqueueUserQuestionPrompt({ id, payload, resolve });
|
|
2946
2970
|
});
|
|
2947
2971
|
};
|
|
2948
|
-
const checkpointProjectDir = state.configStore.getProjectConfigDir() || process.cwd();
|
|
2949
|
-
const checkpointStore = new CheckpointStore(checkpointProjectDir);
|
|
2950
|
-
try {
|
|
2951
|
-
await checkpointStore.init(newSession.id);
|
|
2952
|
-
} catch {
|
|
2953
|
-
}
|
|
2954
2972
|
const agentContext = {
|
|
2955
2973
|
currentAgent: null,
|
|
2956
2974
|
observationQueue: []
|
|
@@ -2973,7 +2991,14 @@ function CliApp() {
|
|
|
2973
2991
|
);
|
|
2974
2992
|
startupLog.push(`\u{1F6E0}\uFE0F Loaded ${b4mTools.length} B4M tool(s)`);
|
|
2975
2993
|
const mcpManager = new McpManager(config);
|
|
2976
|
-
|
|
2994
|
+
const builtinAgentsDir = new URL("./agents/defaults/", import.meta.url).pathname;
|
|
2995
|
+
const agentProjectDir = state.configStore.getProjectConfigDir();
|
|
2996
|
+
const agentStore = new AgentStore(builtinAgentsDir, agentProjectDir || process.cwd());
|
|
2997
|
+
const [, , contextResult] = await Promise.all([
|
|
2998
|
+
mcpManager.initialize(),
|
|
2999
|
+
agentStore.loadAgents(),
|
|
3000
|
+
loadContextFiles(agentProjectDir)
|
|
3001
|
+
]);
|
|
2977
3002
|
const mcpTools = mcpManager.getTools();
|
|
2978
3003
|
if (mcpTools.length > 0) {
|
|
2979
3004
|
const toolCountByServer = mcpManager.getToolCount();
|
|
@@ -2982,10 +3007,6 @@ function CliApp() {
|
|
|
2982
3007
|
} else {
|
|
2983
3008
|
startupLog.push(`\u{1F4E1} No MCP tools loaded`);
|
|
2984
3009
|
}
|
|
2985
|
-
const builtinAgentsDir = new URL("./agents/defaults/", import.meta.url).pathname;
|
|
2986
|
-
const agentProjectDir = state.configStore.getProjectConfigDir();
|
|
2987
|
-
const agentStore = new AgentStore(builtinAgentsDir, agentProjectDir || process.cwd());
|
|
2988
|
-
await agentStore.loadAgents();
|
|
2989
3010
|
const agentSummary = agentStore.getSummary();
|
|
2990
3011
|
startupLog.push(
|
|
2991
3012
|
`\u{1F916} Loaded ${agentSummary.total} agent(s): ${agentSummary.builtin} built-in, ${agentSummary.global} global, ${agentSummary.project} project`
|
|
@@ -3058,8 +3079,6 @@ function CliApp() {
|
|
|
3058
3079
|
logger.debug(
|
|
3059
3080
|
`Total tools available to agent: ${allTools.length} (${b4mTools.length} B4M + ${mcpTools.length} MCP + ${cliTools.length} CLI)`
|
|
3060
3081
|
);
|
|
3061
|
-
const projectDir = state.configStore.getProjectConfigDir();
|
|
3062
|
-
const contextResult = await loadContextFiles(projectDir);
|
|
3063
3082
|
if (contextResult.globalContext) {
|
|
3064
3083
|
startupLog.push(`\u{1F4C4} Global context: ${contextResult.globalContext.filename}`);
|
|
3065
3084
|
}
|
|
@@ -3190,7 +3209,7 @@ function CliApp() {
|
|
|
3190
3209
|
setStoreSession,
|
|
3191
3210
|
setState
|
|
3192
3211
|
]);
|
|
3193
|
-
|
|
3212
|
+
useEffect8(() => {
|
|
3194
3213
|
init();
|
|
3195
3214
|
}, [init]);
|
|
3196
3215
|
const handleCustomCommandMessage = async (fullTemplate, displayMessage) => {
|
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
import {
|
|
3
3
|
findMostSimilarMemento,
|
|
4
4
|
getRelevantMementos
|
|
5
|
-
} from "./chunk-
|
|
6
|
-
import "./chunk-
|
|
5
|
+
} from "./chunk-J3YSVA6W.js";
|
|
6
|
+
import "./chunk-QCDYXXSD.js";
|
|
7
7
|
import "./chunk-PFBYGCOW.js";
|
|
8
|
-
import "./chunk-
|
|
8
|
+
import "./chunk-OCFOJXLA.js";
|
|
9
9
|
export {
|
|
10
10
|
findMostSimilarMemento,
|
|
11
11
|
getRelevantMementos
|
|
@@ -4,6 +4,7 @@ import {
|
|
|
4
4
|
ALL_IMAGE_SIZES,
|
|
5
5
|
API_SERVICE_GROUPS,
|
|
6
6
|
APP_NAME,
|
|
7
|
+
AdminSystemPromptCategory,
|
|
7
8
|
AgileApi,
|
|
8
9
|
AiEvents,
|
|
9
10
|
ApiKeyEvents,
|
|
@@ -243,11 +244,13 @@ import {
|
|
|
243
244
|
QuestResourceSchema,
|
|
244
245
|
QuestSchema,
|
|
245
246
|
QuestStatusSchema,
|
|
247
|
+
RATE_LIMIT_INTEGRATIONS,
|
|
246
248
|
REASONING_EFFORT_DESCRIPTIONS,
|
|
247
249
|
REASONING_EFFORT_LABELS,
|
|
248
250
|
REASONING_SUPPORTED_MODELS,
|
|
249
251
|
RESTRICTION_OPERATIONS,
|
|
250
252
|
RESTRICTION_SUBJECT_TYPES,
|
|
253
|
+
ROTATABLE_INTEGRATIONS,
|
|
251
254
|
RapidReplyFallbackBehaviors,
|
|
252
255
|
RapidReplyResponseStylesCommon,
|
|
253
256
|
RapidReplySettingsSchema,
|
|
@@ -399,6 +402,7 @@ import {
|
|
|
399
402
|
getVisibilityLevel,
|
|
400
403
|
getWebsiteUrl,
|
|
401
404
|
groupShareSchema,
|
|
405
|
+
hasRateLimitInfo,
|
|
402
406
|
isArtifact,
|
|
403
407
|
isCommentWebhookEvent,
|
|
404
408
|
isCreditHolder,
|
|
@@ -417,6 +421,7 @@ import {
|
|
|
417
421
|
isValidIssueKey,
|
|
418
422
|
matchesSearchQuery,
|
|
419
423
|
mergeArtifactMetadata,
|
|
424
|
+
normalizeEndpoint,
|
|
420
425
|
parallelLimit,
|
|
421
426
|
parseRateLimitHeaders,
|
|
422
427
|
passwordSchema,
|
|
@@ -457,12 +462,13 @@ import {
|
|
|
457
462
|
validateReactArtifactV2,
|
|
458
463
|
validateSvgArtifactV2,
|
|
459
464
|
wikiMarkupToAdf
|
|
460
|
-
} from "./chunk-
|
|
465
|
+
} from "./chunk-OCFOJXLA.js";
|
|
461
466
|
export {
|
|
462
467
|
ALL_IMAGE_MODELS,
|
|
463
468
|
ALL_IMAGE_SIZES,
|
|
464
469
|
API_SERVICE_GROUPS,
|
|
465
470
|
APP_NAME,
|
|
471
|
+
AdminSystemPromptCategory,
|
|
466
472
|
AgileApi,
|
|
467
473
|
AiEvents,
|
|
468
474
|
ApiKeyEvents,
|
|
@@ -703,11 +709,13 @@ export {
|
|
|
703
709
|
QuestResourceSchema,
|
|
704
710
|
QuestSchema,
|
|
705
711
|
QuestStatusSchema,
|
|
712
|
+
RATE_LIMIT_INTEGRATIONS,
|
|
706
713
|
REASONING_EFFORT_DESCRIPTIONS,
|
|
707
714
|
REASONING_EFFORT_LABELS,
|
|
708
715
|
REASONING_SUPPORTED_MODELS,
|
|
709
716
|
RESTRICTION_OPERATIONS,
|
|
710
717
|
RESTRICTION_SUBJECT_TYPES,
|
|
718
|
+
ROTATABLE_INTEGRATIONS,
|
|
711
719
|
RapidReplyFallbackBehaviors,
|
|
712
720
|
RapidReplyResponseStylesCommon,
|
|
713
721
|
RapidReplySettingsSchema,
|
|
@@ -860,6 +868,7 @@ export {
|
|
|
860
868
|
getVisibilityLevel,
|
|
861
869
|
getWebsiteUrl,
|
|
862
870
|
groupShareSchema,
|
|
871
|
+
hasRateLimitInfo,
|
|
863
872
|
isArtifact,
|
|
864
873
|
isCommentWebhookEvent,
|
|
865
874
|
isCreditHolder,
|
|
@@ -878,6 +887,7 @@ export {
|
|
|
878
887
|
isValidIssueKey,
|
|
879
888
|
matchesSearchQuery,
|
|
880
889
|
mergeArtifactMetadata,
|
|
890
|
+
normalizeEndpoint,
|
|
881
891
|
parallelLimit,
|
|
882
892
|
parseRateLimitHeaders,
|
|
883
893
|
passwordSchema,
|
|
@@ -139,7 +139,7 @@ import {
|
|
|
139
139
|
validateUrlForFetch,
|
|
140
140
|
warmUpSettingsCache,
|
|
141
141
|
withRetry
|
|
142
|
-
} from "./chunk-
|
|
142
|
+
} from "./chunk-QCDYXXSD.js";
|
|
143
143
|
import {
|
|
144
144
|
Logger,
|
|
145
145
|
NotificationDeduplicator,
|
|
@@ -152,7 +152,7 @@ import {
|
|
|
152
152
|
buildRateLimitLogEntry,
|
|
153
153
|
isNearLimit,
|
|
154
154
|
parseRateLimitHeaders
|
|
155
|
-
} from "./chunk-
|
|
155
|
+
} from "./chunk-OCFOJXLA.js";
|
|
156
156
|
export {
|
|
157
157
|
AIVideoService,
|
|
158
158
|
AWSBackend,
|
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
import {
|
|
3
3
|
SubtractCreditsSchema,
|
|
4
4
|
subtractCredits
|
|
5
|
-
} from "./chunk-
|
|
6
|
-
import "./chunk-
|
|
5
|
+
} from "./chunk-AU7OYPU4.js";
|
|
6
|
+
import "./chunk-QCDYXXSD.js";
|
|
7
7
|
import "./chunk-PFBYGCOW.js";
|
|
8
|
-
import "./chunk-
|
|
8
|
+
import "./chunk-OCFOJXLA.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.
|
|
3
|
+
"version": "0.2.38-add-notebook-project-fixes.20160+6312c53db",
|
|
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.58.
|
|
118
|
-
"@bike4mind/mcp": "1.32.
|
|
119
|
-
"@bike4mind/services": "2.54.
|
|
120
|
-
"@bike4mind/utils": "2.11.
|
|
117
|
+
"@bike4mind/common": "2.58.1-add-notebook-project-fixes.20160+6312c53db",
|
|
118
|
+
"@bike4mind/mcp": "1.32.6-add-notebook-project-fixes.20160+6312c53db",
|
|
119
|
+
"@bike4mind/services": "2.54.2-add-notebook-project-fixes.20160+6312c53db",
|
|
120
|
+
"@bike4mind/utils": "2.11.1-add-notebook-project-fixes.20160+6312c53db",
|
|
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": "
|
|
138
|
+
"gitHead": "6312c53db7d33ec00d8d5c85e4c7d04177fbf7f0"
|
|
139
139
|
}
|