Skip to content

Instantly share code, notes, and snippets.

@djmason9
Created October 6, 2019 21:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save djmason9/3f02f3b518192d11ffeca9109116cbae to your computer and use it in GitHub Desktop.
Save djmason9/3f02f3b518192d11ffeca9109116cbae to your computer and use it in GitHub Desktop.
Alexa Matrix Alexa Skill Code
{
"interactionModel": {
"languageModel": {
"invocationName": "light frame",
"intents": [
{
"name": "AMAZON.FallbackIntent",
"samples": []
},
{
"name": "AMAZON.CancelIntent",
"samples": []
},
{
"name": "AMAZON.HelpIntent",
"samples": [
"help"
]
},
{
"name": "AMAZON.StopIntent",
"samples": [
"to stop"
]
},
{
"name": "AMAZON.NavigateHomeIntent",
"samples": []
},
{
"name": "NeoIntent",
"slots": [
{
"name": "animation",
"type": "animations"
}
],
"samples": [
"for a {animation} show",
"to run the {animation} light show",
"to run the {animation} show",
"to run the {animation} lights"
]
}
],
"types": [
{
"name": "animations",
"values": [
{
"name": {
"value": "random"
}
},
{
"name": {
"value": "arcade"
}
},
{
"name": {
"value": "juggle"
}
},
{
"name": {
"value": "dots"
}
},
{
"name": {
"value": "off"
}
},
{
"name": {
"value": "confetti"
}
}
]
}
]
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment