forked from howdyai/botkit-cms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sample_scripts.json
59 lines (59 loc) · 1.11 KB
/
sample_scripts.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[
{
"id": "0-0-0-0-0",
"command": "hello",
"description": "Respond when a human says hello!",
"script": [
{
"topic": "default",
"script": [
{
"text": [
"Hello Human!",
"How do you do?",
"Nice to meet you Human.",
"Hi!",
"How’s it going?",
"Hey!",
"Hey there!",
"Howdy!",
"G`day human!",
"Salut!",
"Ciao!",
"Hola!",
"Shalom!"
]
},
{
"action": "complete"
}
]
}
],
"triggers": [
{
"pattern": "hell.*",
"type": "regexp",
"id": "495"
},
{
"type": "string",
"pattern": "hello"
},
{
"type": "string",
"pattern": "hey"
},
{
"type": "string",
"pattern": "hi"
},
{
"type": "string",
"pattern": "howdy"
}
],
"variables": [],
"modified": "2018-12-12T15:23:41.416Z"
}
]