@bike4mind/cli 0.2.30-subagent-delegation.19187 → 0.2.30
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/{HydrationEngine-YL2HWJ3V.js → HydrationEngine-WGYKF46H.js} +1 -1
- package/dist/{artifactExtractor-3T4JDKOX.js → artifactExtractor-JQMWU272.js} +1 -1
- package/dist/{chunk-LCUAB2XL.js → chunk-BQAPZP5Y.js} +29 -19
- package/dist/{chunk-TVW4ZESU.js → chunk-BYXFQJYT.js} +10 -1
- package/dist/{chunk-GOOE52BP.js → chunk-LLA44SW7.js} +2 -2
- package/dist/{chunk-GQGOWACU.js → chunk-RUI6HNLO.js} +4 -8
- package/dist/{chunk-HHCCCOKK.js → chunk-T4VPCTBM.js} +740 -4
- package/dist/{chunk-SKXKWSBL.js → chunk-U63VANTQ.js} +2 -2
- package/dist/{chunk-KQZZPB3W.js → chunk-WIB75EEX.js} +2 -2
- package/dist/{create-SMV7UOBG.js → create-4WOBQ5JM.js} +3 -3
- package/dist/index.js +116 -328
- package/dist/{llmMarkdownGenerator-6HGLOA4M.js → llmMarkdownGenerator-2O24TMGD.js} +1 -1
- package/dist/{markdownGenerator-USYIDARA.js → markdownGenerator-6LAK3FQM.js} +1 -1
- package/dist/{mementoService-VBDVRVF3.js → mementoService-NRR7NQ4C.js} +3 -3
- package/dist/{src-5GHI2MWS.js → src-3FQBHGOM.js} +2 -2
- package/dist/{src-Z4ERYRGC.js → src-VMQ5TKYR.js} +33 -1
- package/dist/{store-FU6NDC2W.js → store-K5MB3SE7.js} +1 -1
- package/dist/{subtractCredits-TNHL7MM2.js → subtractCredits-HK72MSDY.js} +3 -3
- package/package.json +9 -9
|
@@ -134,12 +134,12 @@ import {
|
|
|
134
134
|
validateMermaidSyntax,
|
|
135
135
|
warmUpSettingsCache,
|
|
136
136
|
withRetry
|
|
137
|
-
} from "./chunk-
|
|
137
|
+
} from "./chunk-BQAPZP5Y.js";
|
|
138
138
|
import {
|
|
139
139
|
buildRateLimitLogEntry,
|
|
140
140
|
isNearLimit,
|
|
141
141
|
parseRateLimitHeaders
|
|
142
|
-
} from "./chunk-
|
|
142
|
+
} from "./chunk-T4VPCTBM.js";
|
|
143
143
|
import {
|
|
144
144
|
Logger,
|
|
145
145
|
NotificationDeduplicator,
|
|
@@ -31,6 +31,7 @@ import {
|
|
|
31
31
|
CATEGORY_ICONS,
|
|
32
32
|
CHAT_MODELS,
|
|
33
33
|
CODE_FILE_MIME_TYPES,
|
|
34
|
+
COMMON_JIRA_WEBHOOK_EVENTS,
|
|
34
35
|
CONFLUENCE_MAX_ATTACHMENT_SIZE,
|
|
35
36
|
CREDIT_ADD_TRANSACTION_TYPES,
|
|
36
37
|
CREDIT_DEDUCT_TRANSACTION_TYPES,
|
|
@@ -121,6 +122,7 @@ import {
|
|
|
121
122
|
InvitesRefetchAction,
|
|
122
123
|
JIRA_MAX_ATTACHMENT_SIZE,
|
|
123
124
|
JiraApi,
|
|
125
|
+
JiraWebhookDeliveryStatus,
|
|
124
126
|
KnowledgeType,
|
|
125
127
|
LEGACY_IMAGE_MODEL_MAP,
|
|
126
128
|
LIVEOPS_TRIAGE_VALIDATION_LIMITS,
|
|
@@ -232,6 +234,7 @@ import {
|
|
|
232
234
|
QuestStatusSchema,
|
|
233
235
|
REASONING_EFFORT_DESCRIPTIONS,
|
|
234
236
|
REASONING_EFFORT_LABELS,
|
|
237
|
+
REASONING_SUPPORTED_MODELS,
|
|
235
238
|
RESTRICTION_OPERATIONS,
|
|
236
239
|
RESTRICTION_SUBJECT_TYPES,
|
|
237
240
|
RapidReplyFallbackBehaviors,
|
|
@@ -309,6 +312,7 @@ import {
|
|
|
309
312
|
VoyageAIEmbeddingModel,
|
|
310
313
|
WEBSITE_URL,
|
|
311
314
|
WHATS_NEW_VALIDATION_LIMITS,
|
|
315
|
+
WebhookApi,
|
|
312
316
|
WebhookDeliveryStatus,
|
|
313
317
|
WhatsNewConfigSchema,
|
|
314
318
|
WhatsNewSyncConfigSchema,
|
|
@@ -332,15 +336,21 @@ import {
|
|
|
332
336
|
detectMimeType,
|
|
333
337
|
detectResourceConflicts,
|
|
334
338
|
determineMimeType,
|
|
339
|
+
escapeSlackMrkdwn,
|
|
340
|
+
extractAdfText,
|
|
335
341
|
extractSnippetMeta,
|
|
342
|
+
extractWebhookEventType,
|
|
336
343
|
formatActivityMessage,
|
|
337
344
|
formatBoard,
|
|
338
345
|
formatBoardConfiguration,
|
|
339
346
|
formatBoardIssues,
|
|
340
347
|
formatBoardList,
|
|
341
348
|
formatComment,
|
|
349
|
+
formatCommentEventForSlack,
|
|
342
350
|
formatFileSize,
|
|
351
|
+
formatGenericEventForSlack,
|
|
343
352
|
formatIssueDetails,
|
|
353
|
+
formatIssueEventForSlack,
|
|
344
354
|
formatIssueLinkTypes,
|
|
345
355
|
formatIssueLinks,
|
|
346
356
|
formatIssueResponse,
|
|
@@ -349,6 +359,7 @@ import {
|
|
|
349
359
|
formatSSEError,
|
|
350
360
|
formatSearchResults,
|
|
351
361
|
formatSprint,
|
|
362
|
+
formatSprintEventForSlack,
|
|
352
363
|
formatSprintIssues,
|
|
353
364
|
formatSprintList,
|
|
354
365
|
formatTransitionResult,
|
|
@@ -356,6 +367,8 @@ import {
|
|
|
356
367
|
formatUser,
|
|
357
368
|
formatUserList,
|
|
358
369
|
formatWatchers,
|
|
370
|
+
formatWebhook,
|
|
371
|
+
formatWebhookList,
|
|
359
372
|
getAtlassianConfig,
|
|
360
373
|
getErrorMessage,
|
|
361
374
|
getFileTypeEmoji,
|
|
@@ -366,15 +379,18 @@ import {
|
|
|
366
379
|
getWebsiteUrl,
|
|
367
380
|
groupShareSchema,
|
|
368
381
|
isArtifact,
|
|
382
|
+
isCommentWebhookEvent,
|
|
369
383
|
isCreditHolder,
|
|
370
384
|
isDeletedArtifact,
|
|
371
385
|
isDraftArtifact,
|
|
386
|
+
isIssueWebhookEvent,
|
|
372
387
|
isModelDeprecated,
|
|
373
388
|
isNearLimit,
|
|
374
389
|
isPlaceholderValue,
|
|
375
390
|
isPredefinedTag,
|
|
376
391
|
isPublicArtifact,
|
|
377
392
|
isPublishedArtifact,
|
|
393
|
+
isSprintWebhookEvent,
|
|
378
394
|
isSupportedEmbeddingModel,
|
|
379
395
|
isValidEnumValue,
|
|
380
396
|
isValidIssueKey,
|
|
@@ -418,7 +434,7 @@ import {
|
|
|
418
434
|
validateReactArtifactV2,
|
|
419
435
|
validateSvgArtifactV2,
|
|
420
436
|
wikiMarkupToAdf
|
|
421
|
-
} from "./chunk-
|
|
437
|
+
} from "./chunk-T4VPCTBM.js";
|
|
422
438
|
export {
|
|
423
439
|
ALL_IMAGE_MODELS,
|
|
424
440
|
ALL_IMAGE_SIZES,
|
|
@@ -451,6 +467,7 @@ export {
|
|
|
451
467
|
CATEGORY_ICONS,
|
|
452
468
|
CHAT_MODELS,
|
|
453
469
|
CODE_FILE_MIME_TYPES,
|
|
470
|
+
COMMON_JIRA_WEBHOOK_EVENTS,
|
|
454
471
|
CONFLUENCE_MAX_ATTACHMENT_SIZE,
|
|
455
472
|
MIME_TYPE_MAP as CONFLUENCE_MIME_TYPE_MAP,
|
|
456
473
|
CREDIT_ADD_TRANSACTION_TYPES,
|
|
@@ -542,6 +559,7 @@ export {
|
|
|
542
559
|
InvitesRefetchAction,
|
|
543
560
|
JIRA_MAX_ATTACHMENT_SIZE,
|
|
544
561
|
JiraApi,
|
|
562
|
+
JiraWebhookDeliveryStatus,
|
|
545
563
|
KnowledgeType,
|
|
546
564
|
LEGACY_IMAGE_MODEL_MAP,
|
|
547
565
|
LIVEOPS_TRIAGE_VALIDATION_LIMITS,
|
|
@@ -653,6 +671,7 @@ export {
|
|
|
653
671
|
QuestStatusSchema,
|
|
654
672
|
REASONING_EFFORT_DESCRIPTIONS,
|
|
655
673
|
REASONING_EFFORT_LABELS,
|
|
674
|
+
REASONING_SUPPORTED_MODELS,
|
|
656
675
|
RESTRICTION_OPERATIONS,
|
|
657
676
|
RESTRICTION_SUBJECT_TYPES,
|
|
658
677
|
RapidReplyFallbackBehaviors,
|
|
@@ -730,6 +749,7 @@ export {
|
|
|
730
749
|
VoyageAIEmbeddingModel,
|
|
731
750
|
WEBSITE_URL,
|
|
732
751
|
WHATS_NEW_VALIDATION_LIMITS,
|
|
752
|
+
WebhookApi,
|
|
733
753
|
WebhookDeliveryStatus,
|
|
734
754
|
WhatsNewConfigSchema,
|
|
735
755
|
WhatsNewSyncConfigSchema,
|
|
@@ -754,15 +774,21 @@ export {
|
|
|
754
774
|
detectMimeType,
|
|
755
775
|
detectResourceConflicts,
|
|
756
776
|
determineMimeType,
|
|
777
|
+
escapeSlackMrkdwn,
|
|
778
|
+
extractAdfText,
|
|
757
779
|
extractSnippetMeta,
|
|
780
|
+
extractWebhookEventType,
|
|
758
781
|
formatActivityMessage,
|
|
759
782
|
formatBoard,
|
|
760
783
|
formatBoardConfiguration,
|
|
761
784
|
formatBoardIssues,
|
|
762
785
|
formatBoardList,
|
|
763
786
|
formatComment,
|
|
787
|
+
formatCommentEventForSlack,
|
|
764
788
|
formatFileSize,
|
|
789
|
+
formatGenericEventForSlack,
|
|
765
790
|
formatIssueDetails,
|
|
791
|
+
formatIssueEventForSlack,
|
|
766
792
|
formatIssueLinkTypes,
|
|
767
793
|
formatIssueLinks,
|
|
768
794
|
formatIssueResponse,
|
|
@@ -771,6 +797,7 @@ export {
|
|
|
771
797
|
formatSSEError,
|
|
772
798
|
formatSearchResults,
|
|
773
799
|
formatSprint,
|
|
800
|
+
formatSprintEventForSlack,
|
|
774
801
|
formatSprintIssues,
|
|
775
802
|
formatSprintList,
|
|
776
803
|
formatTransitionResult,
|
|
@@ -778,6 +805,8 @@ export {
|
|
|
778
805
|
formatUser,
|
|
779
806
|
formatUserList,
|
|
780
807
|
formatWatchers,
|
|
808
|
+
formatWebhook,
|
|
809
|
+
formatWebhookList,
|
|
781
810
|
getAtlassianConfig,
|
|
782
811
|
getErrorMessage,
|
|
783
812
|
getFileTypeEmoji,
|
|
@@ -788,15 +817,18 @@ export {
|
|
|
788
817
|
getWebsiteUrl,
|
|
789
818
|
groupShareSchema,
|
|
790
819
|
isArtifact,
|
|
820
|
+
isCommentWebhookEvent,
|
|
791
821
|
isCreditHolder,
|
|
792
822
|
isDeletedArtifact,
|
|
793
823
|
isDraftArtifact,
|
|
824
|
+
isIssueWebhookEvent,
|
|
794
825
|
isModelDeprecated,
|
|
795
826
|
isNearLimit,
|
|
796
827
|
isPlaceholderValue,
|
|
797
828
|
isPredefinedTag,
|
|
798
829
|
isPublicArtifact,
|
|
799
830
|
isPublishedArtifact,
|
|
831
|
+
isSprintWebhookEvent,
|
|
800
832
|
isSupportedEmbeddingModel,
|
|
801
833
|
isValidEnumValue,
|
|
802
834
|
isValidIssueKey,
|
|
@@ -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-LLA44SW7.js";
|
|
6
|
+
import "./chunk-BQAPZP5Y.js";
|
|
7
|
+
import "./chunk-T4VPCTBM.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.30
|
|
3
|
+
"version": "0.2.30",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Interactive CLI tool for Bike4Mind with ReAct agents",
|
|
6
6
|
"license": "UNLICENSED",
|
|
@@ -71,13 +71,10 @@
|
|
|
71
71
|
"diff": "^8.0.2",
|
|
72
72
|
"dotenv": "^16.3.1",
|
|
73
73
|
"eventsource-parser": "^3.0.6",
|
|
74
|
-
"fdir": "^6.5.0",
|
|
75
74
|
"file-type": "^18.7.0",
|
|
76
75
|
"fuse.js": "^7.1.0",
|
|
77
|
-
"fzf": "^0.5.2",
|
|
78
76
|
"glob": "^13.0.0",
|
|
79
77
|
"gray-matter": "^4.0.3",
|
|
80
|
-
"ignore": "^7.0.5",
|
|
81
78
|
"ink": "^6.5.1",
|
|
82
79
|
"ink-select-input": "^6.2.0",
|
|
83
80
|
"ink-spinner": "^5.0.0",
|
|
@@ -114,10 +111,10 @@
|
|
|
114
111
|
},
|
|
115
112
|
"devDependencies": {
|
|
116
113
|
"@bike4mind/agents": "0.1.0",
|
|
117
|
-
"@bike4mind/common": "2.
|
|
118
|
-
"@bike4mind/mcp": "1.
|
|
119
|
-
"@bike4mind/services": "2.
|
|
120
|
-
"@bike4mind/utils": "2.
|
|
114
|
+
"@bike4mind/common": "2.52.0",
|
|
115
|
+
"@bike4mind/mcp": "1.31.0",
|
|
116
|
+
"@bike4mind/services": "2.50.0",
|
|
117
|
+
"@bike4mind/utils": "2.7.0",
|
|
121
118
|
"@types/better-sqlite3": "^7.6.13",
|
|
122
119
|
"@types/diff": "^5.0.9",
|
|
123
120
|
"@types/jsonwebtoken": "^9.0.4",
|
|
@@ -126,6 +123,9 @@
|
|
|
126
123
|
"@types/react": "^19.2.7",
|
|
127
124
|
"@types/uuid": "^9.0.7",
|
|
128
125
|
"@types/yargs": "^17.0.32",
|
|
126
|
+
"fdir": "^6.5.0",
|
|
127
|
+
"fzf": "^0.5.2",
|
|
128
|
+
"ignore": "^7.0.5",
|
|
129
129
|
"ink-testing-library": "^4.0.0",
|
|
130
130
|
"tsup": "^8.5.1",
|
|
131
131
|
"tsx": "^4.21.0",
|
|
@@ -135,5 +135,5 @@
|
|
|
135
135
|
"optionalDependencies": {
|
|
136
136
|
"@vscode/ripgrep": "^1.17.0"
|
|
137
137
|
},
|
|
138
|
-
"gitHead": "
|
|
138
|
+
"gitHead": "e18c60eb7133cb85a538c4d87ccfafc6c95fc211"
|
|
139
139
|
}
|