forked from MycroftAI/mycroft-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmycroft-help
executable file
·49 lines (46 loc) · 2.1 KB
/
mycroft-help
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#!/usr/bin/env bash
# Copyright 2018 Mycroft AI Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
SOURCE="${BASH_SOURCE[0]}"
cd -P "$( dirname "$SOURCE" )"/..
DIR="$( pwd )"
echo -e "\e[36mMycroft\e[0m is your open source voice assistant. Full source"
echo "can be found at: ${DIR}"
echo
echo "Mycroft-specific commands you can use from the Linux command prompt:"
echo " mycroft-cli-client Command line client, useful for debugging"
echo " mycroft-msm Mycroft Skills Manager, to manage your Skills"
echo " mycroft-start Launch/restart Mycroft services"
echo " mycroft-stop Stop Mycroft services"
echo
echo "Scripting Utilities:"
echo " mycroft-listen Activate the microphone to listen for a command"
echo " mycroft-speak <phr> Have Mycroft speak a phrase to the user"
echo " mycroft-say-to <utt> Send an utterance to Mycroft as if spoken by a user"
echo
echo "Mycroft's Python Virtual Environment (venv) control:"
echo " mycroft-pip Install a Python package within the venv"
echo " mycroft-venv-activate Enter the venv"
echo " mycroft-venv-deactivate Exit the venv"
echo
echo "Skill Development:"
echo " mycroft-msk Mycroft Skills Kit, create and share Skills"
echo " mycroft-skill-testrunner Run integration tests on Mycroft Skills"
echo
echo "Other:"
echo " mycroft-config Manage your local Mycroft configuration files"
echo " mycroft-mic-test Record and playback to directly test microphone"
echo " mycroft-help Display this message"
echo
echo "For more information, see https://mycroft.ai/documentation"