Skip to content
This repository was archived by the owner on May 14, 2022. It is now read-only.

Commit ae660e4

Browse files
committed
initial code commit for the skill
PR: alexa/alexa-skills-kit-sdk-for-java#191
1 parent fec4207 commit ae660e4

25 files changed

+10592
-4
lines changed

README.md

+42-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,45 @@
1-
## Skill Sample Java How To
1+
Build an Alexa How-To Skill in ASK Java SDK
2+
===========================================
23

3-
This tutorial will walk first-time Alexa skills developers through all the required steps involved in creating a parameter-based skill using a template called ‘Minecraft Helper’. Ask how to craft an item in the game Minecraft, and this skill will give you instructions. This sample Alexa Skill is written in Java and demonstrates the use of localization for multiple locales.
4+
<img src="https://m.media-amazon.com/images/G/01/mobile-apps/dex/alexa/alexa-skills-kit/tutorials/quiz-game/header._TTH_.png" />
45

5-
## License
6+
This tutorial will walk first-time Alexa skills developers through all
7+
the required steps involved in creating a parameter-based skill using a
8+
template called ‘Minecraft Helper’. Ask how to craft an item in the
9+
game Minecraft, and this skill will give you instructions.
10+
11+
12+
Concepts
13+
--------
14+
15+
This simple sample shows how to work with multiple locales in the Alexa
16+
skill built using ASK Java SDK.
17+
18+
Setup
19+
-----
20+
21+
To run this example skill you need to do two things. The first is to
22+
deploy the example code in lambda, and the second is to configure the
23+
Alexa skill to use Lambda.
24+
25+
[![Get Started](https://camo.githubusercontent.com/db9b9ce26327ad3bac57ec4daf0961a382d75790/68747470733a2f2f6d2e6d656469612d616d617a6f6e2e636f6d2f696d616765732f472f30312f6d6f62696c652d617070732f6465782f616c6578612f616c6578612d736b696c6c732d6b69742f7475746f7269616c732f67656e6572616c2f627574746f6e732f627574746f6e5f6765745f737461727465642e5f5454485f2e706e67)](./instructions/1-voice-user-interface.md)
26+
27+
Additional Resources
28+
--------------------
29+
30+
### Community
31+
32+
- [Amazon Developer Forums](https://forums.developer.amazon.com/spaces/165/index.html) : Join the conversation!
33+
- [Hackster.io](https://www.hackster.io/amazon-alexa) - See what others are building with Alexa.
34+
35+
### Tutorials & Guides
36+
37+
- [Voice Design Guide](https://developer.amazon.com/designing-for-voice/) -
38+
A great resource for learning conversational and voice user interface design.
39+
40+
### Documentation
41+
42+
- [Official Maven repository](https://mvnrepository.com/artifact/com.amazon.alexa/ask-sdk)
43+
- [Official Alexa Skills Kit Java SDK Docs](https://alexa-skills-kit-sdk-for-java.readthedocs.io/en/latest/index.html)
44+
- [Official Alexa Skills Kit Docs](https://developer.amazon.com/docs/ask-overviews/build-skills-with-the-alexa-skills-kit.html)
645

7-
This library is licensed under the Apache 2.0 License.
+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# Build an Alexa How-To Skill using ASK Java SDK
2+
<img src="https://m.media-amazon.com/images/G/01/mobile-apps/dex/alexa/alexa-skills-kit/tutorials/quiz-game/header._TTH_.png" />
3+
4+
[![Voice User Interface](https://m.media-amazon.com/images/G/01/mobile-apps/dex/alexa/alexa-skills-kit/tutorials/navigation/1-on._TTH_.png)](./1-voice-user-interface.md)[![Lambda Function](https://m.media-amazon.com/images/G/01/mobile-apps/dex/alexa/alexa-skills-kit/tutorials/navigation/2-off._TTH_.png)](./2-lambda-function.md)[![Connect VUI to Code](https://m.media-amazon.com/images/G/01/mobile-apps/dex/alexa/alexa-skills-kit/tutorials/navigation/3-off._TTH_.png)](./3-connect-vui-to-code.md)[![Testing](https://m.media-amazon.com/images/G/01/mobile-apps/dex/alexa/alexa-skills-kit/tutorials/navigation/4-off._TTH_.png)](./4-testing.md)[![Customization](https://m.media-amazon.com/images/G/01/mobile-apps/dex/alexa/alexa-skills-kit/tutorials/navigation/5-off._TTH_.png)](./5-customization.md)[![Publication](https://m.media-amazon.com/images/G/01/mobile-apps/dex/alexa/alexa-skills-kit/tutorials/navigation/6-off._TTH_.png)](./6-publication.md)
5+
6+
## Setting up Your Alexa Skill in the Developer Console
7+
8+
1. **Go to the [Alexa Developer Console](http://developer.amazon.com/alexa?&sc_category=Owned&sc_channel=RD&sc_campaign=Evangelism2018&sc_publisher=github&sc_content=Survey&sc_detail=quiz-game-python-V2_GUI-1&sc_funnel=Convert&sc_country=WW&sc_medium=Owned_RD_Evangelism2018_github_Survey_quiz-game-python-V2_GUI-1_Convert_WW_beginnersdevs&sc_segment=beginnersdevs). In the top-right corner of the screen, click the "Sign In" button.**
9+
(If you don't already have an account, you will be able to create a new one for free.)
10+
11+
1. Once you have signed in, select the **Developer Console** link and then **Alexa Skills Kit**.
12+
13+
1. From the **Alexa Developer Console** select the **Create Skill** button near the top-right of the list of your Alexa Skills.
14+
15+
1. Give your new skill a **Name**, for example, 'Minecraft Helper'. This is the name that will be shown in the Alexa Skills Store, and the name your users will refer to.
16+
17+
1. Select the Default Language. This tutorial will presume you have selected 'English (US)'.
18+
19+
1. Select the **Custom** model under the *'Choose a model to add to your skill'* section. Click the **Create Skill** button at the top right.
20+
21+
1. Choose **Start from scratch** from the *Choose a template* section and click the **Choose** button on the top right.
22+
23+
1. **Build the Interaction Model for your skill**
24+
1. On the left hand navigation panel, select the **JSON Editor** tab under **Interaction Model**. In the textfield provided, replace any existing code with the code provided in the [Interaction Model](../models/en-US.json). Click **Save Model**.
25+
2. If you want to change the skill invocation name, select the **Invocation** tab. Enter a **Skill Invocation Name**. This is the name that your users will need to say to start your skill. In this case, it's preconfigured to be 'minecraft helper'.
26+
3. Click "Build Model".
27+
28+
**Note:** You should notice that **Intents** and **Slot Types** will auto populate based on the JSON Interaction Model that you have now applied to your skill. Feel free to explore the changes here, to learn about **Intents**, **Slots**, and **Utterances** open our [technical documentation in a new tab](https://developer.amazon.com/docs/custom-skills/create-intents-utterances-and-slots.html?&sc_category=Owned&sc_channel=RD&sc_campaign=Evangelism2018&sc_publisher=github&sc_content=Survey&sc_detail=quiz-game-python-V2_GUI-1&sc_funnel=Convert&sc_country=WW&sc_medium=Owned_RD_Evangelism2018_github_Survey_quiz-game-python-V2_GUI-1_Convert_WW_beginnersdevs&sc_segment=beginnersdevs).
29+
30+
7. **Optional:** Select an intent by expanding the **Intents** from the left side navigation panel. Add some more sample utterances for your newly generated intents. Think of all the different ways that a user could request to make a specific intent happen. A few examples are provided. Be sure to click **Save Model** and **Build Model** after you're done making changes here.
31+
32+
8. If your interaction model builds successfully, proceed to the next step. If not, you should see an error. Try to resolve the errors. In our next step of this 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](./3-connect-vui-to-code.md).
33+
34+
If you get an error from your interaction model, check through this list:
35+
36+
* **Did you copy & paste the provided code correctly?**
37+
* **Did you accidentally add any characters to the Interaction Model?**
38+
39+
[![Next](https://m.media-amazon.com/images/G/01/mobile-apps/dex/alexa/alexa-skills-kit/tutorials/general/buttons/button_next_lambda_function._TTH_.png)](./2-lambda-function.md)

instructions/2-lambda-function.md

+58
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
# Build an Alexa How-To Skill in ASK Java SDK
2+
<img src="https://m.media-amazon.com/images/G/01/mobile-apps/dex/alexa/alexa-skills-kit/tutorials/quiz-game/header._TTH_.png" />
3+
4+
[![Voice User Interface](https://m.media-amazon.com/images/G/01/mobile-apps/dex/alexa/alexa-skills-kit/tutorials/navigation/1-locked._TTH_.png)](./1-voice-user-interface.md)[![Lambda Function](https://m.media-amazon.com/images/G/01/mobile-apps/dex/alexa/alexa-skills-kit/tutorials/navigation/2-on._TTH_.png)](./2-lambda-function.md)[![Connect VUI to Code](https://m.media-amazon.com/images/G/01/mobile-apps/dex/alexa/alexa-skills-kit/tutorials/navigation/3-off._TTH_.png)](./3-connect-vui-to-code.md)[![Testing](https://m.media-amazon.com/images/G/01/mobile-apps/dex/alexa/alexa-skills-kit/tutorials/navigation/4-off._TTH_.png)](./4-testing.md)[![Customization](https://m.media-amazon.com/images/G/01/mobile-apps/dex/alexa/alexa-skills-kit/tutorials/navigation/5-off._TTH_.png)](./5-customization.md)[![Publication](https://m.media-amazon.com/images/G/01/mobile-apps/dex/alexa/alexa-skills-kit/tutorials/navigation/6-off._TTH_.png)](./6-publication.md)
5+
6+
## Setting Up A Lambda Function Using Amazon Web Services
7+
8+
In the [first step of this guide](1-voice-user-interface.md), we built the Voice User Interface (VUI) for our Alexa skill. On this page, we will be creating a Lambda function using [Amazon Web Services](http://aws.amazon.com). You can [read more about what a Lambda function is](http://aws.amazon.com/lambda), but for the purposes of this guide, what you need to know is that Lambda is where our code lives. When a user asks Alexa to use our skill, it is our Lambda function that interprets the appropriate interaction, and provides the conversation back to the user.
9+
10+
1. **Go to http://aws.amazon.com and sign in to the console.** If you don't already have an account, you will need to create one. [Check out this quick walk-through for setting up a new AWS account](https://github.com/alexa/alexa-cookbook/blob/master/aws/set-up-aws.md).
11+
12+
[![Sign In](https://m.media-amazon.com/images/G/01/mobile-apps/dex/alexa/alexa-skills-kit/tutorials/general/2-1-sign-in-to-the-console._TTH_.png)](https://console.aws.amazon.com/console/home)
13+
14+
2. **Choose "Services" at the top of the screen, and type "Lambda" in the search box.** You can also find it in the list of services. It is in the "Compute" section.
15+
16+
[![Lambda](https://m.media-amazon.com/images/G/01/mobile-apps/dex/alexa/alexa-skills-kit/tutorials/general/2-2-services-lambda._TTH_.png)](https://console.aws.amazon.com/lambda/home)
17+
18+
3. **Check your AWS region.** Lambda only works with the Alexa Skills Kit in four regions: US East (N. Virginia), EU (Ireland), US West (Oregon) and Asia Pacific (Tokyo). Make sure you choose the region closest to your customers.
19+
20+
![Lambda Regions](https://m.media-amazon.com/images/G/01/mobile-apps/dex/alexa/alexa-skills-kit/tutorials/general/2-3-check-region._TTH_.png)
21+
22+
4. **Click the "Create a Lambda function" button.** It should be near the top of your screen.
23+
24+
![Create Function](https://m.media-amazon.com/images/G/01/mobile-apps/dex/alexa/alexa-skills-kit/tutorials/general/2-4-create-a-lambda-function._TTH_.png)
25+
26+
5. **Click on "Author from scratch".** We will configure our Lambda function next.
27+
1. These values will only ever be visible to you, but make sure that you name your function something meaningful. "sampleJavaHowTo" is sufficient if you don't have another idea for a name.
28+
29+
2. From the "Runtime" dropdown select Java 8.
30+
31+
3. **Set up your Lambda function role.** If you haven't done this before, we have a [detailed walk-through for setting up your first role for Lambda](https://github.com/alexa/alexa-cookbook/blob/master/guides/aws-security-and-setup/lambda-role.md). If you have done this before, you only need to select the **Existing role**.
32+
33+
4. Click **Create function**.
34+
35+
6. **Configure your trigger.** There are many different AWS services that can trigger a Lambda function, but for the purposes of this guide, we need to select "Alexa Skills Kit." from the left hand side.
36+
37+
Once you have selected Alexa Skills Kit, scroll down and find the Skill ID verification section. Although you will want to paste your skill's ID in the Skill ID field, however for this tutorial, click Disable. Click the **Add** button in the lower right. Click the orange **Save** button in the top right corner.
38+
39+
7. **Finish configuring your function**. Click on your function's name (you'll find it in the middle) and scroll to ``Function code``. You have an option of either uploading your code as a zip file, as a JAR file and from an Amazon S3 bucket.
40+
41+
To build the JAR file and properly upload this code to Lambda, you'll need to perform the following:
42+
43+
1. This skill uses the [ASK SDK for Java](https://github.com/alexa/alexa-skills-kit-sdk-for-java) for development. To build the sample, open a terminal and go to the directory containing pom.xml, and run `mvn org.apache.maven.plugins:maven-assembly-plugin:2.6:assembly -DdescriptorId=jar-with-dependencies package`. This will generate a JAR file named "HowTo-1.0-jar-with-dependencies.jar" in the target directory.
44+
2. On the AWS Lambda console, change the **code entry type** drop-down to **Upload a .zip file or .jar file**, upload the generated JAR file in AWS lambda console and enter `com.amazon.ask.howto.HowToStreamHandler` (fully qualified name of the stream handler) in the `Handler` text box. and click on **Save**.
45+
46+
*(Optional)* Follow the ASK Java SDK [Getting Started](https://alexa-skills-kit-sdk-for-java.readthedocs.io/en/latest/Setting-Up-The-ASK-SDK.html#) documentation, to check alternative ways of installing the sdk and deploying to AWS Lambda console.
47+
48+
8. (Optional) Click the **Configure test events** dropdown menu on the top of the page.
49+
50+
1. Select 'Alexa Start Session' from the 'Event Template' dropdown.
51+
2. Type `LaunchRequest` into the 'Event Name' field.
52+
3. Click the orange 'Create' button at the bottom of the page
53+
4. Click the **Test** button at the top of the page.
54+
5. You should see a light green box with the message: *Execution result: succeeded* at the top of the page.
55+
56+
9. **As a final step, copy the ARN value from the top right corner of the screen.** You will need this value in the next section of this guide.
57+
58+
[![Next Step](https://m.media-amazon.com/images/G/01/mobile-apps/dex/alexa/alexa-skills-kit/tutorials/general/buttons/button_next_connect_vui_to_code._TTH_.png)](3-connect-vui-to-code.md)

instructions/3-connect-vui-to-code.md

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Build an Alexa How-To Skill in ASK Java SDK
2+
<img src="https://m.media-amazon.com/images/G/01/mobile-apps/dex/alexa/alexa-skills-kit/tutorials/quiz-game/header._TTH_.png" />
3+
4+
[![Voice User Interface](https://m.media-amazon.com/images/G/01/mobile-apps/dex/alexa/alexa-skills-kit/tutorials/navigation/1-locked._TTH_.png)](./1-voice-user-interface.md)[![Lambda Function](https://m.media-amazon.com/images/G/01/mobile-apps/dex/alexa/alexa-skills-kit/tutorials/navigation/2-locked._TTH_.png)](./2-lambda-function.md)[![Connect VUI to Code](https://m.media-amazon.com/images/G/01/mobile-apps/dex/alexa/alexa-skills-kit/tutorials/navigation/3-on._TTH_.png)](./3-connect-vui-to-code.md)[![Testing](https://m.media-amazon.com/images/G/01/mobile-apps/dex/alexa/alexa-skills-kit/tutorials/navigation/4-off._TTH_.png)](./4-testing.md)[![Customization](https://m.media-amazon.com/images/G/01/mobile-apps/dex/alexa/alexa-skills-kit/tutorials/navigation/5-off._TTH_.png)](./5-customization.md)[![Publication](https://m.media-amazon.com/images/G/01/mobile-apps/dex/alexa/alexa-skills-kit/tutorials/navigation/6-off._TTH_.png)](./6-publication.md)
5+
6+
## Connecting Your Voice User Interface To Your Lambda Function
7+
8+
On [page #1](./1-voice-user-interface.md) of this guide, we created a voice user interface for the intents and utterances we expect from our users. On [page #2](./2-lambda-function.md), we created a Lambda function that contains all of our logic for the skill. On this page, we need to connect those two pieces together.
9+
10+
1. **Go back to the [Amazon Developer Portal](https://developer.amazon.com/edw/home.html#/skills/list) and select your skill from the list.** You may still have a browser tab open if you started at the beginning of this tutorial.
11+
12+
2. Select the **Endpoint** tab on the left side navigation panel.
13+
14+
3. **Select the "AWS Lambda ARN" option for your endpoint.** You have the ability to host your code anywhere that you would like, but for the purposes of simplicity and frugality, we are using AWS Lambda. ([Read more about Hosting Your Own Custom Skill Web Service](https://developer.amazon.com/public/solutions/alexa/alexa-skills-kit/docs/developing-an-alexa-skill-as-a-web-service).) With the AWS Free Tier, you get 1,000,000 free requests per month, up to 3.2 million seconds of compute time per month. Learn more at https://aws.amazon.com/free/. In addition, Amazon now offers [AWS Promotional Credits for developers who have live Alexa skills that incur costs on AWS related to those skills](https://developer.amazon.com/alexa-skills-kit/alexa-aws-credits).
15+
16+
4. Paste your Lambda's ARN (Amazon Resource Name) into the textbox provided for **Default Region**.
17+
18+
5. Click the **Save Endpoints** button at the top of the main panel.
19+
20+
6. **Click the "Next" button to continue to page #4 of this guide.**
21+
22+
<br/><br/>
23+
<a href="./4-testing.md"><img src="https://m.media-amazon.com/images/G/01/mobile-apps/dex/alexa/alexa-skills-kit/tutorials/general/buttons/button_next_testing._TTH_.png" /></a>

0 commit comments

Comments
 (0)