agentgui 1.0.9 → 1.0.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/acp-launcher.js +150 -205
- package/database.js +145 -96
- package/package.json +3 -3
- package/server.js +1 -1
- package/static/app.js +114 -53
- package/static/index.html +37 -36
- package/static/styles.css +27 -39
- package/install.sh +0 -147
- package/static/rippleui.css +0 -208
package/static/rippleui.css
DELETED
|
@@ -1,208 +0,0 @@
|
|
|
1
|
-
/* Ripple UI - Minimal CSS Framework */
|
|
2
|
-
|
|
3
|
-
::-webkit-scrollbar {
|
|
4
|
-
width: 8px;
|
|
5
|
-
height: 8px;
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
::-webkit-scrollbar-track {
|
|
9
|
-
background: #f1f5f9;
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
::-webkit-scrollbar-thumb {
|
|
13
|
-
background: #cbd5e1;
|
|
14
|
-
border-radius: 4px;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
::-webkit-scrollbar-thumb:hover {
|
|
18
|
-
background: #94a3b8;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
/* Utility classes */
|
|
22
|
-
.text-center {
|
|
23
|
-
text-align: center;
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
.text-right {
|
|
27
|
-
text-align: right;
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
.text-left {
|
|
31
|
-
text-align: left;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
.text-bold {
|
|
35
|
-
font-weight: 700;
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
.text-muted {
|
|
39
|
-
color: #6b7280;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
.mt-1 { margin-top: 0.25rem; }
|
|
43
|
-
.mt-2 { margin-top: 0.5rem; }
|
|
44
|
-
.mt-3 { margin-top: 0.75rem; }
|
|
45
|
-
.mt-4 { margin-top: 1rem; }
|
|
46
|
-
.mt-5 { margin-top: 1.25rem; }
|
|
47
|
-
.mt-6 { margin-top: 1.5rem; }
|
|
48
|
-
|
|
49
|
-
.mb-1 { margin-bottom: 0.25rem; }
|
|
50
|
-
.mb-2 { margin-bottom: 0.5rem; }
|
|
51
|
-
.mb-3 { margin-bottom: 0.75rem; }
|
|
52
|
-
.mb-4 { margin-bottom: 1rem; }
|
|
53
|
-
.mb-5 { margin-bottom: 1.25rem; }
|
|
54
|
-
.mb-6 { margin-bottom: 1.5rem; }
|
|
55
|
-
|
|
56
|
-
.p-1 { padding: 0.25rem; }
|
|
57
|
-
.p-2 { padding: 0.5rem; }
|
|
58
|
-
.p-3 { padding: 0.75rem; }
|
|
59
|
-
.p-4 { padding: 1rem; }
|
|
60
|
-
.p-5 { padding: 1.25rem; }
|
|
61
|
-
.p-6 { padding: 1.5rem; }
|
|
62
|
-
|
|
63
|
-
.px-1 { padding-left: 0.25rem; padding-right: 0.25rem; }
|
|
64
|
-
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
|
|
65
|
-
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
|
|
66
|
-
.px-4 { padding-left: 1rem; padding-right: 1rem; }
|
|
67
|
-
|
|
68
|
-
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
|
|
69
|
-
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
|
|
70
|
-
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
|
|
71
|
-
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
|
|
72
|
-
|
|
73
|
-
.flex {
|
|
74
|
-
display: flex;
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
.flex-col {
|
|
78
|
-
flex-direction: column;
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
.flex-row {
|
|
82
|
-
flex-direction: row;
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
.items-center {
|
|
86
|
-
align-items: center;
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
.justify-between {
|
|
90
|
-
justify-content: space-between;
|
|
91
|
-
}
|
|
92
|
-
|
|
93
|
-
.justify-center {
|
|
94
|
-
justify-content: center;
|
|
95
|
-
}
|
|
96
|
-
|
|
97
|
-
.justify-end {
|
|
98
|
-
justify-content: flex-end;
|
|
99
|
-
}
|
|
100
|
-
|
|
101
|
-
.gap-1 { gap: 0.25rem; }
|
|
102
|
-
.gap-2 { gap: 0.5rem; }
|
|
103
|
-
.gap-3 { gap: 0.75rem; }
|
|
104
|
-
.gap-4 { gap: 1rem; }
|
|
105
|
-
|
|
106
|
-
.w-full {
|
|
107
|
-
width: 100%;
|
|
108
|
-
}
|
|
109
|
-
|
|
110
|
-
.h-full {
|
|
111
|
-
height: 100%;
|
|
112
|
-
}
|
|
113
|
-
|
|
114
|
-
.rounded {
|
|
115
|
-
border-radius: 0.5rem;
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
.rounded-lg {
|
|
119
|
-
border-radius: 0.75rem;
|
|
120
|
-
}
|
|
121
|
-
|
|
122
|
-
.rounded-full {
|
|
123
|
-
border-radius: 9999px;
|
|
124
|
-
}
|
|
125
|
-
|
|
126
|
-
.border {
|
|
127
|
-
border: 1px solid #e5e7eb;
|
|
128
|
-
}
|
|
129
|
-
|
|
130
|
-
.border-t {
|
|
131
|
-
border-top: 1px solid #e5e7eb;
|
|
132
|
-
}
|
|
133
|
-
|
|
134
|
-
.border-b {
|
|
135
|
-
border-bottom: 1px solid #e5e7eb;
|
|
136
|
-
}
|
|
137
|
-
|
|
138
|
-
.border-r {
|
|
139
|
-
border-right: 1px solid #e5e7eb;
|
|
140
|
-
}
|
|
141
|
-
|
|
142
|
-
.border-l {
|
|
143
|
-
border-left: 1px solid #e5e7eb;
|
|
144
|
-
}
|
|
145
|
-
|
|
146
|
-
.shadow {
|
|
147
|
-
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
|
|
148
|
-
}
|
|
149
|
-
|
|
150
|
-
.shadow-md {
|
|
151
|
-
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
|
|
152
|
-
}
|
|
153
|
-
|
|
154
|
-
.shadow-lg {
|
|
155
|
-
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
|
|
156
|
-
}
|
|
157
|
-
|
|
158
|
-
.bg-white {
|
|
159
|
-
background-color: white;
|
|
160
|
-
}
|
|
161
|
-
|
|
162
|
-
.bg-gray-50 {
|
|
163
|
-
background-color: #f9fafb;
|
|
164
|
-
}
|
|
165
|
-
|
|
166
|
-
.bg-gray-100 {
|
|
167
|
-
background-color: #f3f4f6;
|
|
168
|
-
}
|
|
169
|
-
|
|
170
|
-
.bg-gray-200 {
|
|
171
|
-
background-color: #e5e7eb;
|
|
172
|
-
}
|
|
173
|
-
|
|
174
|
-
.bg-blue-50 {
|
|
175
|
-
background-color: #eff6ff;
|
|
176
|
-
}
|
|
177
|
-
|
|
178
|
-
.bg-blue-100 {
|
|
179
|
-
background-color: #dbeafe;
|
|
180
|
-
}
|
|
181
|
-
|
|
182
|
-
.bg-green-50 {
|
|
183
|
-
background-color: #f0fdf4;
|
|
184
|
-
}
|
|
185
|
-
|
|
186
|
-
.bg-red-50 {
|
|
187
|
-
background-color: #fef2f2;
|
|
188
|
-
}
|
|
189
|
-
|
|
190
|
-
.text-gray-600 {
|
|
191
|
-
color: #4b5563;
|
|
192
|
-
}
|
|
193
|
-
|
|
194
|
-
.text-gray-700 {
|
|
195
|
-
color: #374151;
|
|
196
|
-
}
|
|
197
|
-
|
|
198
|
-
.text-blue-600 {
|
|
199
|
-
color: #2563eb;
|
|
200
|
-
}
|
|
201
|
-
|
|
202
|
-
.text-green-600 {
|
|
203
|
-
color: #16a34a;
|
|
204
|
-
}
|
|
205
|
-
|
|
206
|
-
.text-red-600 {
|
|
207
|
-
color: #dc2626;
|
|
208
|
-
}
|