workflow-ai 1.0.31 → 1.0.32
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/package.json
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
* B) Если plan_id НЕ задан — сканирует все планы в plans/current/
|
|
9
9
|
*
|
|
10
10
|
* Для каждого плана:
|
|
11
|
-
* 1. Если есть тикеты (backlog/, ready/, in-progress/, review/) с parent_plan == planId — decomposed
|
|
11
|
+
* 1. Если есть тикеты (backlog/, ready/, in-progress/, review/, done/, blocked/) с parent_plan == planId — decomposed
|
|
12
12
|
* 2. Иначе — needs_decomposition
|
|
13
13
|
*
|
|
14
14
|
* Результат:
|
|
@@ -31,7 +31,7 @@ const WORKFLOW_DIR = path.join(PROJECT_DIR, '.workflow');
|
|
|
31
31
|
const TICKETS_DIR = path.join(WORKFLOW_DIR, 'tickets');
|
|
32
32
|
const PLANS_DIR = path.join(WORKFLOW_DIR, 'plans', 'current');
|
|
33
33
|
|
|
34
|
-
const TICKET_DIRS = ['backlog', 'ready', 'in-progress', 'review'];
|
|
34
|
+
const TICKET_DIRS = ['backlog', 'ready', 'in-progress', 'review', 'done', 'blocked'];
|
|
35
35
|
|
|
36
36
|
/**
|
|
37
37
|
* Проверяет, есть ли тикеты, привязанные к данному плану
|