JamesMcGuigan / alexa-discordian-date

Amazon Echo Skill: Alexa, ask discordian date

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Alexa Discordian Date

Install

Development Build

git clone https://github.com/JamesMcGuigan/alexa-discordian-date
npm install
npm run build # zip -r ./DiscordianDateLambda.zip *

Run AlexaAppServer Locally

node ./server.js
open http://localhost:8080/alexa/alexa-discordian-date

Uploading to AWS

Alexa Tutorials

Schema

Sample Utterances

DiscordianDateTodayIntent	for the discordian date
DiscordianDateTodayIntent	the discordian date
DiscordianDateTodayIntent	for discordian date
DiscordianDateTodayIntent	discordian date
DiscordianDateTodayIntent	for the date
DiscordianDateTodayIntent	the date
DiscordianDateTodayIntent	for date
DiscordianDateTodayIntent	date
DiscordianDateTodayIntent	for the discordian
DiscordianDateTodayIntent	the discordian
DiscordianDateTodayIntent	for discordian
DiscordianDateTodayIntent	discordian
DiscordianDateTodayIntent	for the
DiscordianDateTodayIntent	the
DiscordianDateTodayIntent	for
DiscordianDateTodayIntent	stardate
DiscordianDateIntent	for the discordian date {Date}
DiscordianDateIntent	the discordian date {Date}
DiscordianDateIntent	for discordian date {Date}
DiscordianDateIntent	discordian date {Date}
DiscordianDateIntent	for the date {Date}
DiscordianDateIntent	the date {Date}
DiscordianDateIntent	for date {Date}
DiscordianDateIntent	date {Date}
DiscordianDateIntent	for the discordian {Date}
DiscordianDateIntent	the discordian {Date}
DiscordianDateIntent	for discordian {Date}
DiscordianDateIntent	discordian {Date}
DiscordianDateIntent	for the {Date}
DiscordianDateIntent	the {Date}
DiscordianDateIntent	for {Date}
DiscordianDateIntent	{Date}
NextHolydayIntent       Holyday
NextHolydayIntent       Holiday
NextHolydayIntent       For the next Holiday
NextHolydayIntent       When is the next Holyday
NextHolydayIntent       When to celebrate
NextHolydayIntent       When should we party
NextHolydayIntent       The next party
NextHolydayIntent       The next saints day
NextHolydayIntent       The next apostle's day
NextHolydayIntent       apostle's day
LastHolydayIntent       last Holiday
LastHolydayIntent       last Holyday
LastHolydayIntent       For the last Holiday
LastHolydayIntent       When was the last discordian Holyday
LastHolydayIntent       When was the last saint's day
LastHolydayIntent       When was the last apostle's day
LastHolydayIntent       When should have we celebrated
SeasonIntent            season
SeasonIntent            month
SeasonIntent            which season is this
SeasonIntent            what time of year is it
SeasonIntent            what is the season
SeasonIntent            what is the discordian season
SeasonIntent            season
YearIntent              year
YearIntent              what year is it
YearIntent              what is the year
YearIntent              what is the discordian year
YearIntent              what orbit is it?
SinkIntent              sink
SinkIntent              Sink!

Intent Schema

{
  "intents": [
    {
      "intent": "DiscordianDateTodayIntent",
      "slots": []
    },
    {
      "intent": "DiscordianDateIntent",
      "slots": [
        {
          "name": "Date",
          "type": "AMAZON.DATE"
        }
      ]
    }
  ]
}

Test Event

{
  "version": "1.0",
  "session": {
    "new": false,
    "sessionId": "amzn1.echo-api.session.abeee1a7-aee0-41e6-8192-e6faaed9f5ef",
    "application": {
      "applicationId": "amzn1.echo-sdk-ams.app.000000-d0ed-0000-ad00-000000d00ebe"
    },
    "attributes": {},
    "user": {
      "userId": "amzn1.account.AM3B227HF3FAM1B261HK7FFM3A2"
    }
  },
  "request": {
    "type": "IntentRequest",
    "requestId": "amzn1.echo-api.request.6919844a-733e-4e89-893a-fdcb77e2ef0d",
    "timestamp": "2015-05-13T12:34:56Z",
    "intent": {
      "name": "DiscordianDateIntent",
      "slots": {
        "Date": {
          "value": "tomorrow",
          "name": "Date"
        }
      }
    }
  }
}

About

Amazon Echo Skill: Alexa, ask discordian date


Languages

Language:JavaScript 100.0%