It's time to create your own Alexa Skill!. In this project, you’ll build a fully functional skill for Amazon’s Alexa that provides year-dated facts from AI History (or some other History of your choosing). Through the process, you’ll get to use the Alexa Skills Kit (ASK) - a current state of the art API for building voice systems.
We highly recommend you complete the Space Geek lab in the classroom, which steps you through setting up your Amazon Developer and Amazon AWS accounts as well as building the project this one is based on. If you’ve already done that, your accounts are ready to go. find more detail on this in the classroom or see Amazon's sample fact skill repo
Install your starter code locally.
- Download or clone the starter code from GitHub
- Save it in a directory named
AIND-VUI-Alexa
. It contains the following directories and files:- speechAssets/IntentSchema.json - intents definition for the interactive model
- speechAssets/SampleUtterances_en_US.txt - utterances for the interactive model
- src/index.js - skill logic and handlers to be run in AWS Lamda
- src/facts.js - a list of facts that the skill will use in responses
- tests/*.js - various unit tests to be run locally with mocha; you do not need to change these
1. Install Node.js per instructions on the website for your machine.
- Navigate to the
AIND-VUI-Alexa/src
directory of the starter code and open a terminal window. - The dependencies we need are listed in the
package.json
file and include the alexa-sdk library for Alexa as well as mocha test framework for Node.js along with chai and aws-lambda-mock-context for local unit testing. Install them all with the following command:
$ npm install
- There should now be a directory named
node_modules
within thesrc
directory. This is how Node.js attaches libraries for your code.
- You can now run the provided unit tests from the command line within the
src
directory with the following command. Try it now:
$ npm test
The test code is in four parts: "Part 1", "Part 2", "Part 3", and "Starter Code". The starter code tests should pass and all others should fail. You may have to scroll up to see the passing tests. As you complete the tasks ahead, you can use these unit tests (and write more yourself) to quickly test code changes prior to deployment to AWS Lambda.
- At this point, you can open your project with a code editor of your choice. Some free ones that support JavaScript and Node.js include Atom and Visual Studio Code
- Udacity has a free Intro to JavaScript course available that will quickly bring you up to speed on JS syntax. The JavaScript skills needed for this project primarily require following patterns you find in the existing starter code and the use of general coding constructs such as for loops, conditional statements, and arrays. Here are a few links that might be helpful for quick reference:
- Deploy the starter code to verify that it works with your accounts in its simple form. This is the same process you went through with the Space Geek Lab. If you need a refresher, step-by-step instructions are provided in the classroom.
The starter code provides a simple fact skill similar to Space Geek, except a few AI history facts have been provided in an external file, facts.js
, instead of the space facts. Each fact includes a 4-digit year in its text, which we will use in the project for a new feature.
The project consists of three parts:
- Customize the fact skill
- Add a feature using an additional intent and a slot
- Add conversational elements
Follow the instructions for each part as described in the classroom under "Tasks" for the project. Once all the unit tests pass, follow the submission instructions to submit your project for review!