Custom actions with slots

Hi i hope u’re doing well, I’m new here , i hope you help me :slight_smile: My question is : how can i deal with this example of conversation:

java -jar jenkins-cli.jar console JOB BUILD [-f] [-n N]
here the bot should ask for each missing parameter 
for example:

*user input–> build job *bot → do you want to use this parameter [-f]? *User input–> yes

  • bot–> do you want to use this parameter [-nN]
  • User → yes
  • Bot–>is that what you’re asking for : java -jar jenkins-cli.jar console JOB BUILD -f -n N
  • User–>yes *And now a custom action will be triggered using the last command . #########################################################"" so here i’m wondering about how to ask for missing entities , and how to return a confirmation message to the user and then use the last command in the custom action and finally return a success message … ###################################################"######"

Starting a conversation or having a conversation with a user typing a shell-command seems strange tbh.

Anyway, this seems like a job for the FormAction. Forms

thank you … i’ll check it :smiley: