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
{{ message }}
This repository has been archived by the owner on May 1, 2023. It is now read-only.
Build Tab: create Alexa-hosted skill from scratch, select your locale.
Build Tab: Change invocation name to "happy birthday" in your language (all strings in english go in your lang from now on). Show json
Build Tab: create RegisterBirthdayIntent (output message is "Happy Birthday!"), mention Dialog Delegation strategy will be enabled later. Show json
Build Tab: create slot day, type is AMAZON.Number. Show json
Build Tab: create slot month, create slot type MonthType. Type is custom (for illustration purposes is not AMAZON.Month). Compare solution to using AMAZON.Date
Build Tab: create slot year, type is AMAZON.Four_Digit.
Build Tab: create synonyms in month (eg. "first month of the year", "the first one")
Build Tab: create utterances that cover collection of all slots plus some slot-less utterances (eg. "register my birthday")
Build Tab: mark day as required, add prompts (including propmpt that use the other slots)
Build Tab: add slot validation to day (>= 1 & <= 31)
Build Tab: mark month as required, add prompts (including prompts that refer to other slots)
Build Tab: add slot validation to month (show constrain on slot type values and synonyms, mention this is not possible on built-in list slots (eg. AMAZON.Actor))
Build Tab: mark year as required, add prompts (including prompts that refer to other slots)
Build Tab: add slot validation to year (> 1900 & < 2014)