Appium Launch Intent Action

Appium currently lets user open an activity in the current app or start a new app and open an activity. (For Android only).

// java
driver.startActivity(“com.android.settings”,".DisplaySettings", null, null);

This commands gets translated into the following adb activity manager command on a Mac.
adb -s 00EA080744020PAX shell “am start -S -n com.android.settings/.DisplaySettings”

Can you please add an option to let user run activity manager commands that take an ACTION argument, such that it gets translated into following?
adb -s 00EA080744020PAX shell “am start -a android.intent.action.VIEW”