-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathapp.json
More file actions
69 lines (69 loc) · 1.51 KB
/
app.json
File metadata and controls
69 lines (69 loc) · 1.51 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
{
"id": "8dc16983-c23c-4086-abcf-b0d71c1f5b7f",
"version": "0.0.1",
"requiredApiVersion": "^1.44.0",
"iconFile": "icon.png",
"author": {
"name": "Dhairyashil Shinde",
"homepage": "dhairyashil10101010@gmail.com",
"support": "dhairyashil10101010@gmail.com"
},
"name": "AI Chat Workflows Automation",
"nameSlug": "ai-chat-workflows-automation",
"classFile": "AiChatWorkflowsAutomationApp.ts",
"description": "App for generating functional automated chat workflows using LLMs.",
"implements": [
"IPostMessageSentToBot",
"IPostMessageSent"
],
"permissions": [
{
"name": "user.read"
},
{
"name": "user.write"
},
{
"name": "ui.interact"
},
{
"name": "room.read"
},
{
"name": "room.write"
},
{
"name": "message.read"
},
{
"name": "message.write"
},
{
"name": "slashcommand"
},
{
"name": "api"
},
{
"name": "networking"
},
{
"name": "threads.read"
},
{
"name": "ui.registerButtons"
},
{
"name": "persistence"
},
{
"name": "scheduler"
},
{
"name": "server-setting.read"
},
{
"name": "server-setting.write"
}
]
}