Skip to content

Latest commit

 

History

History
43 lines (33 loc) · 877 Bytes

PAGE2.md

File metadata and controls

43 lines (33 loc) · 877 Bytes

Ingredients

2. Create the Skill


  1. Login to developer.amazon.com and click Alexa, then Alexa Skills Kit.
  2. Create a new Skill called hello world with invocation name hello world.
  3. Paste in the IntentSchema.json :

{ "intents": [ { "intent": "MyIntent", "slots":[] },

{
  "intent": "AMAZON.HelpIntent"
},
{
  "intent": "AMAZON.StopIntent"
},
{
  "intent": "AMAZON.CancelIntent"
}

] }

```
  1. Paste in the SampleUtterances.txt :
    MyIntent hello
    

Pause here and leave this browser tab open.

Continue to the next step


Back to the [Home Page](../../README.md#title)