├── .ask └── config ├── .gitignore ├── LICENSE.txt ├── README.md ├── instructions ├── 0-intro.md ├── 1-10-sample-utterances._TTH_.png ├── 1-voice-user-interface.md ├── 2-6-configure-your-trigger._TTH_.png ├── 2-7-configure-your-function._TTH_.png ├── 2-lambda-function.md ├── 3-3-aws-lambda-arn._TTH_.png ├── 3-connect-vui-to-code.md ├── 4-4-service-simulator._TTH_.png ├── 4-testing.md ├── 5-customization.md └── 6-publication.md ├── lambda └── custom │ ├── .nvmrc │ ├── Escape the Office.html │ ├── Trapped in a Motel.html │ ├── index.js │ ├── package-lock.json │ └── package.json ├── models └── en-US.json └── skill.json /.ask/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-nodejs-adventure-game/HEAD/.ask/config -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-nodejs-adventure-game/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-nodejs-adventure-game/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-nodejs-adventure-game/HEAD/README.md -------------------------------------------------------------------------------- /instructions/0-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-nodejs-adventure-game/HEAD/instructions/0-intro.md -------------------------------------------------------------------------------- /instructions/1-10-sample-utterances._TTH_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-nodejs-adventure-game/HEAD/instructions/1-10-sample-utterances._TTH_.png -------------------------------------------------------------------------------- /instructions/1-voice-user-interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-nodejs-adventure-game/HEAD/instructions/1-voice-user-interface.md -------------------------------------------------------------------------------- /instructions/2-6-configure-your-trigger._TTH_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-nodejs-adventure-game/HEAD/instructions/2-6-configure-your-trigger._TTH_.png -------------------------------------------------------------------------------- /instructions/2-7-configure-your-function._TTH_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-nodejs-adventure-game/HEAD/instructions/2-7-configure-your-function._TTH_.png -------------------------------------------------------------------------------- /instructions/2-lambda-function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-nodejs-adventure-game/HEAD/instructions/2-lambda-function.md -------------------------------------------------------------------------------- /instructions/3-3-aws-lambda-arn._TTH_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-nodejs-adventure-game/HEAD/instructions/3-3-aws-lambda-arn._TTH_.png -------------------------------------------------------------------------------- /instructions/3-connect-vui-to-code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-nodejs-adventure-game/HEAD/instructions/3-connect-vui-to-code.md -------------------------------------------------------------------------------- /instructions/4-4-service-simulator._TTH_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-nodejs-adventure-game/HEAD/instructions/4-4-service-simulator._TTH_.png -------------------------------------------------------------------------------- /instructions/4-testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-nodejs-adventure-game/HEAD/instructions/4-testing.md -------------------------------------------------------------------------------- /instructions/5-customization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-nodejs-adventure-game/HEAD/instructions/5-customization.md -------------------------------------------------------------------------------- /instructions/6-publication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-nodejs-adventure-game/HEAD/instructions/6-publication.md -------------------------------------------------------------------------------- /lambda/custom/.nvmrc: -------------------------------------------------------------------------------- 1 | 6.10 2 | -------------------------------------------------------------------------------- /lambda/custom/Escape the Office.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-nodejs-adventure-game/HEAD/lambda/custom/Escape the Office.html -------------------------------------------------------------------------------- /lambda/custom/Trapped in a Motel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-nodejs-adventure-game/HEAD/lambda/custom/Trapped in a Motel.html -------------------------------------------------------------------------------- /lambda/custom/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-nodejs-adventure-game/HEAD/lambda/custom/index.js -------------------------------------------------------------------------------- /lambda/custom/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-nodejs-adventure-game/HEAD/lambda/custom/package-lock.json -------------------------------------------------------------------------------- /lambda/custom/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-nodejs-adventure-game/HEAD/lambda/custom/package.json -------------------------------------------------------------------------------- /models/en-US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-nodejs-adventure-game/HEAD/models/en-US.json -------------------------------------------------------------------------------- /skill.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-nodejs-adventure-game/HEAD/skill.json --------------------------------------------------------------------------------