workflow-ai 1.0.8 → 1.0.10
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
|
@@ -97,6 +97,9 @@ pipeline:
|
|
|
97
97
|
workdir: "."
|
|
98
98
|
description: "Скрипт для перемещения завершённых тикетов из in-progress/ в review/"
|
|
99
99
|
|
|
100
|
+
|
|
101
|
+
default_agent: qwen-code
|
|
102
|
+
|
|
100
103
|
# ===========================================================================
|
|
101
104
|
# Этапы (stages)
|
|
102
105
|
# ===========================================================================
|
|
@@ -301,8 +304,7 @@ pipeline:
|
|
|
301
304
|
# -------------------------------------------------------------------------
|
|
302
305
|
# 4b. increment-task-attempts
|
|
303
306
|
# Отдельный стейдж обновления счётчика попыток выполнения тикета.
|
|
304
|
-
# При достижении max — блокирует тикет. Иначе —
|
|
305
|
-
# Проверка лимита происходит ДО повторного execute-task.
|
|
307
|
+
# При достижении max — блокирует тикет. Иначе — возвращает в очередь.
|
|
306
308
|
# -------------------------------------------------------------------------
|
|
307
309
|
increment-task-attempts:
|
|
308
310
|
description: "Обновить счётчик попыток выполнения тикета"
|
|
@@ -311,9 +313,10 @@ pipeline:
|
|
|
311
313
|
max: 6
|
|
312
314
|
goto:
|
|
313
315
|
default:
|
|
314
|
-
stage:
|
|
316
|
+
stage: move-ticket
|
|
315
317
|
params:
|
|
316
318
|
ticket_id: "$context.ticket_id"
|
|
319
|
+
target: ready
|
|
317
320
|
max_reached:
|
|
318
321
|
stage: move-ticket
|
|
319
322
|
params:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "workflow-ai",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.10",
|
|
4
4
|
"description": "AI Agent Workflow Coordinator — kanban-based pipeline for AI coding agents",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -23,7 +23,8 @@
|
|
|
23
23
|
"node": ">=18.0.0"
|
|
24
24
|
},
|
|
25
25
|
"scripts": {
|
|
26
|
-
"test": "node --test src/tests/*.test.mjs"
|
|
26
|
+
"test": "node --test src/tests/*.test.mjs",
|
|
27
|
+
"release": "npm version patch && npm publish"
|
|
27
28
|
},
|
|
28
29
|
"dependencies": {
|
|
29
30
|
"js-yaml": "^4.1.0"
|