Create, run, and schedule lists of Mycroft commands
Create named rountines, which are lists of Mycroft commands, that can be run by name, and scheduled to run at particular times.
*User:* "Create routine"
*Mycroft:* "What would you like to name it?"
*User:* "Morning"
*Mycroft:* "What is the first task?"
*User:* "Turn on the lights."
*Mycroft:* "What next?"
*User:* "Say time to get up."
*Mycroft:* "What next?"
*User:* "Tell me the time."
*Mycroft:* "What next?"
*User:* "Tell me the weather."
*Mycroft:* "What next?"
*User:* "That's all."
*Mycroft:* "Morning has been created"
*User:* "Schedule routine morning"
*Mycroft:* "Which days of the week would you like it to run?"
*User:* "Monday Tuesday Wednesday Thursday Friday"
*Mycroft:* "At what time?"
*User:* "7:45 a.m."
*Mycroft:* "Morning has been schedule"
Do not put the name of the routine into one of the commands. For example, if you create a routine called 'morning,' do not have 'say good morning' as one of the commands. Mycroft may pickup on the name of the routine, and try to run it over again, ultimately creating an infinite loop where the routine continually triggers itself.
Skill: https://youtu.be/71RwUTnGJbI
GUI: https://youtu.be/YlHHmi-er7A
msm install https://github.com/ChristopherRogers1991/mycroft_routine_skill.git
/opt/mycroft/skills
; check your global/local mycroft.conf files if you have issues)
cd /opt/mycroft/skills && git clone https://github.com/ChristopherRogers1991/mycroft_routine_skill.git
cd
into the resulting mycroft_routine_skill
directory
cd ~/.mycroft/skills/mycroft_routine_skill
source <mycroft-core>/.venv/bin/activate
pip install -r requirements.txt
If you'd like to manually edit your routines, look for ~/.config/mycroft/skills/MycroftRoutineSkill/routines2.json
.
The schedules are fed to APScheduler as a cronstring. Note that in APScheduler cronstrings, days of the week start on Monday, so 0 is Monday, and 6 is Sunday.
The finished file should be valid json. If you have issues, use http://jsonlint.com/ to validate the json.