Managed to find the xml - so far the only 3 additions I have done are the following
1) A script that you can ask for the shortplot of the movie
2) A script that you can ask who directs the movie
3) A script that you ask who plays a specific character (this is the one that I need to have a 'characters' or 'roles' xml for exported from my database so that vox picks up on them better
<commandGroup name="XBMC Get Movie Info" enabled="True" prefix="" priority="0" requiredProcess="" description="">
<command id="245" name="Plot short" enabled="true" alwaysOn="False" confirm="False" loop="False" loopDelay="0" loopMax="0" description="">
<action>
<cmdType>XBMC.Send</cmdType>
<cmdString>getcurrentlyplaying</cmdString>
<cmdRepeat>1</cmdRepeat>
</action>
<action>
<cmdType>Results.RegEx</cmdType>
<cmdString>Plotoutline:(.*)</cmdString>
<cmdRepeat>1</cmdRepeat>
</action>
<action>
<cmdType>TTS.SpeakSync</cmdType>
<cmdString>{match.1}</cmdString>
<cmdRepeat>1</cmdRepeat>
</action>
<phrase>what is the plot, movie plot, plot of this film, plot of this movie</phrase>
</command>
<command id="261" name="director" enabled="true" alwaysOn="False" confirm="False" loop="False" loopDelay="0" loopMax="0" description="">
<action>
<cmdType>XBMC.Send</cmdType>
<cmdString>getcurrentlyplaying</cmdString>
<cmdRepeat>1</cmdRepeat>
</action>
<action>
<cmdType>Results.RegEx</cmdType>
<cmdString>Director:(.*)</cmdString>
<cmdRepeat>1</cmdRepeat>
</action>
<action>
<cmdType>TTS.SpeakSync</cmdType>
<cmdString>This movie is directed by {match.1}</cmdString>
<cmdRepeat>1</cmdRepeat>
</action>
<phrase>who directs this, who directed this</phrase>
</command>
<command id="258" name="who plays" enabled="true" alwaysOn="False" confirm="False" loop="False" loopDelay="0" loopMax="0" description="">
<action>
<cmdType>XBMC.Send</cmdType>
<cmdString>getcurrentlyplaying</cmdString>
<cmdRepeat>1</cmdRepeat>
</action>
<action>
<cmdType>Results.RegEx</cmdType>
<cmdString>Title:(.*)</cmdString>
<cmdRepeat>1</cmdRepeat>
</action>
<action>
<cmdType>XBMC.Send</cmdType>
<cmdString>queryvideodatabase(select idMovie from movie where c00="{match.1}")</cmdString>
<cmdRepeat>1</cmdRepeat>
</action>
<action>
<cmdType>Results.RegEx</cmdType>
<cmdString><field>(.*)</field></cmdString>
<cmdRepeat>1</cmdRepeat>
</action>
<action>
<cmdType>XBMC.Send</cmdType>
<cmdString>queryvideodatabase(select actors.strActor from actors, actorlinkmovie where actorlinkmovie.idMovie={match.1} and actorlinkmovie.strRole="{1}" and actorlinkmovie.idActor=actors.idActor order by strActor desc)</cmdString>
<cmdRepeat>1</cmdRepeat>
</action>
<action>
<cmdType>TTS.SpeakSync</cmdType>
<cmdString>{lastresult}</cmdString>
<cmdRepeat>1</cmdRepeat>
</action>
<phrase>who plays</phrase>
<payloadDictation>payloadDictation: don't edit this</payloadDictation>
</command>
</commandGroup>