bttcli enabled but has no effect

Hi, I'm trying to call named triggers from the CLI but without success... I have enabled the command-line BTT sockect server and restarted BTT (and even the computer).

While the socket server seams to be up and running, BTT does not react to any command. For example:

running ./bttcli display_notification "Hello from BTT" title="Notification Title" returns "displayed" but no notification shows up.
running ./bttcli trigger_named "test" returns nothing and the actual named trigger never fires up
running ./bttcli is_app_running "Finder" or any other app name always returns 0.

I've made sure BTT has all permissions enabled and that "Allow external BetterTouchTool Scripting" setting is enabled.

I'm I missing something that isn't documented that could prevent BTT from executing commands?
I searched the forum before posting but haven't found anything related to my issue.

I'm running an M1 Macbook Pro with macOS 15.7.4, BTT v.6.594
Thanks in advance for any help!

There was indeed an issue in recent versions where "unnamed" parameters would fail. So for example this would fail:

./bttcli is_app_running "Finder"

but this would work:

./bttcli is_app_running app="Finder"

Could you check whether 6.596 fixes this for you?

I'm amazed at the speed to replied to my issue, considering the number of posts this forum has! Your dedication to "make it work" improves the user experience by a mile!

I confirm that specifying the parameter's name on 6.594 worked (./bttcli is_app_running app="Finder")

I also confirm that 6.596 fixes the issue altogether.

Thanks a lot!