Skip to content

Latest commit

 

History

History
31 lines (17 loc) · 3.25 KB

File metadata and controls

31 lines (17 loc) · 3.25 KB

Build An Alexa High Low Game Skill

Voice User InterfaceLambda FunctionConnect VUI to CodeTestingCustomizationPublication

Customize the Skill to be Yours

At this point, you should have a working copy of our High Low Game skill. In order to make it your own, you will need to customize it with some responses that you create. Here are the things you will need to change:

  1. Update your sample utterances. There are some sample utterances for NumberGuessIntent. You need to update this list of utterances to for a robust voice experience. Remember that if you are creating this skill for another language other than English, your sample utterances need to be written in that language, not English.

  2. Click the "Save" button when you have completed.

  3. New sentences to respond to your users. There are several sentences and responses that you will want to customize for your skill.

    1. Go back to your copy of index.js.

    2. Look for lines like this: this.response.speak('Welcome to High Low guessing game. You have played '." These are strings that hold phrases for Alexa to respond with. Customize them to make it as varied and conversational as time allows.

    3. Continue through index.js until you reach the bottom of the file. This will ensure that you cover each of the Alexa responses that you need to update.

  4. New language. If you are creating this skill for another language other than English, you will need to make sure Alexa's responses are also in that language.

    • For example, if you are creating your skill in German, every single response that Alexa makes has to be in German. You can't use English responses or your skill will fail certification.
  5. Once you have made the updates listed on this page, you can click "Next" to move on to Publishing and Certification of your skill.