ValidEngineNames returns the list of valid AI engine names for shell completion
()
| 61 | |
| 62 | // ValidEngineNames returns the list of valid AI engine names for shell completion |
| 63 | func ValidEngineNames() []string { |
| 64 | registry := workflow.GetGlobalEngineRegistry() |
| 65 | return registry.GetSupportedEngines() |
| 66 | } |
| 67 | |
| 68 | // CompleteWorkflowNames provides shell completion for workflow names |
| 69 | // It returns workflow IDs (basenames without .md extension) from .github/workflows/ |