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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "workflow-ai",
3
- "version": "1.0.42",
3
+ "version": "1.0.43",
4
4
  "description": "AI Agent Workflow Coordinator — kanban-based pipeline for AI coding agents",
5
5
  "type": "module",
6
6
  "bin": {
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);