{"id":19811019,"url":"https://github.com/accenture/alexia-starter-kit","last_synced_at":"2025-05-01T08:32:21.209Z","repository":{"id":141762256,"uuid":"72871410","full_name":"Accenture/alexia-starter-kit","owner":"Accenture","description":"Starter Kit project with sample Amazon Echo skill created using Alexia Framework","archived":false,"fork":false,"pushed_at":"2017-02-21T20:54:03.000Z","size":72,"stargazers_count":17,"open_issues_count":1,"forks_count":17,"subscribers_count":12,"default_branch":"master","last_synced_at":"2025-04-06T11:51:40.034Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Accenture.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,"governance":null,"roadmap":null,"authors":null}},"created_at":"2016-11-04T17:43:50.000Z","updated_at":"2024-03-25T22:03:59.000Z","dependencies_parsed_at":"2024-01-05T20:53:45.055Z","dependency_job_id":null,"html_url":"https://github.com/Accenture/alexia-starter-kit","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/Accenture%2Falexia-starter-kit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Accenture%2Falexia-starter-kit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Accenture%2Falexia-starter-kit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Accenture%2Falexia-starter-kit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Accenture","download_url":"https://codeload.github.com/Accenture/alexia-starter-kit/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251847828,"owners_count":21653582,"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-11-12T09:24:20.940Z","updated_at":"2025-05-01T08:32:20.966Z","avatar_url":"https://github.com/Accenture.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"![Alexia Starter Kit](alexia-starter-kit-logo-small.png \"Alexia Starter Kit\")\n\n  [![Build Status][travis-image]][travis-url]\n  [![Coverage Status][coveralls-image]][coveralls-url]\n\nThis starter kit is designed to get you up and running with Amazon Echo Skill developement in just couple of minutes. This project contains example application skeleton with unit tests, eslint config, http server startup and Lambda handler.\n\nThis project is based on [Alexia Framework](https://github.com/Accenture/alexia) - check out its repo for full feature list and deploy intructions.\n\nApplication contains fully working `HelloIntent` and `SearchIntent` examples. Feel free to modify or remove the HelloWorld functionality to get started developing your Alexa Skill.\n\n## Quick Start\n\n- clone this repo\n- `npm install`\n- `npm start`\n\n## Project Structure\n\n```\n.\n├── bin/                            # Binaries and utility scripts\n│   └── generate.js                 # Runs speech assets generation\n├── server/                         # Startup scripts for HTTP server \u0026 Lambda handler\n│   ├── lambda-handler.js           # Request handler for AWS Lambda\n│   └── start-http-server.js        # Starts HTTP Hapi server (Hapi is optional dependency)\n├── src/                            # Application source code\n│   ├── app.js                      # Main Alexa Skill entry point\n│   ├── [common/]                   # Common services / utilities - used across intents\n│   └── modules/                    # Intents grouped together in modular structure\n│       ├── hello/                  # Hello Module\n│       │   └── hello-intent.js     # Hello Intent\n│       ├── search/                 # Search Module\n│       │   ├── search-intent.js    # Search Intent\n│       │   └── lookup-service.js   # Service used by Search Intent\n│       └── ...\n└── tests/                          # Unit tests. Should reflect src directory structure\n```\n\nDepending on the complexity of your application you may want to use flat structure and put all intents in the same directory. You are free to do so, but keep in mind that you have to modify the `./src/app.js` file to register all intents using the correct pattern or to register them manually. See [node-glob](https://github.com/isaacs/node-glob) for more pattern matching examples.\n\n## Scripts\n\n- `npm start` - start http server\n- `npm run mon` - start http server using nodemon as watcher\n- `npm run gen` - generate and save speech assets to directory\n- `npm run deploy` - deploy application to AWS Lambda using [Serverless](https://serverless.com/framework/)\n- `npm test` - run unit tests\n- `npm run test:dev` - run unit tests in development mode using nodemon as watcher\n- `npm run lint` - run eslint\n- `npm run lint:fix` - run eslint and automatically fix problems\n\n## Contributing\n\nAlexia Starter Kit is an open source project and we encourage contributions. Please make sure to cover your code with unit tests.\n\nFor more information refer to general guide [Contributing to Open Source](https://guides.github.com/activities/contributing-to-open-source/)\n\n## License\n\n[Apache 2.0](LICENSE)\n\n  [travis-image]: https://img.shields.io/travis/Accenture/alexia-starter-kit/master.svg\n  [travis-url]: https://travis-ci.org/Accenture/alexia-starter-kit\n  [coveralls-image]: https://coveralls.io/repos/github/Accenture/alexia-starter-kit/badge.svg?branch=master\n  [coveralls-url]: https://coveralls.io/github/Accenture/alexia-starter-kit?branch=master\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faccenture%2Falexia-starter-kit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faccenture%2Falexia-starter-kit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faccenture%2Falexia-starter-kit/lists"}