workflow-ai 1.0.48 → 1.0.49
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 +4 -0
- package/configs/pipeline.yaml +10 -3
- package/package.json +1 -1
package/configs/config.yaml
CHANGED
|
@@ -35,6 +35,10 @@ task_types:
|
|
|
35
35
|
prefix: ADMIN
|
|
36
36
|
description: "Административные задачи"
|
|
37
37
|
|
|
38
|
+
qa:
|
|
39
|
+
prefix: QA
|
|
40
|
+
description: "Написание тестов, проверка coverage, E2E-сценарии, тест-планы, валидация качества"
|
|
41
|
+
|
|
38
42
|
coach:
|
|
39
43
|
prefix: COACH
|
|
40
44
|
description: "Улучшение и аудит скилов (обрабатывается коуч-скилом)"
|
package/configs/pipeline.yaml
CHANGED
|
@@ -33,22 +33,28 @@ pipeline:
|
|
|
33
33
|
agents:
|
|
34
34
|
claude-sonnet:
|
|
35
35
|
command: "claude"
|
|
36
|
-
args: ["--model", "claude-sonnet-4-6", "--permission-mode", "
|
|
36
|
+
args: ["--model", "claude-sonnet-4-6", "--permission-mode", "bypassPermissions ", "-p"]
|
|
37
37
|
workdir: "."
|
|
38
38
|
description: "Claude Sonnet — быстрая модель для простых задач"
|
|
39
39
|
|
|
40
40
|
claude-opus:
|
|
41
41
|
command: "claude"
|
|
42
|
-
args: ["--model", "claude-opus-4-6", "--permission-mode", "
|
|
42
|
+
args: ["--model", "claude-opus-4-6", "--permission-mode", "bypassPermissions ", "-p"]
|
|
43
43
|
workdir: "."
|
|
44
44
|
description: "Claude Opus — мощная модель для сложных задач"
|
|
45
45
|
|
|
46
46
|
claude-coach:
|
|
47
47
|
command: "claude"
|
|
48
|
-
args: ["--model", "claude-opus-4-6", "--permission-mode", "
|
|
48
|
+
args: ["--model", "claude-opus-4-6", "--permission-mode", "bypassPermissions ", "-p", "coach"]
|
|
49
49
|
workdir: "."
|
|
50
50
|
description: "Claude Opus — coach"
|
|
51
51
|
|
|
52
|
+
claude-qa:
|
|
53
|
+
command: "claude"
|
|
54
|
+
args: ["--model", "claude-sonnet-4-6", "--permission-mode", "bypassPermissions ", "-p", "manual-testing"]
|
|
55
|
+
workdir: "."
|
|
56
|
+
description: "Claude Opus — QA"
|
|
57
|
+
|
|
52
58
|
qwen-code:
|
|
53
59
|
command: "qwen"
|
|
54
60
|
args: ["-y", "-p"]
|
|
@@ -322,6 +328,7 @@ pipeline:
|
|
|
322
328
|
counter: task_attempts
|
|
323
329
|
agent_by_type:
|
|
324
330
|
coach: claude-coach
|
|
331
|
+
qa: claude-qa
|
|
325
332
|
impl: kilo-minimax
|
|
326
333
|
# fix: claude-sonnet
|
|
327
334
|
arch: claude-opus
|