reading and repeating script name

This commit is contained in:
Rudis Muiznieks 2022-02-08 13:47:56 -06:00
parent f38e2b43cc
commit 4a0283c870
Signed by: rudism
GPG Key ID: CABF2F86EF7884F9
5 changed files with 7 additions and 12 deletions

View File

@ -1,17 +1,16 @@
from adapt.intent import IntentBuilder
from mycroft import MycroftSkill, intent_handler
class RunScriptSkill(MycroftSkill):
def __init__(self):
super().__init__()
self.learning = true
def initialize(self):
script_dir = self.settings.get('script_dir')
@intent_handler(IntentBuilder('RunScriptIntent').require('RunScriptKeyword'))
def handle_run_script_intent(self, message):
self.speak_dialog("running")
@intent_handler('RunScript.intent')
def handle_run_script_intent(self, msg=None):
script = msg.data.get('script', None)
self.speak_dialog('Running', {'script': script})
def stop(self):
pass

View File

@ -0,0 +1 @@
Okay. I'm running the {{script}} script.

View File

@ -1 +0,0 @@
Okay. I'm running the script.

View File

@ -0,0 +1,2 @@
(run|execute) (the|my|your) {script} script
(run|execute) {script} script

View File

@ -1,6 +0,0 @@
run script
run the script
run my script
execute script
execute the script
execute my script