kantban-cli 0.1.30 → 0.1.31
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/index.js
CHANGED
|
@@ -31,10 +31,10 @@ async function main() {
|
|
|
31
31
|
}
|
|
32
32
|
case "pipeline": {
|
|
33
33
|
if (args[0] === "stop") {
|
|
34
|
-
const { stopPipeline } = await import("./pipeline-
|
|
34
|
+
const { stopPipeline } = await import("./pipeline-YJ7B27QX.js");
|
|
35
35
|
await stopPipeline(args.slice(1));
|
|
36
36
|
} else {
|
|
37
|
-
const { runPipeline } = await import("./pipeline-
|
|
37
|
+
const { runPipeline } = await import("./pipeline-YJ7B27QX.js");
|
|
38
38
|
await runPipeline(client, args);
|
|
39
39
|
}
|
|
40
40
|
break;
|
|
@@ -3779,6 +3779,10 @@ var GeminiProvider = class _GeminiProvider {
|
|
|
3779
3779
|
"json"
|
|
3780
3780
|
];
|
|
3781
3781
|
if (request.model) args.push("--model", request.model);
|
|
3782
|
+
if (!request.workingDirectory) {
|
|
3783
|
+
const projectRoot = process.cwd();
|
|
3784
|
+
args.push("--include-directories", projectRoot);
|
|
3785
|
+
}
|
|
3782
3786
|
return args;
|
|
3783
3787
|
}
|
|
3784
3788
|
writeGeminiSettings(request, degraded) {
|
|
@@ -4198,7 +4202,7 @@ async function runPipeline(client, args) {
|
|
|
4198
4202
|
effectiveConfig.model = registry.resolveModel(columnProvider, effectiveConfig.model);
|
|
4199
4203
|
}
|
|
4200
4204
|
const columnGates = resolveGatesForColumn(gateConfig, resolvedColumnName);
|
|
4201
|
-
const gateCwd = effectiveConfig.worktreeName ? join3(process.cwd(), effectiveConfig.worktreeName) :
|
|
4205
|
+
const gateCwd = effectiveConfig.worktreeName ? join3(process.cwd(), effectiveConfig.worktreeName) : process.cwd();
|
|
4202
4206
|
const effectiveMcpConfigPath = columnGates.length > 0 ? generateGateProxyMcpConfig(
|
|
4203
4207
|
client.baseUrl,
|
|
4204
4208
|
client.token,
|
|
@@ -4841,4 +4845,4 @@ export {
|
|
|
4841
4845
|
runPipeline,
|
|
4842
4846
|
stopPipeline
|
|
4843
4847
|
};
|
|
4844
|
-
//# sourceMappingURL=pipeline-
|
|
4848
|
+
//# sourceMappingURL=pipeline-YJ7B27QX.js.map
|