(ctx context.Context, userInput string)
| 124 | } |
| 125 | |
| 126 | func (ch *CommandHandler) handleSkillCommand(ctx context.Context, userInput string) { |
| 127 | if ch.cli.skillHandler == nil { |
| 128 | fmt.Println(colorize(" Skill registry not initialized.", ColorYellow)) |
| 129 | return |
| 130 | } |
| 131 | ch.cli.skillHandler.HandleCommand(ctx, userInput) |
| 132 | } |
| 133 | |
| 134 | func (ch *CommandHandler) handlePluginCommand(userInput string) { |
| 135 | if ch.cli.pluginManager == nil { |
no test coverage detected