@uniqueli/openwork 0.1.0
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/LICENSE +21 -0
- package/README.md +79 -0
- package/bin/cli.js +63 -0
- package/out/main/index.js +1989 -0
- package/out/preload/index.js +170 -0
- package/out/renderer/assets/index-BtAM3QNQ.css +3004 -0
- package/out/renderer/assets/index-D4BcB5ZM.js +76686 -0
- package/out/renderer/index.html +16 -0
- package/package.json +110 -0
- package/resources/README.md +16 -0
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8" />
|
|
5
|
+
<title>openwork</title>
|
|
6
|
+
<meta
|
|
7
|
+
http-equiv="Content-Security-Policy"
|
|
8
|
+
content="default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'; img-src 'self' data:"
|
|
9
|
+
/>
|
|
10
|
+
<script type="module" crossorigin src="./assets/index-D4BcB5ZM.js"></script>
|
|
11
|
+
<link rel="stylesheet" crossorigin href="./assets/index-BtAM3QNQ.css">
|
|
12
|
+
</head>
|
|
13
|
+
<body>
|
|
14
|
+
<div id="root"></div>
|
|
15
|
+
</body>
|
|
16
|
+
</html>
|
package/package.json
ADDED
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@uniqueli/openwork",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "A tactical agent interface for deepagentsjs with custom API support",
|
|
5
|
+
"main": "./out/main/index.js",
|
|
6
|
+
"files": [
|
|
7
|
+
"out/",
|
|
8
|
+
"bin/",
|
|
9
|
+
"resources/",
|
|
10
|
+
"LICENSE",
|
|
11
|
+
"README.md"
|
|
12
|
+
],
|
|
13
|
+
"bin": {
|
|
14
|
+
"openwork": "./bin/cli.js"
|
|
15
|
+
},
|
|
16
|
+
"author": "uniqueli",
|
|
17
|
+
"license": "MIT",
|
|
18
|
+
"homepage": "https://github.com/uniqueli/openwork",
|
|
19
|
+
"repository": {
|
|
20
|
+
"type": "git",
|
|
21
|
+
"url": "git+https://github.com/uniqueli/openwork.git"
|
|
22
|
+
},
|
|
23
|
+
"bugs": {
|
|
24
|
+
"url": "https://github.com/uniqueli/openwork/issues"
|
|
25
|
+
},
|
|
26
|
+
"keywords": [
|
|
27
|
+
"ai",
|
|
28
|
+
"agent",
|
|
29
|
+
"electron",
|
|
30
|
+
"deepagents",
|
|
31
|
+
"langchain",
|
|
32
|
+
"langgraph",
|
|
33
|
+
"desktop",
|
|
34
|
+
"custom-api",
|
|
35
|
+
"openai-compatible"
|
|
36
|
+
],
|
|
37
|
+
"engines": {
|
|
38
|
+
"node": ">=18"
|
|
39
|
+
},
|
|
40
|
+
"scripts": {
|
|
41
|
+
"format": "prettier --write .",
|
|
42
|
+
"lint": "eslint --cache .",
|
|
43
|
+
"typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false",
|
|
44
|
+
"typecheck:web": "tsc --noEmit -p tsconfig.web.json --composite false",
|
|
45
|
+
"typecheck": "npm run typecheck:node && npm run typecheck:web",
|
|
46
|
+
"start": "electron-vite preview",
|
|
47
|
+
"dev": "electron-vite dev",
|
|
48
|
+
"build": "npm run typecheck && electron-vite build"
|
|
49
|
+
},
|
|
50
|
+
"dependencies": {
|
|
51
|
+
"electron": "^39.2.6",
|
|
52
|
+
"@langchain/anthropic": "^1.3.10",
|
|
53
|
+
"@langchain/core": "1.1.15",
|
|
54
|
+
"@langchain/langgraph": "^1.0.15",
|
|
55
|
+
"@langchain/langgraph-checkpoint": "^1.0.0",
|
|
56
|
+
"@langchain/langgraph-sdk": "^1.5.3",
|
|
57
|
+
"@langchain/openai": "^1.2.2",
|
|
58
|
+
"@langchain/google-genai": "^2.1.10",
|
|
59
|
+
"@radix-ui/react-context-menu": "^2.2.16",
|
|
60
|
+
"@radix-ui/react-dialog": "^1.1.15",
|
|
61
|
+
"@radix-ui/react-dropdown-menu": "^2.1.16",
|
|
62
|
+
"@radix-ui/react-label": "^2.1.8",
|
|
63
|
+
"@radix-ui/react-popover": "^1.1.15",
|
|
64
|
+
"@radix-ui/react-progress": "^1.1.8",
|
|
65
|
+
"@radix-ui/react-scroll-area": "^1.2.10",
|
|
66
|
+
"@radix-ui/react-select": "^2.2.6",
|
|
67
|
+
"@radix-ui/react-separator": "^1.1.8",
|
|
68
|
+
"@radix-ui/react-slot": "^1.2.4",
|
|
69
|
+
"@radix-ui/react-switch": "^1.2.6",
|
|
70
|
+
"@radix-ui/react-tabs": "^1.1.13",
|
|
71
|
+
"@radix-ui/react-tooltip": "^1.2.8",
|
|
72
|
+
"class-variance-authority": "^0.7.1",
|
|
73
|
+
"clsx": "^2.1.1",
|
|
74
|
+
"deepagents": "^1.5.0",
|
|
75
|
+
"electron-store": "^8.2.0",
|
|
76
|
+
"lucide-react": "^0.469.0",
|
|
77
|
+
"react-markdown": "^10.1.0",
|
|
78
|
+
"react-resizable-panels": "^4.4.0",
|
|
79
|
+
"remark-gfm": "^4.0.1",
|
|
80
|
+
"shiki": "^3.21.0",
|
|
81
|
+
"sql.js": "^1.12.0",
|
|
82
|
+
"tailwind-merge": "^2.6.0",
|
|
83
|
+
"uuid": "^11.0.5",
|
|
84
|
+
"zustand": "^5.0.3"
|
|
85
|
+
},
|
|
86
|
+
"devDependencies": {
|
|
87
|
+
"@electron-toolkit/eslint-config-prettier": "^3.0.0",
|
|
88
|
+
"@electron-toolkit/eslint-config-ts": "^3.1.0",
|
|
89
|
+
"@electron-toolkit/tsconfig": "^2.0.0",
|
|
90
|
+
"@tailwindcss/vite": "^4.0.0",
|
|
91
|
+
"@types/node": "^22.19.1",
|
|
92
|
+
"@types/react": "^19.2.7",
|
|
93
|
+
"@types/react-dom": "^19.2.3",
|
|
94
|
+
"@types/uuid": "^10.0.0",
|
|
95
|
+
"@vitejs/plugin-react": "^5.1.1",
|
|
96
|
+
"electron": "^39.2.6",
|
|
97
|
+
"electron-vite": "^5.0.0",
|
|
98
|
+
"eslint": "^9.39.1",
|
|
99
|
+
"eslint-plugin-react": "^7.37.5",
|
|
100
|
+
"eslint-plugin-react-hooks": "^7.0.1",
|
|
101
|
+
"eslint-plugin-react-refresh": "^0.4.24",
|
|
102
|
+
"prettier": "^3.7.4",
|
|
103
|
+
"react": "^19.2.1",
|
|
104
|
+
"react-dom": "^19.2.1",
|
|
105
|
+
"tailwindcss": "^4.0.0",
|
|
106
|
+
"typescript": "^5.9.3",
|
|
107
|
+
"vite": "^7.2.6"
|
|
108
|
+
},
|
|
109
|
+
"packageManager": "pnpm@10.28.0+sha512.05df71d1421f21399e053fde567cea34d446fa02c76571441bfc1c7956e98e363088982d940465fd34480d4d90a0668bc12362f8aa88000a64e83d0b0e47be48"
|
|
110
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
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.
|