You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[](https://github.com/AlexaStaging/alexa-cookbook/blob/master/context/lists/step-by-step/1-voice-user-interface.md)[](https://github.com/AlexaStaging/alexa-cookbook/blob/master/context/lists/step-by-step/2-lambda-function.md)[](https://github.com/AlexaStaging/alexa-cookbook/blob/master/context/lists/step-by-step/3-connect-vui-to-code.md)[](https://github.com/AlexaStaging/alexa-cookbook/blob/master/context/lists/step-by-step/4-testing.md)
4
+
[](https://github.com/Alexa/alexa-cookbook/blob/master/context/lists/step-by-step/1-voice-user-interface.md)[](https://github.com/Alexa/alexa-cookbook/blob/master/context/lists/step-by-step/2-lambda-function.md)[](https://github.com/Alexa/alexa-cookbook/blob/master/context/lists/step-by-step/3-connect-vui-to-code.md)[](https://github.com/Alexa/alexa-cookbook/blob/master/context/lists/step-by-step/4-testing.md)
*[Amazon Web Services Account](http://aws.amazon.com/)
16
-
* The sample code on [GitHub](https://github.com/alexastaging/alexa-cookbook/context/lists).
16
+
* The sample code on [GitHub](https://github.com/Alexa/alexa-cookbook/context/lists).
17
17
18
18
## What Your Skill Will Do
19
19
Customers can review and modify their Alexa lists using voice through a device with Alexa or via the Alexa app. For example, a customer can tell Alexa to add items to the Alexa Shopping List at home, and then while at the store, view the items via the Alexa app, and check them off. Third-party developers can make their skills have the ability to read and modify these two Alexa lists. Skills can request permissions to read and write the customer Alexa lists.
20
20
21
21
When a user enables a skill within the Alexa app, the user will be prompted to provide consent for the read and write permissions. The customer can then ask for the top item on the to-do list or request to delete the top to-do item. It is important to note that when a user enables a skill via voice, the user will not be prompted for this information and the default choice will be "none." In this case, you can use cards to prompt the user to provide consent using the Alexa app.
Copy file name to clipboardExpand all lines: context/lists/step-by-step/1-voice-user-interface.md
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,9 @@
1
1
# Alexa Lists Integration Sample Project
2
-
[](https://github.com/AlexaStaging/alexa-cookbook/blob/master/context/lists/step-by-step/1-voice-user-interface.md)[](https://github.com/AlexaStaging/alexa-cookbook/blob/master/context/lists/step-by-step/2-lambda-function.md)[](https://github.com/AlexaStaging/alexa-cookbook/blob/master/context/lists/step-by-step/3-connect-vui-to-code.md)[](https://github.com/AlexaStaging/alexa-cookbook/blob/master/context/lists/step-by-step/4-testing.md)
2
+
[](https://github.com/Alexa/alexa-cookbook/blob/master/context/lists/step-by-step/1-voice-user-interface.md)[](https://github.com/Alexa/alexa-cookbook/blob/master/context/lists/step-by-step/2-lambda-function.md)[](https://github.com/Alexa/alexa-cookbook/blob/master/context/lists/step-by-step/3-connect-vui-to-code.md)[](https://github.com/Alexa/alexa-cookbook/blob/master/context/lists/step-by-step/4-testing.md)
3
3
4
4
## Setting up Your Voice User Interface
5
5
6
-
There are two parts to an Alexa skill. The first part is the [Voice User Interface (VUI)](https://developer.amazon.com/public/solutions/alexa/alexa-skills-kit/docs/defining-the-voice-interface). This is where we define how we will handle a user's voice input, and which code should be executed when specific commands are uttered. The second part is the actual code logic for our skill, and we will handle that in [the next step](https://github.com/AlexaStaging/alexa-cookbook/blob/master/context/lists/step-by-step/2-lambda-function.md) of this step-by-step guide.
6
+
There are two parts to an Alexa skill. The first part is the [Voice User Interface (VUI)](https://developer.amazon.com/public/solutions/alexa/alexa-skills-kit/docs/defining-the-voice-interface). This is where we define how we will handle a user's voice input, and which code should be executed when specific commands are uttered. The second part is the actual code logic for our skill, and we will handle that in [the next step](https://github.com/Alexa/alexa-cookbook/blob/master/context/lists/step-by-step/2-lambda-function.md) of this step-by-step guide.
7
7
8
8
1.**Go to the [Amazon Developer Portal](http://developer.amazon.com). In the top right corner of the screen, click the Sign In button.** </br>(If you don't already have an account, you will be able to create a new one for free.)
9
9
@@ -67,7 +67,7 @@ There are two parts to an Alexa skill. The first part is the [Voice User Interf
67
67
]
68
68
}
69
69
```
70
-
([get this on GitHub](https://github.com/AlexaStaging/alexa-cookbook/blob/master/context/lists/speechAssets/IntentSchema.json))
70
+
([get this on GitHub](https://github.com/Alexa/alexa-cookbook/blob/master/context/lists/speechAssets/IntentSchema.json))
71
71
72
72
7.2. **Custom Slot Types** For this sample skill, you do not need any custom slots. If you're interested... Custom slots are sets of training data for Alexa to give her an idea of the types of data you expect to receive from your skill users. Note that the values in a custom slot *do not* function like a drop-down list on a website. If your custom slot contains a list of colors in the rainbow, and your user responds with a color that isn't in your list, you will still receive "sky blue" as an answer, and your skill must be able to handle those situations.
73
73
@@ -79,18 +79,18 @@ There are two parts to an Alexa skill. The first part is the [Voice User Interf
79
79
ClearTopToDoIntent clear top to do
80
80
ClearTopToDoIntent delete top todo
81
81
```
82
-
([get this on GitHub](https://github.com/AlexaStaging/alexa-cookbook/blob/master/context/lists/speechAssets/SampleUtterances.txt))
82
+
([get this on GitHub](https://github.com/Alexa/alexa-cookbook/blob/master/context/lists/speechAssets/SampleUtterances.txt))
83
83
84
84
When you have added these sample utterances to your skill, click **Save** to verify that your interaction model builds properly without any errors.
85
85
86
-
8. If your interaction model builds successfully, click **Next** to move on to Configuration. In our next step ofthis guide, we will be creating our Lambda function in the AWS developer console, but keep this browser tab open, because we will be returning here on [Page #3: Connect VUI to Code](https://github.com/AlexaStaging/alexa-cookbook/blob/master/context/lists/step-by-step/3-connect-vui-to-code.md).
86
+
8. If your interaction model builds successfully, click **Next** to move on to Configuration. In our next step ofthis guide, we will be creating our Lambda function in the AWS developer console, but keep this browser tab open, because we will be returning here on [Page #3: Connect VUI to Code](https://github.com/Alexa/alexa-cookbook/blob/master/context/lists/step-by-step/3-connect-vui-to-code.md).
0 commit comments