Skip to content

Instantly share code, notes, and snippets.

@queirozsc
Last active October 13, 2018 04:52
Show Gist options
  • Save queirozsc/72a53657a9c40981264c26bc63f060e5 to your computer and use it in GitHub Desktop.
Save queirozsc/72a53657a9c40981264c26bc63f060e5 to your computer and use it in GitHub Desktop.
[Configurando o AWS Alexa Cli] Configurando a interface de linha de comando do Alexa Skill Kit. Fonte: https://developer.amazon.com/docs/smapi/quick-start-alexa-skills-kit-command-line-interface.html#step-2-install-and-initialize-ask-cli #aws #alexa
# Create a new skill project from the built-in Hello World sample
ask new ;
# Deploy a skill to developer account
ask deploy ;
# Create a local skill project directory from the development stage of an existing skill
# (note: get skill id at Alexa Developer Console)
# (note 2: will download the skill manifest, interaction model and skill code from AWS Lambda)
ask clone --skill-id amzn1.ask.skill.714b7ee8-85cb-4b18-8ce6-3bdeaa03bd48 ;
# Test a skill on device
ask simulate --text "open nursing skill" --locale en-us
# Install Alexa Skill Kit
npm install -g ask-cli ;
# Initialize ASK Cli
ask init ;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment