fix manager.js

This commit is contained in:
Curtis Ide 2026-02-14 10:05:05 -07:00
parent a89aef674d
commit e2f702a7d0
No known key found for this signature in database
1 changed files with 4 additions and 2 deletions

View File

@ -734,8 +734,10 @@ class ModuleManager {
continue; continue;
} }
// Skip config.yaml templates - we'll generate clean ones with actual values // Skip module root config.yaml only - generated by config collector with actual values
if (file === 'config.yaml' || file.endsWith('/config.yaml')) { // Workflow-level config.yaml (e.g. workflows/orchestrate-story/config.yaml) must be copied
// for custom modules that use workflow-specific configuration
if (file === 'config.yaml') {
continue; continue;
} }