diff --git a/Code of Conduct.md b/Code of Conduct.md new file mode 100644 index 0000000..5b627cf --- /dev/null +++ b/Code of Conduct.md @@ -0,0 +1,4 @@ +## Code of Conduct +This project has adopted the [Amazon Open Source Code of Conduct](https://aws.github.io/code-of-conduct). +For more information see the [Code of Conduct FAQ](https://aws.github.io/code-of-conduct-faq) or contact +opensource-codeofconduct@amazon.com with any additional questions or comments. diff --git a/README.md b/README.md index f7cf156..e060518 100644 --- a/README.md +++ b/README.md @@ -1 +1,12 @@ -# Hindi-Skill \ No newline at end of file +# Build An Alexa Fact Skill + + +This Alexa skill is a basic fact skill. + +## Skill Architecture +Each skill consists of two basic parts, a front end and a back end. +The front end is the voice interface, or VUI. +The voice interface is configured through the voice interaction model. +The back end is where the logic of your skill resides. + +# Hindi-Skill diff --git a/skill.json b/skill.json new file mode 100644 index 0000000..1f12fa6 --- /dev/null +++ b/skill.json @@ -0,0 +1,49 @@ +{ + "skillManifest": { + "publishingInformation": { + "locales": { + "en-US": { + "summary": "Spend some time coming up with an interesting, succinct description.", + "examplePhrases": [ + "Alexa open Minecraft Helper", + "Alexa ask Minecraft Helper what's the recipe for a chest", + "Alexa ask Minecraft Helper how do I get a map" + ], + "keywords": [ + "Minecraft", + "game" + ], + "name": "Minecraft Helper", + "description": "Sample Full Description" + }, + "de-DE": { + "name": "Assistent für Minecraft in Deutsch" + }, + "en-GB": { + "name": "British Minecraft Helper" + } + }, + "isAvailableWorldwide": true, + "testingInstructions": "Sample Testing Instructions.", + "category": "EDUCATION_AND_REFERENCE", + "distributionCountries": [] + }, + "apis": { + "custom": { + "endpoint": { + "sourceDir": "lambda/custom", + "uri": "ask-custom-how-to-default" + } + } + }, + "manifestVersion": "1.0", + "permissions": [], + "privacyAndCompliance": { + "allowsPurchases": false, + "isExportCompliant": true, + "containsAds": false, + "isChildDirected": false, + "usesPersonalInfo": false + } + } +}