workflow-ai 1.0.3 → 1.0.4
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/configs/pipeline.yaml
CHANGED
|
@@ -53,7 +53,7 @@ pipeline:
|
|
|
53
53
|
command: "kilo"
|
|
54
54
|
args: ["-m", "kilo/minimax/minimax-m2.5:free", "--agent", "orchestrator", "run"]
|
|
55
55
|
workdir: "."
|
|
56
|
-
description: "
|
|
56
|
+
description: "Агент с мульти-режимами (architect, code, debug)"
|
|
57
57
|
|
|
58
58
|
kilo-glm:
|
|
59
59
|
command: "kilo"
|
package/package.json
CHANGED
|
@@ -51,6 +51,7 @@ function checkCondition(condition) {
|
|
|
51
51
|
return !fs.existsSync(path.join(PROJECT_DIR, value));
|
|
52
52
|
|
|
53
53
|
case 'tasks_completed': {
|
|
54
|
+
if (!value || (Array.isArray(value) && value.length === 0)) return true;
|
|
54
55
|
const ids = Array.isArray(value) ? value : [value];
|
|
55
56
|
return ids.every(taskId => fs.existsSync(path.join(DONE_DIR, `${taskId}.md`)));
|
|
56
57
|
}
|
|
@@ -50,6 +50,7 @@ function checkCondition(condition) {
|
|
|
50
50
|
|
|
51
51
|
case 'tasks_completed':
|
|
52
52
|
// Проверяет, что указанные задачи выполнены (находятся в done/)
|
|
53
|
+
if (!value || (Array.isArray(value) && value.length === 0)) return true;
|
|
53
54
|
const ids = Array.isArray(value) ? value : [value];
|
|
54
55
|
return ids.every(taskId => {
|
|
55
56
|
const donePath = path.join(DONE_DIR, `${taskId}.md`);
|