( workflows: WorkflowManifestEntry[], )
| 110 | * Get default-enabled workflows (used when no workflows are explicitly selected). |
| 111 | */ |
| 112 | export function getDefaultEnabledWorkflows( |
| 113 | workflows: WorkflowManifestEntry[], |
| 114 | ): WorkflowManifestEntry[] { |
| 115 | return workflows.filter((wf) => wf.selection?.mcp?.defaultEnabled === true); |
| 116 | } |
| 117 | |
| 118 | /** |
| 119 | * Get auto-include workflows (included when their predicates pass). |
no outgoing calls
no test coverage detected