- Login to developer.amazon.com and click Alexa, then Alexa Skills Kit.
- Create a new Skill called hello world with invocation name
hello world
. - Paste in the IntentSchema.json :
{ "intents": [ { "intent": "MyIntent", "slots":[] },
{
"intent": "AMAZON.HelpIntent"
},
{
"intent": "AMAZON.StopIntent"
},
{
"intent": "AMAZON.CancelIntent"
}
] }
```
- Paste in the SampleUtterances.txt :
MyIntent hello
Pause here and leave this browser tab open.
Back to the [Home Page](../../README.md#title)