initial commit

This commit is contained in:
Rudis Muiznieks 2022-02-08 12:42:13 -06:00
parent 7325a10438
commit f38e2b43cc
Signed by: rudism
GPG Key ID: CABF2F86EF7884F9
3 changed files with 27 additions and 0 deletions

20
__init__.py Normal file
View File

@ -0,0 +1,20 @@
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")
def stop(self):
pass
def create_skill():
return RunScriptSkill()

View File

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

View File

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