When using flags on subcommands, the wrapper script interprets it as it's own flag instead of passing it on to the module.
Example#
axr _debug decode --base64 will produce an unknown flag: --base64 error.
Workaround#
Quote everything after axr so it is interpreted as a single argument. For example: axr '_debug decode --base64'
Closed with commit c7dabb4d