With ssh and bash, it is possible to run a local bash script on a remote server:
$ ssh user@server "bash -s" -- < ./example.bash "--arg1" "arg2"
(from unix.stackexchange.com)
Assuming fish is installed on the remote server, what is the equivalent command to run a local fish script on a remote server?