-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.json
More file actions
111 lines (111 loc) · 2.65 KB
/
Copy pathplugin.json
File metadata and controls
111 lines (111 loc) · 2.65 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
{
"name": "bluebubbles",
"displayName": "BlueBubbles",
"version": "0.2.22",
"description": "iMessage & SMS integration via BlueBubbles server with AI-powered auto-reply",
"icon": {
"lucide": "message-circle"
},
"author": "Kyle Boyer <https://github.com/KyleBoyer>",
"permissions": [
"config:read",
"config:write",
"state:publish",
"tools:register",
"ui:panel",
"ui:banner",
"ui:navigation",
"ui:settings",
"network:fetch",
"http:listen",
"notifications:send",
"navigation:open",
"conversations:read",
"conversations:write",
"agent:backend",
"agent:generate",
"safe-storage"
],
"configSchema": {
"type": "object",
"properties": {
"serverUrl": {
"type": "string",
"description": "BlueBubbles server URL (e.g. http://192.168.1.100:1234)"
},
"password": {
"type": "string",
"description": "BlueBubbles server password"
},
"webhookPort": {
"type": "number",
"default": 8742
},
"webhookHost": {
"type": "string",
"default": "0.0.0.0"
},
"webhookSecret": {
"type": "string",
"description": "Secret for webhook authentication"
},
"notifications": {
"type": "boolean",
"default": true
},
"advancedDebugLogs": {
"type": "boolean",
"default": false,
"description": "Write advanced rolling debug logs to ~/.kai/plugin-logs/bluebubbles/advanced-debug.log"
},
"aiReply": {
"type": "object",
"properties": {
"enabled": {
"type": "boolean",
"default": false
},
"systemPrompt": {
"type": "string"
},
"dmBehavior": {
"type": "string",
"default": "smart"
},
"groupBehavior": {
"type": "string",
"default": "smart"
},
"maxHistoryPerChat": {
"type": "number",
"default": 50
},
"modelOverride": {
"type": "string"
}
}
},
"chunking": {
"type": "object",
"properties": {
"maxLength": {
"type": "number",
"default": 4000
},
"splitMode": {
"type": "string",
"default": "sentence"
}
}
},
"contacts": {
"type": "object",
"description": "Address to name mapping"
},
"chatHistories": {
"type": "object",
"description": "Per-chat conversation history for AI context"
}
}
}
}