{"id":13799358,"url":"https://github.com/cameronhunter/generator-alexa-skill","last_synced_at":"2025-05-13T08:31:05.965Z","repository":{"id":57246329,"uuid":"43102184","full_name":"cameronhunter/generator-alexa-skill","owner":"cameronhunter","description":"A Yeoman generator for scaffolding an ES2015 Alexa Skill for AWS Lambda","archived":true,"fork":false,"pushed_at":"2017-04-21T21:23:00.000Z","size":80,"stargazers_count":22,"open_issues_count":14,"forks_count":9,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-04-20T16:17:08.526Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://cameronhunter.github.io/alexa-playground","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cameronhunter.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-09-25T01:19:47.000Z","updated_at":"2023-01-28T21:28:57.000Z","dependencies_parsed_at":"2022-08-24T16:31:44.105Z","dependency_job_id":null,"html_url":"https://github.com/cameronhunter/generator-alexa-skill","commit_stats":null,"previous_names":[],"tags_count":16,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cameronhunter%2Fgenerator-alexa-skill","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cameronhunter%2Fgenerator-alexa-skill/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cameronhunter%2Fgenerator-alexa-skill/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cameronhunter%2Fgenerator-alexa-skill/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cameronhunter","download_url":"https://codeload.github.com/cameronhunter/generator-alexa-skill/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253903689,"owners_count":21981731,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-08-04T00:01:01.899Z","updated_at":"2025-05-13T08:31:05.679Z","avatar_url":"https://github.com/cameronhunter.png","language":"JavaScript","funding_links":[],"categories":["NPM Modules"],"sub_categories":[],"readme":"# generator-alexa-skill\n\n[![Build Status](https://travis-ci.org/cameronhunter/generator-alexa-skill.svg?branch=master)](https://travis-ci.org/cameronhunter/generator-alexa-skill) [![NPM Version](https://img.shields.io/npm/v/generator-alexa-skill.svg)](https://npmjs.org/package/generator-alexa-skill) [![License](https://img.shields.io/npm/l/generator-alexa-skill.svg)](https://github.com/cameronhunter/generator-alexa-skill/blob/master/LICENSE)\n\nA [Yeoman](http://yeoman.io) generator for scaffolding an Alexa Skill for AWS Lambda using [alexa-lambda-skill](https://github.com/cameronhunter/alexa-lambda-skill).\n\n## Installation\n\n```bash\nnpm install -g yo generator-alexa-skill\n```\n\n## Generating a new Alexa Skill\n\n```bash\nyo alexa-skill\n```\n\nThis creates a brand new Alexa Skill, add your logic into `src/index.js` and tests into `test/index-test.js`. The template is a HelloWorld skill:\n\n```javascript\nimport Response from 'alexa-response';\nimport { Skill, Launch, Intent } from 'alexa-annotations';\n\n@Skill\nexport default class HelloWorld {\n\n  @Launch\n  launch() {\n    return Response.say('HelloWorld launched!');\n  }\n\n  @Intent('hello')\n  hello({ name = 'world' }) {\n    return Response.say(`Hello ${name}`).card({ title: 'HelloWorld', content: `Hello ${name}` });\n  }\n\n  @Intent('AMAZON.HelpIntent')\n  help() {\n    return Response.ask('I say hello to people. Who should I say hello to?').reprompt('Who should I say hello to?');\n  }\n\n  @Intent('AMAZON.CancelIntent', 'AMAZON.StopIntent')\n  stop() {\n    return Response.say('Goodbye');\n  }\n\n}\n```\n\nAlso see `model/UTTERANCES` for phrases that users may say to interact with this skill and the schema of user intents in `model/schema.json` that are used to build the interaction model for your skill.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcameronhunter%2Fgenerator-alexa-skill","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcameronhunter%2Fgenerator-alexa-skill","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcameronhunter%2Fgenerator-alexa-skill/lists"}