{"id":16476817,"url":"https://github.com/njuettner/go-alexa","last_synced_at":"2025-10-27T16:31:28.544Z","repository":{"id":61626308,"uuid":"125509902","full_name":"njuettner/go-alexa","owner":"njuettner","description":"Build Alexa Skills in Go using AWS Lambda. Helps you with Alexa requests and responses.","archived":false,"fork":false,"pushed_at":"2020-02-19T13:58:48.000Z","size":199,"stargazers_count":6,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-06-20T11:46:40.344Z","etag":null,"topics":["alexa","alexa-skill","alexa-skills-kit","aws","aws-lambda","go","golang","handler"],"latest_commit_sha":null,"homepage":"","language":"Go","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/njuettner.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":"2018-03-16T11:53:36.000Z","updated_at":"2024-06-20T11:46:40.345Z","dependencies_parsed_at":"2022-10-19T19:00:22.696Z","dependency_job_id":null,"html_url":"https://github.com/njuettner/go-alexa","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/njuettner%2Fgo-alexa","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/njuettner%2Fgo-alexa/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/njuettner%2Fgo-alexa/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/njuettner%2Fgo-alexa/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/njuettner","download_url":"https://codeload.github.com/njuettner/go-alexa/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":219861014,"owners_count":16556008,"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":["alexa","alexa-skill","alexa-skills-kit","aws","aws-lambda","go","golang","handler"],"created_at":"2024-10-11T12:43:43.188Z","updated_at":"2025-10-27T16:31:28.165Z","avatar_url":"https://github.com/njuettner.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Build Alexa Skills in Go using AWS Lambda\n\n## How it works\n\nSee `example/main.go`\n\n### How to upload your code to AWS using Lambda\n\nBuild a binary that runs on Linux and zip it up into a deployment package.\n\n```\n$ GOOS=linux go build -o lambda_handler main.go\n$ zip deployment.zip lambda_handler\n```\n\nAssuming you have already installed `aws-cli`:\n\n**NOTE:**\\\n*function-name*: name which handles the requests (in our example it is alexaDispatchIntentHandler)\\\n*handler*: name of the binary file (here it is lambda_handler)\\\n*region*: in order to run Alexa Skills with AWS Lambda you need to choose **us-west-1**, **us-east-1** or **eu-west-1**\n\n```\n$ aws lambda create-function \\\n  --region eu-west-1 \\\n  --function-name alexaDispatchIntentHandler \\\n  --memory 128 \\\n  --role arn:aws:iam::\u003caccount-id\u003e:role/\u003crole\u003e \\\n  --runtime go1.x \\\n  --zip-file fileb://deployment.zip \\\n  --handler lambda_handler\n```\n\nVerify if your function was uploaded:\n\n![Lambda](/images/lambda.png)\n\n1. Open your function you've uploaded\n2. Add trigger **\"Alexa Skills Kit\"**\n![Alexa Skills Kit](images/alexa-skills-kit-lambda-trigger.png)\n3. Add the Alexa Skill ID from [**Amazon Developer Console**](https://developer.amazon.com)\n4. Save your changes\n\nBesides that, of course you need to add and configure the Alexa Skill in the [**Amazon Developer Console**](https://developer.amazon.com). \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnjuettner%2Fgo-alexa","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnjuettner%2Fgo-alexa","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnjuettner%2Fgo-alexa/lists"}