Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Rev.

Date

Prepared by

Affected Sections/ Pages

Description

0.1

17/03/2020

Manjunath HK

Document

Initial version

0.22/07/2020Manjunath HKDocumentmore details on intent creation and skill

Introduction

This guideline document is intended to help developers want to integrate AVS with the device. Steps described in this page mainly covers the developer account creation and defining different rules to launch/control RDK APPs. These rules created in developers Alexa account will interact with the AVS SDK application ported to the devices to achieve desire tasks.

...

Choose a method to host your skill's backend resources (Alexa-Hosted (Node.js))

Image RemovedImage Added

Click Create skill.

  • Click the template you want to use and then click Choose. (Hello world skill template).

Image Removed

  • .

Image Added


  • Here you create the skill either “import skill” or “continue with template”


Image Added


Import Skill:

  • you can import the skill that already host in the git repository.
  • you will find import skill option is on the skill developer account while creating the new skill as shown.
  • click on the option.
  • past the git URL on the dialog and click on the import.

 

Continue with Template:

after creating the skill with example template (hello world) we will find the code section in the skill console where you will find the index.js file in that you replace the existing code with code provided then save and deploy.

 

Invocation  Invocation Name

It is the name given to custom skill. Invocation of the skill is started by the invocation name followed by the intent.

...

https://developer.amazon.com/en-US/docs/alexa/custom-skills/create-intents-utterances-and-slots.html


Image Added


if you have the json file of the already created intents then follow the steps to add same in to your skills

  • In the skill console developer account, we will find the JSON Editor in the build section as shown above image.
  • click on the option.
  • drag and drop the json file you have.
  • save modal.
  • build the modal.

for more information on the json and other related information follow the link 

https://developer.amazon.com/en-US/docs/alexa/custom-skills/create-intents-utterances-and-slots.html#json-for-intents-and-utterances-interaction-model-schema

Test the custom skill

 Use the simulator provided on the Test page in the developer console. This gives you access to most Alexa Skills Kit features without a device. You can interact with Alexa using either voice or text.

...