Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions Code of Conduct.md
Original file line number Diff line number Diff line change
@@ -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.
13 changes: 12 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,12 @@
# Hindi-Skill
# Build An Alexa Fact Skill
<img src="https://m.media-amazon.com/images/G/01/mobile-apps/dex/alexa/alexa-skills-kit/tutorials/quiz-game/header._TTH_.png" />

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
49 changes: 49 additions & 0 deletions skill.json
Original file line number Diff line number Diff line change
@@ -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
}
}
}