-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
180 lines (180 loc) · 4.64 KB
/
Copy pathmanifest.json
File metadata and controls
180 lines (180 loc) · 4.64 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
{
"display_information": {
"name": "Dragon Bot",
"description": "A Slack bot designed to help manage workspaces and provide some fun and useful commands.",
"background_color": "#2c2d30"
},
"features": {
"app_home": {
"home_tab_enabled": false,
"messages_tab_enabled": true,
"messages_tab_read_only_enabled": false
},
"bot_user": {
"display_name": "Dragon Bot",
"always_online": true
},
"assistant_view": {
"assistant_description": "A helpful AI assistant for the Hack Club community.",
"suggested_prompts": []
},
"slash_commands": [
{
"command": "/ping",
"description": "Check the bot's response time",
"should_escape": false
},
{
"command": "/about",
"description": "Learn about Dragon Bot",
"should_escape": false
},
{
"command": "/credits",
"description": "View credits and acknowledgements",
"should_escape": false
},
{
"command": "/help",
"description": "List all available commands",
"should_escape": false
},
{
"command": "/joke",
"description": "Get a random joke",
"usage_hint": "[neutral|chuck|all]",
"should_escape": false
},
{
"command": "/fool",
"description": "Get a random April Fools' video",
"should_escape": false
},
{
"command": "/quote",
"description": "Get a daily or random quote",
"usage_hint": "[daily|random]",
"should_escape": false
},
{
"command": "/rock-paper-scissors",
"description": "Play Rock Paper Scissors with the bot",
"usage_hint": "Rock|Paper|Scissors",
"should_escape": false
},
{
"command": "/dadjoke",
"description": "Get a random dad joke",
"should_escape": false
},
{
"command": "/dog-picture",
"description": "Get a random dog picture",
"should_escape": false
},
{
"command": "/cat-picture",
"description": "Get a random cat picture",
"should_escape": false
},
{
"command": "/xkcd-fetch",
"description": "Fetch a specific XKCD comic by ID",
"usage_hint": "<id>",
"should_escape": false
},
{
"command": "/xkcd-random",
"description": "Get a random XKCD comic",
"should_escape": false
},
{
"command": "/xkcd-latest",
"description": "Get the latest XKCD comic",
"should_escape": false
},
{
"command": "/ask-ai",
"description": "Ask the AI a question",
"usage_hint": "<prompt>",
"should_escape": false
},
{
"command": "/ask-ai-personality",
"description": "Ask the AI with a random personality",
"usage_hint": "<prompt>",
"should_escape": false
},
{
"command": "/generate-image",
"description": "Generate an AI image from a prompt",
"usage_hint": "<prompt>",
"should_escape": false
},
{
"command": "/joindsgschannel",
"description": "Request to join DSG's channel",
"should_escape": false
},
{
"command": "/level",
"description": "Check your XP and level",
"should_escape": false
},
{
"command": "/leaderboard",
"description": "View the top 10 users by XP",
"should_escape": false
},
{
"command": "/join-manager",
"description": "Configure join manager for a channel",
"usage_hint": "setup",
"should_escape": false
}
]
},
"oauth_config": {
"scopes": {
"bot": [
"app_mentions:read",
"assistant:write",
"chat:write",
"commands",
"channels:history",
"channels:read",
"groups:history",
"groups:read",
"im:history",
"mpim:history",
"mpim:read",
"files:write",
"reactions:write",
"channels:manage",
"groups:write",
"usergroups:read",
"usergroups:write"
]
}
},
"settings": {
"event_subscriptions": {
"bot_events": [
"app_mention",
"assistant_thread_started",
"assistant_thread_context_changed",
"member_joined_channel",
"message.channels",
"message.groups",
"message.im",
"message.mpim"
]
},
"interactivity": {
"is_enabled": true
},
"org_deploy_enabled": false,
"socket_mode_enabled": true,
"token_rotation_enabled": false
}
}