@bike4mind/cli 0.2.20-feat-milestone-mgmt.18067 → 0.2.20-feat-github-actions-tool.18137
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/bin/bike4mind-cli.mjs +10 -0
- package/dist/{artifactExtractor-4EVH663R.js → artifactExtractor-XANU5PEF.js} +1 -1
- package/dist/{chunk-RRYX2K7W.js → chunk-54MIWLFL.js} +2 -2
- package/dist/{chunk-DTPBHKQL.js → chunk-5KL57ZUQ.js} +1553 -1448
- package/dist/{chunk-EP4OGIQI.js → chunk-JX2UMMZA.js} +242 -3
- package/dist/{chunk-AKCBPXLX.js → chunk-K47YN3CC.js} +2 -2
- package/dist/{chunk-XWI42ILN.js → chunk-LPCUVTNE.js} +17 -3
- package/dist/{create-KAKBAGES.js → create-DI6IQP5P.js} +3 -3
- package/dist/index.js +281 -97
- package/dist/{llmMarkdownGenerator-CSIFMRI3.js → llmMarkdownGenerator-4CRPLUPY.js} +1 -1
- package/dist/{markdownGenerator-5L737COC.js → markdownGenerator-MPOKERZE.js} +1 -1
- package/dist/{mementoService-7OF7S4V3.js → mementoService-2V7V4CWE.js} +3 -3
- package/dist/{src-TO27QQZM.js → src-GG3YBOO7.js} +8 -2
- package/dist/{src-ZECC33CL.js → src-HKQLTSNV.js} +29 -1
- package/dist/{subtractCredits-MGHZAPOE.js → subtractCredits-KLR4KS5L.js} +3 -3
- package/package.json +6 -6
package/bin/bike4mind-cli.mjs
CHANGED
|
@@ -36,6 +36,11 @@ const argv = await yargs(hideBin(process.argv))
|
|
|
36
36
|
description: 'Show debug logs in console',
|
|
37
37
|
default: false,
|
|
38
38
|
})
|
|
39
|
+
.option('debug-stream', {
|
|
40
|
+
type: 'boolean',
|
|
41
|
+
description: 'Ultra-verbose: log every SSE event (for debugging stream parser)',
|
|
42
|
+
default: false,
|
|
43
|
+
})
|
|
39
44
|
.option('no-project-config', {
|
|
40
45
|
type: 'boolean',
|
|
41
46
|
description: 'Disable loading project-specific configuration (.bike4mind/)',
|
|
@@ -94,6 +99,11 @@ if (argv.verbose) {
|
|
|
94
99
|
process.env.B4M_VERBOSE = '1';
|
|
95
100
|
process.env.LOG_LEVEL = 'debug'; // Enable debug logs in core packages
|
|
96
101
|
}
|
|
102
|
+
if (argv['debug-stream']) {
|
|
103
|
+
process.env.B4M_DEBUG_STREAM = '1';
|
|
104
|
+
process.env.B4M_VERBOSE = '1'; // Ultra-verbose implies verbose
|
|
105
|
+
process.env.LOG_LEVEL = 'debug';
|
|
106
|
+
}
|
|
97
107
|
if (argv['no-project-config']) {
|
|
98
108
|
process.env.B4M_NO_PROJECT_CONFIG = '1';
|
|
99
109
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import {
|
|
3
3
|
CurationArtifactType
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-5KL57ZUQ.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;
|
|
@@ -6,12 +6,12 @@ import {
|
|
|
6
6
|
getSettingsByNames,
|
|
7
7
|
obfuscateApiKey,
|
|
8
8
|
secureParameters
|
|
9
|
-
} from "./chunk-
|
|
9
|
+
} from "./chunk-JX2UMMZA.js";
|
|
10
10
|
import {
|
|
11
11
|
ApiKeyType,
|
|
12
12
|
MementoTier,
|
|
13
13
|
isSupportedEmbeddingModel
|
|
14
|
-
} from "./chunk-
|
|
14
|
+
} from "./chunk-5KL57ZUQ.js";
|
|
15
15
|
|
|
16
16
|
// ../../b4m-core/packages/services/dist/src/apiKeyService/get.js
|
|
17
17
|
import { z } from "zod";
|