Adding a script to generate a skill

* Creating a skill inside skill folders
* Creating the whole skill structure
* Creating a basic __init__
pull/730/head
Augusto Monteiro 'Sparky 2017-05-04 17:11:18 -07:00
parent 1518444f6d
commit 93accbafa6
1 changed files with 35 additions and 0 deletions

35
skiller.sh Executable file
View File

@ -0,0 +1,35 @@
#!/bin/bash
SKILLS_FOLDER="/opt/mycroft/skills"
echo "What is the name of your skill *no spaces (ex HelloWorld)"
read NAME
SKILL_FOLDER="${SKILLS_FOLDER}/${NAME}"
SKILL_DIRS=( "dialog" "regex" "test" "vocab" )
for i in "${SKILL_DIRS[@]}"
do
mkdir -p "${SKILL_FOLDER}/${i}"
done
echo "from adapt.intent import IntentBuilder
from mycroft.skills.core import MycroftSkill
class ${NAME}Skill(MycroftSkill):
def __init__(self):
super(${NAME}Skill, self).__init__(\"${NAME}Skill\")
def initialize(self):
pass
def stop(self):
pass
def create_skill():
return ${NAME}Skill()" > "${SKILL_FOLDER}/__init__.py"
echo "${NAME}" > "${SKILL_FOLDER}/README.md"