workflow-ai 1.0.42 → 1.0.43
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 +1 -1
- package/src/init.mjs +5 -2
- package/src/runner.mjs +1 -1
package/package.json
CHANGED
package/src/init.mjs
CHANGED
|
@@ -95,13 +95,16 @@ function generateSkillsTable(workflowRoot) {
|
|
|
95
95
|
'move-ticket': 'Перемещение тикета',
|
|
96
96
|
'pick-next-task': 'Выбор следующей задачи',
|
|
97
97
|
'decompose-gaps': 'Декомпозиция пробелов',
|
|
98
|
-
'review-result': 'Ревью результата'
|
|
98
|
+
'review-result': 'Ревью результата',
|
|
99
|
+
'check-relevance': 'Проверка актуальности',
|
|
100
|
+
'coach': 'Коуч скилов',
|
|
101
|
+
'deep-research': 'Глубокий ресерч'
|
|
99
102
|
};
|
|
100
103
|
|
|
101
104
|
let table = '| Задача | Инструкция |\n|--------|------------|\n';
|
|
102
105
|
|
|
103
106
|
const skillDirs = readdirSync(skillsDir, { withFileTypes: true })
|
|
104
|
-
.filter(entry => entry.isDirectory())
|
|
107
|
+
.filter(entry => entry.isDirectory() || entry.isSymbolicLink())
|
|
105
108
|
.map(entry => entry.name);
|
|
106
109
|
|
|
107
110
|
for (const skillDir of skillDirs) {
|
package/src/runner.mjs
CHANGED
|
@@ -622,7 +622,7 @@ class FileGuard {
|
|
|
622
622
|
const entries = fs.readdirSync(dir, { withFileTypes: true });
|
|
623
623
|
for (const entry of entries) {
|
|
624
624
|
const entryPath = path.join(dir, entry.name).replace(/\\/g, '/');
|
|
625
|
-
if (entry.isDirectory()) {
|
|
625
|
+
if (entry.isDirectory() || entry.isSymbolicLink()) {
|
|
626
626
|
files.push(...this._getAllFiles(entryPath));
|
|
627
627
|
} else {
|
|
628
628
|
files.push(entryPath);
|