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"
- Run routine morning
- List routines
- Describe routine morning
- Disable morning routine
- Enable morning routine
- Delete morning routine
- @ChristopherRogers1991
msm install https://github.com/ChristopherRogers1991/mycroft_routine_skill.git
- Clone this repo into your third party skills folder (the current default is
/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 resultingmycroft_routine_skill
directory
cd ~/.mycroft/skills/mycroft_routine_skill
- If your mycroft instance runs in a virtual environment, activate it
source <mycroft-core>/.venv/bin/activate
- Install the required python libraries
pip install -r requirements.txt
If you'd like to manually edit your routines, look for ~/.mycroft/skills/MycroftRoutineSkill/routines.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.