Is it possible to make an Advanced URI with 'command and selection'?

Let’s start by thanking the creators of the Advanced URI plugin and then get down to business:

What I’m trying to do

An example command would look like this:

obsidian://adv-uri?vault=Vault&commandid=templater-obsidian%3Acreate-new-note-from-template 
obsidian://adv-uri?vault=Vault&commandid=omnisearch%3Ashow-modal 

The one above is the uri that brings up the templater window and lets me choose one of them, and the one below is the command that brings up the search box and lets me type in a search term and choose the right note.

Commands like obsidian://adv-uri?vault=Vault&commandid=file-explorer%3Amove-file move the current file to another folder also require additional options after the command.

What I want to know is, is it possible to include these additional options in the uri?
According to the official documentation, you can use confirm to press the first option, but I don’t want the first option.

Not possible although you can post feature requests to Advanced URI repo. I think the code for confirm parameter could be easily extended to confirm=1,2,3,… to automatically select 1st, 2nd, 3rd etc button.

Obsidian Shell commands could be used to simulate keyboard/mouse input using shell programs that simulate keyboard actions (for example cliclick). Obviously this is not near as useful as the powerful confirm parameter feature offered by Advanced URI.