workflow-ai 1.0.17 → 1.0.18
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/config.yaml
CHANGED
|
@@ -11,15 +11,15 @@ project:
|
|
|
11
11
|
|
|
12
12
|
# Типы задач и их настройки
|
|
13
13
|
task_types:
|
|
14
|
-
|
|
14
|
+
arch:
|
|
15
15
|
prefix: ARCH
|
|
16
16
|
description: "Задачи планирования и архитектуры"
|
|
17
17
|
|
|
18
|
-
|
|
18
|
+
impl:
|
|
19
19
|
prefix: IMPL
|
|
20
20
|
description: "Написание и изменение кода"
|
|
21
21
|
|
|
22
|
-
|
|
22
|
+
fix:
|
|
23
23
|
prefix: FIX
|
|
24
24
|
description: "Исправление ошибок и багов"
|
|
25
25
|
|
|
@@ -27,7 +27,7 @@ task_types:
|
|
|
27
27
|
prefix: REVIEW
|
|
28
28
|
description: "Ревью кода и документации"
|
|
29
29
|
|
|
30
|
-
|
|
30
|
+
docs:
|
|
31
31
|
prefix: DOCS
|
|
32
32
|
description: "Создание и обновление документации"
|
|
33
33
|
|
package/package.json
CHANGED
|
@@ -7,7 +7,7 @@ title: "Название задачи"
|
|
|
7
7
|
priority: 3 # 1-критический, 2-высокий, 3-средний, 4-низкий, 5-когда-нибудь
|
|
8
8
|
|
|
9
9
|
# Тип задачи
|
|
10
|
-
type:
|
|
10
|
+
type: impl # arch | impl | fix | review | docs | admin
|
|
11
11
|
|
|
12
12
|
# Требования к агенту-исполнителю (для выбора подходящего инструмента)
|
|
13
13
|
required_capabilities: []
|