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.
@@ -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: "Kilo Code — агент с мульти-режимами (architect, code, debug)"
56
+ description: "Агент с мульти-режимами (architect, code, debug)"
57
57
 
58
58
  kilo-glm:
59
59
  command: "kilo"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "workflow-ai",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "description": "AI Agent Workflow Coordinator — kanban-based pipeline for AI coding agents",
5
5
  "type": "module",
6
6
  "bin": {
@@ -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`);
@@ -1,5 +1,5 @@
1
1
  ---
2
- # Шаблон плана для системы Kilo Code Agent Workflow
2
+ # Шаблон плана
3
3
 
4
4
  id: "PLAN-{NNN}"
5
5
  title: "Название плана"
@@ -1,7 +1,8 @@
1
1
  ---
2
- # Шаблон отчёта для системы Kilo Code Agent Workflow
2
+ # Шаблон отчёта
3
3
 
4
4
  id: "REPORT-{NNN}"
5
+ title: "" # Краткое название отчёта
5
6
  type: daily # daily | sprint | milestone
6
7
  period_start: "" # ISO 8601
7
8
  period_end: ""