Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
waltk99 committed Nov 10, 2019
0 parents commit 1e75881
Show file tree
Hide file tree
Showing 6 changed files with 68 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
__pycache__/
*.qmlc
settings.json

20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# <img src="https://raw.githack.com/FortAwesome/Font-Awesome/master/svgs/solid/robot.svg" card_color="#40DBB0" width="50" height="50" style="vertical-align:bottom"/> Ann
Phrases from leslie knope to ann perkins

## About


## Examples
* "Oh, ann"
* "Nope says"

## Credits
EmmaK

## Category
**Entertainment**
Silly

## Tags
#Parks and recreation

15 changes: 15 additions & 0 deletions __init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
from mycroft import MycroftSkill, intent_file_handler


class Ann(MycroftSkill):
def __init__(self):
MycroftSkill.__init__(self)

@intent_file_handler('ann.intent')
def handle_ann(self, message):
self.speak_dialog('ann')


def create_skill():
return Ann()

5 changes: 5 additions & 0 deletions dialog/en-us/ann.dialog
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
You are a tropical fish
I always forget because you’re so pretty, you’re not used to rejection.
Sweet and beautiful ann has never been dumped before
You beautiful spinster. i will find you love
You’re a beautiful, talented, brilliant, powerful musk-ox. thank you, ox.
22 changes: 22 additions & 0 deletions settingsmeta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Ann
skillMetadata:
sections:
- name: Options << Name of section
fields:
- name: internal_python_variable_name
type: text
label: Setting Friendly Display Name
value: ""
placeholder: demo prompt in the input box
- name: Login << Name of another section
fields:
- type: label
label: Just a little bit of extra info for the user to understand following settings
- name: username
type: text
label: Username
value: ""
- name: password
type: password
label: Password
value: ""
2 changes: 2 additions & 0 deletions vocab/en-us/ann.intent
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Oh, ann
Nope says

0 comments on commit 1e75881

Please sign in to comment.