This release is a pre-release and may not be stable for production use.
OVOS Workshop
Base classes, decorators, and helpers for building skills and applications for OpenVoiceOS.
Install
pip install ovos-workshop
Runtime dependencies include ovos-yes-no-plugin and ovos-option-matcher-fuzzy-plugin, which back the ask_yesno and ask_selection skill methods.
Quick Start
from ovos_workshop.skills.ovos import OVOSSkill
from ovos_workshop.decorators import intent_handler
class HelloWorldSkill(OVOSSkill):
@intent_handler("hello.intent")
def handle_hello(self, message):
self.speak_dialog("hello.response")
def create_skill():
return HelloWorldSkill()
Register in pyproject.toml:
[project.entry-points."opm.skill"]
hello-world-skill = "hello_world_skill:HelloWorldSkill"
Configuration
Key settings a skill can accept in its settings.json:
| Key | Default | Description |
|---|---|---|
ask_yesno_plugin |
ovos-solver-yes-no-plugin |
YesNoEngine plugin used by ask_yesno() |
ask_selection_plugin |
ovos-option-matcher-fuzzy-plugin |
OptionMatcherEngine plugin used by ask_selection() |
Both keys can also be set system-wide under the skills block in mycroft.conf.
Documentation
The OVOS Technical Manual is the canonical skill-authoring guide. Repo-local reference with exact source citations is in docs/:
- Skill classes
- OVOSSkill base class
- ask_yesno / ask_selection plugin system
- Decorators
- Settings
- Resource files
- Prerelease quirks — what changed since the last stable release
License
Apache 2.0
Release files for ovos-workshop 9.8.5a9
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| ovos_workshop-9.8.5a9.tar.gz | 112.7 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| ovos_workshop-9.8.5a9-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 237.4 kB
Release files / ovos_workshop-9.8.5a9.tar.gz
| Download URL | ovos_workshop-9.8.5a9.tar.gz |
|---|---|
| Size | 112.7 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
c769ade273daccfafcd3206d21548147547d57b170ec8ebd9414c3b0804cce23
|
|
BLAKE2b-256 checksum How to use checksums |
eea3c9af21df82e9148857efab639d849a4704365f2541a8eeeb410166aac832
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / ovos_workshop-9.8.5a9-py3-none-any.whl
| Download URL | ovos_workshop-9.8.5a9-py3-none-any.whl |
|---|---|
| Size | 124.7 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
f743f84aeb4156daa6888495b9c74b358c8dc6ef55b653c44c1652f07e3b3d91
|
|
BLAKE2b-256 checksum How to use checksums |
4cf5c6d88d2afe9c855d5fc5a0afd03a883c86f15546cbd0e668b3548151244d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|