@bike4mind/cli 0.2.31-cli-update-command.19462 → 0.2.31-cli-update-command.19497
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-22AVFN7A.js → artifactExtractor-Z6CL6QFN.js} +1 -1
- package/dist/{chunk-DEW32L4X.js → chunk-2LLA4MTN.js} +2 -2
- package/dist/{chunk-E77VWEKZ.js → chunk-GE7Q64MS.js} +120 -13
- package/dist/{chunk-FZXNUST6.js → chunk-IXIOYIPO.js} +6 -6
- package/dist/{chunk-24JZFYBV.js → chunk-RI45VJW3.js} +57 -2
- package/dist/{chunk-6HWTNX47.js → chunk-T67NGQW6.js} +2 -2
- package/dist/{chunk-U4HDDXWT.js → chunk-ZOWCX4MQ.js} +2 -2
- package/dist/commands/doctorCommand.js +1 -1
- package/dist/commands/updateCommand.js +1 -1
- package/dist/{create-LTISVVKL.js → create-JNUW7ICC.js} +3 -3
- package/dist/index.js +898 -32
- package/dist/{llmMarkdownGenerator-DF7EFQZW.js → llmMarkdownGenerator-KGA4HTQN.js} +1 -1
- package/dist/{markdownGenerator-6TAH7OEH.js → markdownGenerator-ERG7FI5H.js} +1 -1
- package/dist/{mementoService-BY5ACS3K.js → mementoService-I56R5DNA.js} +3 -3
- package/dist/{src-C5QSTGEZ.js → src-EMANOLFK.js} +6 -2
- package/dist/{src-ZXFQ5Y4O.js → src-IAR65K73.js} +15 -1
- package/dist/{subtractCredits-V645IMXQ.js → subtractCredits-3MEQF5CV.js} +3 -3
- package/package.json +6 -6
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
import {
|
|
3
3
|
findMostSimilarMemento,
|
|
4
4
|
getRelevantMementos
|
|
5
|
-
} from "./chunk-
|
|
6
|
-
import "./chunk-
|
|
7
|
-
import "./chunk-
|
|
5
|
+
} from "./chunk-T67NGQW6.js";
|
|
6
|
+
import "./chunk-RI45VJW3.js";
|
|
7
|
+
import "./chunk-GE7Q64MS.js";
|
|
8
8
|
import "./chunk-OCYRD7D6.js";
|
|
9
9
|
export {
|
|
10
10
|
findMostSimilarMemento,
|
|
@@ -65,6 +65,7 @@ import {
|
|
|
65
65
|
VoyageAIEmbeddingProvider,
|
|
66
66
|
XAIBackend,
|
|
67
67
|
XAIImageService,
|
|
68
|
+
_resetLambdaErrorHandlers,
|
|
68
69
|
aiImageService,
|
|
69
70
|
aiVideoService,
|
|
70
71
|
buildAndSortMessages,
|
|
@@ -125,6 +126,7 @@ import {
|
|
|
125
126
|
parseQuestPlanFunctionCall,
|
|
126
127
|
processFabFilesServer,
|
|
127
128
|
processUrlsFromPrompt,
|
|
129
|
+
registerLambdaErrorHandlers,
|
|
128
130
|
secureParameters,
|
|
129
131
|
sendToConnection,
|
|
130
132
|
shouldTriggerFallback,
|
|
@@ -137,12 +139,12 @@ import {
|
|
|
137
139
|
validateUrlForFetch,
|
|
138
140
|
warmUpSettingsCache,
|
|
139
141
|
withRetry
|
|
140
|
-
} from "./chunk-
|
|
142
|
+
} from "./chunk-RI45VJW3.js";
|
|
141
143
|
import {
|
|
142
144
|
buildRateLimitLogEntry,
|
|
143
145
|
isNearLimit,
|
|
144
146
|
parseRateLimitHeaders
|
|
145
|
-
} from "./chunk-
|
|
147
|
+
} from "./chunk-GE7Q64MS.js";
|
|
146
148
|
import {
|
|
147
149
|
Logger,
|
|
148
150
|
NotificationDeduplicator,
|
|
@@ -219,6 +221,7 @@ export {
|
|
|
219
221
|
VoyageAIEmbeddingProvider,
|
|
220
222
|
XAIBackend,
|
|
221
223
|
XAIImageService,
|
|
224
|
+
_resetLambdaErrorHandlers,
|
|
222
225
|
aiImageService,
|
|
223
226
|
aiVideoService,
|
|
224
227
|
buildAndSortMessages,
|
|
@@ -286,6 +289,7 @@ export {
|
|
|
286
289
|
postMessageToSlack,
|
|
287
290
|
processFabFilesServer,
|
|
288
291
|
processUrlsFromPrompt,
|
|
292
|
+
registerLambdaErrorHandlers,
|
|
289
293
|
secureParameters,
|
|
290
294
|
sendToConnection,
|
|
291
295
|
shouldTriggerFallback,
|
|
@@ -42,6 +42,12 @@ import {
|
|
|
42
42
|
ChatModels,
|
|
43
43
|
CitableSourceSchema,
|
|
44
44
|
ClaudeArtifactMimeTypes,
|
|
45
|
+
CliCompletionChunkAction,
|
|
46
|
+
CliCompletionDoneAction,
|
|
47
|
+
CliCompletionErrorAction,
|
|
48
|
+
CliCompletionRequestAction,
|
|
49
|
+
CliToolRequestAction,
|
|
50
|
+
CliToolResponseAction,
|
|
45
51
|
CollectionType,
|
|
46
52
|
CompletionApiUsageTransaction,
|
|
47
53
|
CompletionRequestSchema,
|
|
@@ -101,6 +107,7 @@ import {
|
|
|
101
107
|
GenericCreditDeductTransaction,
|
|
102
108
|
HeartbeatAction,
|
|
103
109
|
HeartbeatPongAction,
|
|
110
|
+
HelpEvents,
|
|
104
111
|
HtmlArtifactSchema,
|
|
105
112
|
HtmlArtifactV2Schema,
|
|
106
113
|
IMAGE_MODELS,
|
|
@@ -440,7 +447,7 @@ import {
|
|
|
440
447
|
validateReactArtifactV2,
|
|
441
448
|
validateSvgArtifactV2,
|
|
442
449
|
wikiMarkupToAdf
|
|
443
|
-
} from "./chunk-
|
|
450
|
+
} from "./chunk-GE7Q64MS.js";
|
|
444
451
|
export {
|
|
445
452
|
ALL_IMAGE_MODELS,
|
|
446
453
|
ALL_IMAGE_SIZES,
|
|
@@ -485,6 +492,12 @@ export {
|
|
|
485
492
|
ChatModels,
|
|
486
493
|
CitableSourceSchema,
|
|
487
494
|
ClaudeArtifactMimeTypes,
|
|
495
|
+
CliCompletionChunkAction,
|
|
496
|
+
CliCompletionDoneAction,
|
|
497
|
+
CliCompletionErrorAction,
|
|
498
|
+
CliCompletionRequestAction,
|
|
499
|
+
CliToolRequestAction,
|
|
500
|
+
CliToolResponseAction,
|
|
488
501
|
CollectionType,
|
|
489
502
|
CompletionApiUsageTransaction,
|
|
490
503
|
CompletionRequestSchema,
|
|
@@ -544,6 +557,7 @@ export {
|
|
|
544
557
|
GenericCreditDeductTransaction,
|
|
545
558
|
HeartbeatAction,
|
|
546
559
|
HeartbeatPongAction,
|
|
560
|
+
HelpEvents,
|
|
547
561
|
HtmlArtifactSchema,
|
|
548
562
|
HtmlArtifactV2Schema,
|
|
549
563
|
IMAGE_MODELS,
|
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
import {
|
|
3
3
|
SubtractCreditsSchema,
|
|
4
4
|
subtractCredits
|
|
5
|
-
} from "./chunk-
|
|
6
|
-
import "./chunk-
|
|
7
|
-
import "./chunk-
|
|
5
|
+
} from "./chunk-2LLA4MTN.js";
|
|
6
|
+
import "./chunk-RI45VJW3.js";
|
|
7
|
+
import "./chunk-GE7Q64MS.js";
|
|
8
8
|
import "./chunk-OCYRD7D6.js";
|
|
9
9
|
export {
|
|
10
10
|
SubtractCreditsSchema,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bike4mind/cli",
|
|
3
|
-
"version": "0.2.31-cli-update-command.
|
|
3
|
+
"version": "0.2.31-cli-update-command.19497+900d40170",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Interactive CLI tool for Bike4Mind with ReAct agents",
|
|
6
6
|
"license": "UNLICENSED",
|
|
@@ -111,10 +111,10 @@
|
|
|
111
111
|
},
|
|
112
112
|
"devDependencies": {
|
|
113
113
|
"@bike4mind/agents": "0.1.0",
|
|
114
|
-
"@bike4mind/common": "2.52.1-cli-update-command.
|
|
115
|
-
"@bike4mind/mcp": "1.31.1-cli-update-command.
|
|
116
|
-
"@bike4mind/services": "2.50.1-cli-update-command.
|
|
117
|
-
"@bike4mind/utils": "2.7.1-cli-update-command.
|
|
114
|
+
"@bike4mind/common": "2.52.1-cli-update-command.19497+900d40170",
|
|
115
|
+
"@bike4mind/mcp": "1.31.1-cli-update-command.19497+900d40170",
|
|
116
|
+
"@bike4mind/services": "2.50.1-cli-update-command.19497+900d40170",
|
|
117
|
+
"@bike4mind/utils": "2.7.1-cli-update-command.19497+900d40170",
|
|
118
118
|
"@types/better-sqlite3": "^7.6.13",
|
|
119
119
|
"@types/diff": "^5.0.9",
|
|
120
120
|
"@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": "900d40170c4a901cdc7d28d312af1fcbb638599a"
|
|
139
139
|
}
|