Alexa Skills Kit > Key Terms
A set of actions or tasks that are accomplished by Alexa. Skills are like apps for Alexa, helping customers perform everyday tasks or engage with your content naturally with voice. Alexa provides built-in functionality, such as timers and alarms. You can use the Alexa Skills Kit to create skills for Alexa. A skill includes both the code, in the form of a cloud-based service, and the configuration provided on the developer console.
A device that provides access to the Alexa service. Examples include Amazon Echo, Amazon Echo Dot, Amazon Tap, Echo Show, and devices made by other manufacturers that use the Alexa Voice Service.
A collection of APIs, tools, and documentation for giving Alexa new capabilities. See Build Skills with the Alexa Skills Kit.
A technology that converts spoken words into text. ASR is the first step in enabling technologies like Alexa to respond when you ask, "Alexa, what's it like outside?“
A skill that uses a custom interaction model. You define the requests your skill can handle (intents) and the words customers say to make (or invoke) those requests (sample utterances). The mapping between the intents and sample utterances creates the interaction model or voice user interface for the skill.
A representation of the action that fulfills a customer's spoken request. Intents can have further arguments called slots that represent variable information. For example, "Alexa, ask History Buff what happened on June third." In this statement, "…what happened on June third" maps to a specific intent that can be handled by a particular Alexa ability. This tells Alexa that the user wants the skill History Buff to get historical information on a specific date.
For details about defining intents, see Create Intents, Utterances, and Slots.
A defined set of logic parameters for your skill that will determine the voice interface through which customers will interact with your skill as well as map customers' spoken input to the intents your cloud-based service can handle.
The act of beginning an interaction with a particular Alexa ability. For example, if a customer wants to wake Alexa to use the Horoscope skill, "Alexa, ask Horoscope for today's reading."
Alexa then follows up after the invocation and asks, "What horoscope sign would you like?"
Types of invocations include: full intent invocation, partial intent invocation, and no intent invocation.
An argument to an intent that gives Alexa more information about that request. For example, "Alexa, ask History Buff what happened on June third." In this statement, "…June third" is the value of a date slot that refines the request. For a given intent, slots can be required or optional. To designate slots as required and let Alexa manage the conversation to collect the slot values, create a dialog model and then delegate the dialog to Alexa.
A markup language that provides a standard way to mark up text to generate synthetic speech. The Alexa Skills Kit (ASK) supports a subset of tags defined in the SSML specification.
The words the customer says to Alexa to convey what they want to do, or to provide a response to a question Alexa asks. For custom skills, you provide a set of sample utterances mapped to intents as part of your custom interaction model. For smart home skills, the smart home skill API Message Reference provides a predefined set of utterances.
A method for people to use voice input to interact with and control computers and devices. For a custom skill, the voice interface consists of a mapping between users' spoken utterances and the intents your cloud-based service can handle. See Interaction Model Schema.