I have tinkered with the RoboBrowser actions and gotten some simple integration into the Google Now services. Google Now is one of googles less known services but has great potential and possibility. The Google Now service is integrated into every android 4+ device, most of you probably see it as the little mic icon on your home screen, and it is often joked as the Siri replacement. What is not well known is that Google Now is lightly supported through desktop Google searches, for example go to google and search "Remind me to walk the dog in 30 minutes" and it will come up with the handy reminder option... ok so what, VC can obviously create reminders, and the work GREAT... as long as I am home when it goes off. With Google Now your reminder syncs to your smart phone so you are reminded when ever you are and where ever you are; the service is also location intelligent so you can tell it to "Remind me when I get to work to Release VC Version 2" and when you arrive at your work address it will notify you. There is a ton more Google Now is capable of, including calendar events, flight info, Sports Scores, etc...
Here is a list of some commands
http://trendblog.net/list-of-google-now-voice-commands-infographic/That being said here is my XML for the Google Now Reminder, be gentle this is my first stab with RoboB actions and still tinkering. I will continue to add and share additional commands as I figure out each ones results id tag.
<?xml version="1.0" encoding="utf-16"?>
<command id="399" name="Google Now" enabled="true" alwaysOn="False" confirm="False" requiredConfidence="0" loop="False" loopDelay="0" loopMax="0" description="">
<action>
<cmdType>RoboB.Select</cmdType>
<cmdString>GoogleNow</cmdString>
<cmdRepeat>1</cmdRepeat>
</action>
<action>
<cmdType>RoboB.Navigate</cmdType>
<cmdString>https://www.google.com/#q=Remind&Me&To&{1}&safe=off</cmdString>
<cmdRepeat>1</cmdRepeat>
</action>
<action>
<cmdType>VC.Pause</cmdType>
<cmdString>3000</cmdString>
<cmdRepeat>1</cmdRepeat>
</action>
<action>
<cmdType>RoboB.GetHTML</cmdType>
<cmdString />
<cmdRepeat>1</cmdRepeat>
</action>
<action>
<cmdType>RoboB.ElementByID</cmdType>
<cmdString>act-rmd-send</cmdString>
<cmdRepeat>1</cmdRepeat>
</action>
<action>
<cmdType>RoboB.Click</cmdType>
<cmdString />
<cmdRepeat>1</cmdRepeat>
</action>
<phrase>Google remind me to</phrase>
<payloadDictation>payloadDictation: Regular</payloadDictation>
</command>