@uniqueli/openwork 0.2.0 → 0.2.2
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/README.md +18 -6
- package/bin/cli.js +15 -14
- package/out/main/index.js +232 -269
- package/out/preload/index.js +12 -9
- package/out/renderer/assets/{index-wQN5U7g5.js → index-BayYTupF.js} +1001 -608
- package/out/renderer/assets/{index-BtAM3QNQ.css → index-iDdc8OMS.css} +86 -17
- package/out/renderer/index.html +2 -2
- package/package.json +8 -7
- package/resources/README.md +0 -16
|
@@ -447,10 +447,6 @@
|
|
|
447
447
|
margin-block: calc(var(--spacing) * 1);
|
|
448
448
|
}
|
|
449
449
|
|
|
450
|
-
.my-4 {
|
|
451
|
-
margin-block: calc(var(--spacing) * 4);
|
|
452
|
-
}
|
|
453
|
-
|
|
454
450
|
.mt-0\.5 {
|
|
455
451
|
margin-top: calc(var(--spacing) * .5);
|
|
456
452
|
}
|
|
@@ -545,6 +541,11 @@
|
|
|
545
541
|
display: inline-flex;
|
|
546
542
|
}
|
|
547
543
|
|
|
544
|
+
.size-1\.5 {
|
|
545
|
+
width: calc(var(--spacing) * 1.5);
|
|
546
|
+
height: calc(var(--spacing) * 1.5);
|
|
547
|
+
}
|
|
548
|
+
|
|
548
549
|
.size-2 {
|
|
549
550
|
width: calc(var(--spacing) * 2);
|
|
550
551
|
height: calc(var(--spacing) * 2);
|
|
@@ -764,6 +765,10 @@
|
|
|
764
765
|
width: 140px;
|
|
765
766
|
}
|
|
766
767
|
|
|
768
|
+
.w-\[200px\] {
|
|
769
|
+
width: 200px;
|
|
770
|
+
}
|
|
771
|
+
|
|
767
772
|
.w-\[420px\] {
|
|
768
773
|
width: 420px;
|
|
769
774
|
}
|
|
@@ -820,6 +825,14 @@
|
|
|
820
825
|
min-width: 8rem;
|
|
821
826
|
}
|
|
822
827
|
|
|
828
|
+
.min-w-\[200px\] {
|
|
829
|
+
min-width: 200px;
|
|
830
|
+
}
|
|
831
|
+
|
|
832
|
+
.min-w-max {
|
|
833
|
+
min-width: max-content;
|
|
834
|
+
}
|
|
835
|
+
|
|
823
836
|
.flex-1 {
|
|
824
837
|
flex: 1;
|
|
825
838
|
}
|
|
@@ -987,12 +1000,6 @@
|
|
|
987
1000
|
margin-block-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-y-reverse)));
|
|
988
1001
|
}
|
|
989
1002
|
|
|
990
|
-
:where(.space-y-6 > :not(:last-child)) {
|
|
991
|
-
--tw-space-y-reverse: 0;
|
|
992
|
-
margin-block-start: calc(calc(var(--spacing) * 6) * var(--tw-space-y-reverse));
|
|
993
|
-
margin-block-end: calc(calc(var(--spacing) * 6) * calc(1 - var(--tw-space-y-reverse)));
|
|
994
|
-
}
|
|
995
|
-
|
|
996
1003
|
.truncate {
|
|
997
1004
|
text-overflow: ellipsis;
|
|
998
1005
|
white-space: nowrap;
|
|
@@ -1053,6 +1060,11 @@
|
|
|
1053
1060
|
border-top-width: 1px;
|
|
1054
1061
|
}
|
|
1055
1062
|
|
|
1063
|
+
.border-t-2 {
|
|
1064
|
+
border-top-style: var(--tw-border-style);
|
|
1065
|
+
border-top-width: 2px;
|
|
1066
|
+
}
|
|
1067
|
+
|
|
1056
1068
|
.border-r {
|
|
1057
1069
|
border-right-style: var(--tw-border-style);
|
|
1058
1070
|
border-right-width: 1px;
|
|
@@ -1078,6 +1090,21 @@
|
|
|
1078
1090
|
border-left-width: 1px;
|
|
1079
1091
|
}
|
|
1080
1092
|
|
|
1093
|
+
.border-dashed {
|
|
1094
|
+
--tw-border-style: dashed;
|
|
1095
|
+
border-style: dashed;
|
|
1096
|
+
}
|
|
1097
|
+
|
|
1098
|
+
.\!border-amber-500\/50 {
|
|
1099
|
+
border-color: #f99c0080 !important;
|
|
1100
|
+
}
|
|
1101
|
+
|
|
1102
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1103
|
+
.\!border-amber-500\/50 {
|
|
1104
|
+
border-color: color-mix(in oklab, var(--color-amber-500) 50%, transparent) !important;
|
|
1105
|
+
}
|
|
1106
|
+
}
|
|
1107
|
+
|
|
1081
1108
|
.border-amber-500\/20 {
|
|
1082
1109
|
border-color: #f99c0033;
|
|
1083
1110
|
}
|
|
@@ -1176,6 +1203,22 @@
|
|
|
1176
1203
|
border-color: #0000;
|
|
1177
1204
|
}
|
|
1178
1205
|
|
|
1206
|
+
.border-t-border {
|
|
1207
|
+
border-top-color: var(--border);
|
|
1208
|
+
}
|
|
1209
|
+
|
|
1210
|
+
.border-t-status-info {
|
|
1211
|
+
border-top-color: var(--status-info);
|
|
1212
|
+
}
|
|
1213
|
+
|
|
1214
|
+
.border-t-status-nominal {
|
|
1215
|
+
border-top-color: var(--status-nominal);
|
|
1216
|
+
}
|
|
1217
|
+
|
|
1218
|
+
.border-t-status-warning {
|
|
1219
|
+
border-top-color: var(--status-warning);
|
|
1220
|
+
}
|
|
1221
|
+
|
|
1179
1222
|
.border-t-transparent {
|
|
1180
1223
|
border-top-color: #0000;
|
|
1181
1224
|
}
|
|
@@ -1188,6 +1231,16 @@
|
|
|
1188
1231
|
border-left-color: #0000;
|
|
1189
1232
|
}
|
|
1190
1233
|
|
|
1234
|
+
.\!bg-amber-500\/5 {
|
|
1235
|
+
background-color: #f99c000d !important;
|
|
1236
|
+
}
|
|
1237
|
+
|
|
1238
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1239
|
+
.\!bg-amber-500\/5 {
|
|
1240
|
+
background-color: color-mix(in oklab, var(--color-amber-500) 5%, transparent) !important;
|
|
1241
|
+
}
|
|
1242
|
+
}
|
|
1243
|
+
|
|
1191
1244
|
.bg-accent\/10 {
|
|
1192
1245
|
background-color: var(--accent);
|
|
1193
1246
|
}
|
|
@@ -1246,6 +1299,20 @@
|
|
|
1246
1299
|
}
|
|
1247
1300
|
}
|
|
1248
1301
|
|
|
1302
|
+
.bg-blue-500 {
|
|
1303
|
+
background-color: var(--color-blue-500);
|
|
1304
|
+
}
|
|
1305
|
+
|
|
1306
|
+
.bg-blue-500\/20 {
|
|
1307
|
+
background-color: #3080ff33;
|
|
1308
|
+
}
|
|
1309
|
+
|
|
1310
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1311
|
+
.bg-blue-500\/20 {
|
|
1312
|
+
background-color: color-mix(in oklab, var(--color-blue-500) 20%, transparent);
|
|
1313
|
+
}
|
|
1314
|
+
}
|
|
1315
|
+
|
|
1249
1316
|
.bg-border, .bg-border\/50 {
|
|
1250
1317
|
background-color: var(--border);
|
|
1251
1318
|
}
|
|
@@ -1284,16 +1351,10 @@
|
|
|
1284
1351
|
background-color: var(--muted);
|
|
1285
1352
|
}
|
|
1286
1353
|
|
|
1287
|
-
.bg-muted-foreground
|
|
1354
|
+
.bg-muted-foreground {
|
|
1288
1355
|
background-color: var(--muted-foreground);
|
|
1289
1356
|
}
|
|
1290
1357
|
|
|
1291
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
1292
|
-
.bg-muted-foreground\/20 {
|
|
1293
|
-
background-color: color-mix(in oklab, var(--muted-foreground) 20%, transparent);
|
|
1294
|
-
}
|
|
1295
|
-
}
|
|
1296
|
-
|
|
1297
1358
|
.bg-muted\/30 {
|
|
1298
1359
|
background-color: var(--muted);
|
|
1299
1360
|
}
|
|
@@ -1931,6 +1992,10 @@
|
|
|
1931
1992
|
opacity: 1;
|
|
1932
1993
|
}
|
|
1933
1994
|
|
|
1995
|
+
.opacity-\[0\.03\] {
|
|
1996
|
+
opacity: .03;
|
|
1997
|
+
}
|
|
1998
|
+
|
|
1934
1999
|
.shadow-lg {
|
|
1935
2000
|
--tw-shadow: 0 10px 15px -3px var(--tw-shadow-color, #0000001a), 0 4px 6px -4px var(--tw-shadow-color, #0000001a);
|
|
1936
2001
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
@@ -2034,6 +2099,10 @@
|
|
|
2034
2099
|
}
|
|
2035
2100
|
|
|
2036
2101
|
@media (hover: hover) {
|
|
2102
|
+
.hover\:border-border-emphasis:hover {
|
|
2103
|
+
border-color: var(--border-emphasis);
|
|
2104
|
+
}
|
|
2105
|
+
|
|
2037
2106
|
.hover\:bg-accent\/50:hover {
|
|
2038
2107
|
background-color: var(--accent);
|
|
2039
2108
|
}
|
package/out/renderer/index.html
CHANGED
|
@@ -7,8 +7,8 @@
|
|
|
7
7
|
http-equiv="Content-Security-Policy"
|
|
8
8
|
content="default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'; img-src 'self' data:"
|
|
9
9
|
/>
|
|
10
|
-
<script type="module" crossorigin src="./assets/index-
|
|
11
|
-
<link rel="stylesheet" crossorigin href="./assets/index-
|
|
10
|
+
<script type="module" crossorigin src="./assets/index-BayYTupF.js"></script>
|
|
11
|
+
<link rel="stylesheet" crossorigin href="./assets/index-iDdc8OMS.css">
|
|
12
12
|
</head>
|
|
13
13
|
<body>
|
|
14
14
|
<div id="root"></div>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniqueli/openwork",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.2",
|
|
4
4
|
"description": "A tactical agent interface for deepagentsjs with multiple custom API support",
|
|
5
5
|
"main": "./out/main/index.js",
|
|
6
6
|
"files": [
|
|
@@ -48,14 +48,13 @@
|
|
|
48
48
|
"build": "npm run typecheck && electron-vite build"
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
|
-
"
|
|
52
|
-
"@langchain/
|
|
53
|
-
"@langchain/
|
|
51
|
+
"@langchain/anthropic": "^1.3.11",
|
|
52
|
+
"@langchain/core": "1.1.16",
|
|
53
|
+
"@langchain/google-genai": "^2.1.12",
|
|
54
54
|
"@langchain/langgraph": "^1.0.15",
|
|
55
55
|
"@langchain/langgraph-checkpoint": "^1.0.0",
|
|
56
56
|
"@langchain/langgraph-sdk": "^1.5.3",
|
|
57
|
-
"@langchain/openai": "^1.2.
|
|
58
|
-
"@langchain/google-genai": "^2.1.10",
|
|
57
|
+
"@langchain/openai": "^1.2.3",
|
|
59
58
|
"@radix-ui/react-context-menu": "^2.2.16",
|
|
60
59
|
"@radix-ui/react-dialog": "^1.1.15",
|
|
61
60
|
"@radix-ui/react-dropdown-menu": "^2.1.16",
|
|
@@ -71,8 +70,10 @@
|
|
|
71
70
|
"@radix-ui/react-tooltip": "^1.2.8",
|
|
72
71
|
"class-variance-authority": "^0.7.1",
|
|
73
72
|
"clsx": "^2.1.1",
|
|
74
|
-
"deepagents": "^1.5.
|
|
73
|
+
"deepagents": "^1.5.1",
|
|
74
|
+
"electron": "^39.2.6",
|
|
75
75
|
"electron-store": "^8.2.0",
|
|
76
|
+
"langchain": "^1.2.12",
|
|
76
77
|
"lucide-react": "^0.469.0",
|
|
77
78
|
"react-markdown": "^10.1.0",
|
|
78
79
|
"react-resizable-panels": "^4.4.0",
|
package/resources/README.md
DELETED
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
# Resources
|
|
2
|
-
|
|
3
|
-
Place your app icon here:
|
|
4
|
-
|
|
5
|
-
- `icon.png` - PNG icon (512x512 recommended, used for macOS dock)
|
|
6
|
-
- `icon.icns` - macOS icon (optional, for packaged apps)
|
|
7
|
-
- `icon.ico` - Windows icon (optional, for packaged apps)
|
|
8
|
-
|
|
9
|
-
## Creating an Icon
|
|
10
|
-
|
|
11
|
-
You can create an icon using tools like:
|
|
12
|
-
- [Figma](https://figma.com)
|
|
13
|
-
- [IconKitchen](https://icon.kitchen)
|
|
14
|
-
- [MakeAppIcon](https://makeappicon.com)
|
|
15
|
-
|
|
16
|
-
Export as 512x512 PNG for best results.
|