workflow-ai 1.0.59 → 1.0.61
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/README.md +1 -2
- package/package.json +1 -1
- package/src/init.mjs +0 -1
- package/src/runner.mjs +1734 -1711
- package/templates/ticket-template.md +3 -10
- package/configs/config.yaml +0 -134
- package/configs/pipeline.yaml +0 -592
- package/configs/ticket-movement-rules.yaml +0 -80
- package/src/scripts/archive-plan-tickets.js +0 -102
- package/src/scripts/check-anomalies.js +0 -161
- package/src/scripts/check-conditions.js +0 -258
- package/src/scripts/check-plan-decomposed.js +0 -179
- package/src/scripts/check-plan-templates.js +0 -295
- package/src/scripts/check-relevance.js +0 -308
- package/src/scripts/get-next-id.js +0 -110
- package/src/scripts/move-ticket.js +0 -260
- package/src/scripts/move-to-ready.js +0 -115
- package/src/scripts/move-to-review.js +0 -151
- package/src/scripts/pick-next-task.js +0 -742
package/README.md
CHANGED
|
@@ -81,7 +81,7 @@ The `workflow run` command executes a multi-stage pipeline:
|
|
|
81
81
|
6. **move-to-ready** — move tickets from backlog to ready
|
|
82
82
|
7. **pick-next-task** — select next ticket for execution
|
|
83
83
|
8. **move-to-in-progress** — start execution
|
|
84
|
-
9. **check-relevance** — verify ticket is still relevant
|
|
84
|
+
9. **check-relevance** — verify ticket is still relevant (script-based, no LLM)
|
|
85
85
|
10. **execute-task** — perform the work via AI agent
|
|
86
86
|
11. **move-to-review** — submit for review
|
|
87
87
|
12. **review-result** — validate results against Definition of Done
|
|
@@ -108,7 +108,6 @@ Built-in skills for different task types:
|
|
|
108
108
|
| Skill | Description |
|
|
109
109
|
|-------|-------------|
|
|
110
110
|
| `analyze-report` | Report analysis |
|
|
111
|
-
| `check-relevance` | Ticket relevance verification |
|
|
112
111
|
| `coach` | Skill management and improvement |
|
|
113
112
|
| `create-plan` | Plan creation |
|
|
114
113
|
| `create-report` | Report generation |
|
package/package.json
CHANGED
package/src/init.mjs
CHANGED
|
@@ -96,7 +96,6 @@ function generateSkillsTable(workflowRoot) {
|
|
|
96
96
|
'pick-next-task': 'Выбор следующей задачи',
|
|
97
97
|
'decompose-gaps': 'Декомпозиция пробелов',
|
|
98
98
|
'review-result': 'Ревью результата',
|
|
99
|
-
'check-relevance': 'Проверка актуальности',
|
|
100
99
|
'coach': 'Коуч скилов',
|
|
101
100
|
'deep-research': 'Глубокий ресерч'
|
|
102
101
|
};
|