diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2e7352b --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +ask-resources.json +.ask +.vscode +lambda/node_modules \ No newline at end of file diff --git a/skill-package/interactionModels/custom/ja-JP.json b/skill-package/interactionModels/custom/ja-JP.json new file mode 100644 index 0000000..45cc4d9 --- /dev/null +++ b/skill-package/interactionModels/custom/ja-JP.json @@ -0,0 +1,35 @@ +{ + "interactionModel": { + "languageModel": { + "intents": [ + { + "name": "AMAZON.CancelIntent", + "samples": [] + }, + { + "name": "AMAZON.HelpIntent", + "samples": [] + }, + { + "name": "AMAZON.StopIntent", + "samples": [] + }, + { + "slots": [], + "name": "HelloWorldIntent", + "samples": [ + "hello", + "how are you", + "say hi world", + "say hi", + "hi", + "say hello world", + "say hello" + ] + } + ], + "types": [], + "invocationName": "きっずしふと" + } + } +} diff --git a/skill-package/skill.json b/skill-package/skill.json new file mode 100644 index 0000000..58639b0 --- /dev/null +++ b/skill-package/skill.json @@ -0,0 +1,37 @@ +{ + "manifest": { + "apis": { + "custom": { + "endpoint": { + "uri": "arn:aws:lambda:eu-west-1:905418273489:function:147755bb-cf6c-4601-8738-0db4cca3047e:Release_0" + }, + "interfaces": [], + "locales": {}, + "regions": { + "NA": { + "endpoint": { + "uri": "arn:aws:lambda:us-east-1:905418273489:function:147755bb-cf6c-4601-8738-0db4cca3047e:Release_0" + } + }, + "EU": { + "endpoint": { + "uri": "arn:aws:lambda:eu-west-1:905418273489:function:147755bb-cf6c-4601-8738-0db4cca3047e:Release_0" + } + }, + "FE": { + "endpoint": { + "uri": "arn:aws:lambda:us-west-2:905418273489:function:147755bb-cf6c-4601-8738-0db4cca3047e:Release_0" + } + } + } + } + }, + "publishingInformation": { + "locales": { + "ja-JP": { + "name": "KidShift-skills" + } + } + } + } +}