{"id":15688162,"url":"https://github.com/skierkowski/alexa-skill","last_synced_at":"2025-07-25T03:17:54.312Z","repository":{"id":124029326,"uuid":"62182183","full_name":"skierkowski/alexa-skill","owner":"skierkowski","description":"A Ruby based DSL to create new Alexa Skills","archived":false,"fork":false,"pushed_at":"2016-07-11T07:18:57.000Z","size":9,"stargazers_count":8,"open_issues_count":0,"forks_count":1,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-07-14T11:01:10.491Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/skierkowski.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2016-06-29T00:09:51.000Z","updated_at":"2017-07-21T00:47:37.000Z","dependencies_parsed_at":null,"dependency_job_id":"24cfc131-02bf-4d36-89bf-a81bb4e02c0d","html_url":"https://github.com/skierkowski/alexa-skill","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/skierkowski/alexa-skill","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/skierkowski%2Falexa-skill","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/skierkowski%2Falexa-skill/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/skierkowski%2Falexa-skill/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/skierkowski%2Falexa-skill/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/skierkowski","download_url":"https://codeload.github.com/skierkowski/alexa-skill/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/skierkowski%2Falexa-skill/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266948082,"owners_count":24010860,"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","status":"online","status_checked_at":"2025-07-25T02:00:09.625Z","response_time":70,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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-10-03T17:55:48.899Z","updated_at":"2025-07-25T03:17:54.254Z","avatar_url":"https://github.com/skierkowski.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Code Climate](https://codeclimate.com/github/skierkowski/alexa-skill/badges/gpa.svg)](https://codeclimate.com/github/skierkowski/alexa-skill)\n[![Dependency Status](https://gemnasium.com/badges/github.com/skierkowski/alexa-skill.svg)](https://gemnasium.com/github.com/skierkowski/alexa-skill)\n\n\n# Alexa Skill \nA Ruby based DSL to create new Alexa Skills \n\nFirst, install the gem\n```bash\ngem install alexa-skill\n```\n\nNow we'll create a simple hello world app\n**app.rb**\n```ruby\nrequire 'alexa-skill/app'\n\nintent 'MyApp' do\n  utterance 'my name is {name}'\n  slot 'name', ['michelle', 'rich', 'stacie', 'tim', 'emma']\n\n  respond do |slots|\n    \"Hi, #{slots['name']}\"\n  end\nend\n```\n\nThis sets up Rackup to run the app, just like running a Sinatra app\n**config.ru**\n```ruby\nrequire './app'\nrequire 'alexa-skill/server'\n\nrun AlexaSkill::Server\n```\n\nNow we can start the server\n```bash\nrackup\n```\n\nNow we can configure the server in the Alexa Developer Portal.\n```bash\ncurl http://localhost:9292/utterances.txt\ncurl http://localhost:9292/schema.json\ncurl http://localhost:9292/types.txt?type=LIST_OF_NAME\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fskierkowski%2Falexa-skill","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fskierkowski%2Falexa-skill","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fskierkowski%2Falexa-skill/lists"}