├── .ask └── config ├── .gitignore ├── LICENSE ├── README.md ├── assets ├── cover.png ├── rocket-man-lcon-lg.png └── rocket-man-logo-sm.png ├── hooks ├── post_new_hook.sh └── pre_deploy_hook.sh ├── lambda └── custom │ ├── LICENSE │ ├── README.md │ ├── index.js │ └── package.json ├── models └── en-US.json └── skill.json /.ask/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabblelab/2-alexa-remote-api-example-skill/HEAD/.ask/config -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabblelab/2-alexa-remote-api-example-skill/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabblelab/2-alexa-remote-api-example-skill/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabblelab/2-alexa-remote-api-example-skill/HEAD/README.md -------------------------------------------------------------------------------- /assets/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabblelab/2-alexa-remote-api-example-skill/HEAD/assets/cover.png -------------------------------------------------------------------------------- /assets/rocket-man-lcon-lg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabblelab/2-alexa-remote-api-example-skill/HEAD/assets/rocket-man-lcon-lg.png -------------------------------------------------------------------------------- /assets/rocket-man-logo-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabblelab/2-alexa-remote-api-example-skill/HEAD/assets/rocket-man-logo-sm.png -------------------------------------------------------------------------------- /hooks/post_new_hook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabblelab/2-alexa-remote-api-example-skill/HEAD/hooks/post_new_hook.sh -------------------------------------------------------------------------------- /hooks/pre_deploy_hook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabblelab/2-alexa-remote-api-example-skill/HEAD/hooks/pre_deploy_hook.sh -------------------------------------------------------------------------------- /lambda/custom/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabblelab/2-alexa-remote-api-example-skill/HEAD/lambda/custom/LICENSE -------------------------------------------------------------------------------- /lambda/custom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabblelab/2-alexa-remote-api-example-skill/HEAD/lambda/custom/README.md -------------------------------------------------------------------------------- /lambda/custom/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabblelab/2-alexa-remote-api-example-skill/HEAD/lambda/custom/index.js -------------------------------------------------------------------------------- /lambda/custom/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabblelab/2-alexa-remote-api-example-skill/HEAD/lambda/custom/package.json -------------------------------------------------------------------------------- /models/en-US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabblelab/2-alexa-remote-api-example-skill/HEAD/models/en-US.json -------------------------------------------------------------------------------- /skill.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabblelab/2-alexa-remote-api-example-skill/HEAD/skill.json --------------------------------------------------------------------------------