codex-linux 1.0.1 → 1.0.3
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 +56 -19
- package/abyss-teal-design-system.html +1449 -0
- package/dist/renderer/assets/main-CU1lrRNa.css +1 -0
- package/dist/renderer/assets/main-DQIKNXUA.js +304 -0
- package/dist/renderer/index.html +2 -2
- package/package.json +2 -2
- package/src/renderer/App.tsx +45 -15
- package/src/renderer/components/AgentPanel.tsx +146 -130
- package/src/renderer/components/AutomationPanel.tsx +39 -34
- package/src/renderer/components/ChatInterface.tsx +81 -123
- package/src/renderer/components/Header.tsx +24 -38
- package/src/renderer/components/SettingsPanel.tsx +89 -96
- package/src/renderer/components/Sidebar.tsx +33 -51
- package/src/renderer/components/SkillsPanel.tsx +54 -56
- package/src/renderer/components/WelcomeChat.tsx +199 -0
- package/src/renderer/components/WorktreePanel.tsx +32 -27
- package/src/renderer/components/ui/Button.tsx +17 -19
- package/src/renderer/components/ui/Card.tsx +14 -15
- package/src/renderer/components/ui/Input.tsx +12 -13
- package/src/renderer/index.css +37 -59
- package/src/renderer/styles/abyss-teal.css +405 -0
- package/dist/renderer/assets/main-DJlZQBCA.js +0 -304
- package/dist/renderer/assets/main-N33ZXEr8.css +0 -1
package/README.md
CHANGED
|
@@ -14,21 +14,50 @@ A Linux port of OpenAI Codex - A powerful command center for managing multiple A
|
|
|
14
14
|
|
|
15
15
|
## Installation
|
|
16
16
|
|
|
17
|
-
###
|
|
17
|
+
### Quick Install (Recommended)
|
|
18
18
|
|
|
19
|
-
|
|
20
|
-
-
|
|
21
|
-
|
|
19
|
+
```bash
|
|
20
|
+
curl -fsSL https://raw.githubusercontent.com/ranker-002/codex-linux/master/scripts/install.sh | bash
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
This will install Codex Linux to `~/.local/bin` and add it to your PATH.
|
|
24
|
+
|
|
25
|
+
### Via npm
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
npm install -g codex-linux
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
### System-wide Install
|
|
32
|
+
|
|
33
|
+
```bash
|
|
34
|
+
curl -fsSL https://raw.githubusercontent.com/ranker-002/codex-linux/master/scripts/install.sh | sudo bash -s -- --system
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
### Download AppImage
|
|
38
|
+
|
|
39
|
+
Download the latest AppImage from [GitHub Releases](https://github.com/ranker-002/codex-linux/releases/latest):
|
|
40
|
+
|
|
41
|
+
```bash
|
|
42
|
+
# Download
|
|
43
|
+
wget https://github.com/ranker-002/codex-linux/releases/latest/download/Codex.Linux-1.0.1.AppImage
|
|
44
|
+
|
|
45
|
+
# Make executable
|
|
46
|
+
chmod +x Codex.Linux-1.0.1.AppImage
|
|
47
|
+
|
|
48
|
+
# Run
|
|
49
|
+
./Codex.Linux-1.0.1.AppImage
|
|
50
|
+
```
|
|
22
51
|
|
|
23
52
|
### From Source
|
|
24
53
|
|
|
25
54
|
```bash
|
|
26
55
|
# Clone the repository
|
|
27
|
-
git clone https://github.com/
|
|
56
|
+
git clone https://github.com/ranker-002/codex-linux.git
|
|
28
57
|
cd codex-linux
|
|
29
58
|
|
|
30
59
|
# Install dependencies
|
|
31
|
-
|
|
60
|
+
pnpm install
|
|
32
61
|
|
|
33
62
|
# Build the application
|
|
34
63
|
npm run build
|
|
@@ -40,18 +69,13 @@ npm run dev
|
|
|
40
69
|
npm run package:linux
|
|
41
70
|
```
|
|
42
71
|
|
|
43
|
-
### Pre-built Packages
|
|
44
|
-
|
|
45
|
-
Download the latest release:
|
|
46
|
-
|
|
47
|
-
- **AppImage** (Universal): `Codex-Linux-1.0.0.AppImage`
|
|
48
|
-
- **Debian/Ubuntu**: `codex-linux_1.0.0_amd64.deb`
|
|
49
|
-
- **Fedora/RHEL**: `codex-linux-1.0.0.x86_64.rpm`
|
|
50
|
-
- **Arch Linux**: `codex-linux-1.0.0.pacman`
|
|
51
|
-
|
|
52
72
|
## Quick Start
|
|
53
73
|
|
|
54
|
-
1. **Launch Codex Linux** - Run the application from your applications menu or terminal
|
|
74
|
+
1. **Launch Codex Linux** - Run the application from your applications menu or terminal:
|
|
75
|
+
|
|
76
|
+
```bash
|
|
77
|
+
codex-linux
|
|
78
|
+
```
|
|
55
79
|
|
|
56
80
|
2. **Configure AI Provider**:
|
|
57
81
|
- Go to Settings → AI Providers
|
|
@@ -164,6 +188,12 @@ codex-linux/
|
|
|
164
188
|
|
|
165
189
|
## Development
|
|
166
190
|
|
|
191
|
+
### Prerequisites
|
|
192
|
+
|
|
193
|
+
- Node.js 18+
|
|
194
|
+
- pnpm (recommended) or npm
|
|
195
|
+
- Git
|
|
196
|
+
|
|
167
197
|
### Running Tests
|
|
168
198
|
|
|
169
199
|
```bash
|
|
@@ -183,6 +213,14 @@ npm run lint:fix
|
|
|
183
213
|
npm run typecheck
|
|
184
214
|
```
|
|
185
215
|
|
|
216
|
+
## Uninstall
|
|
217
|
+
|
|
218
|
+
```bash
|
|
219
|
+
codex-linux --uninstall
|
|
220
|
+
# or
|
|
221
|
+
~/.local/bin/uninstall-codex-linux.sh
|
|
222
|
+
```
|
|
223
|
+
|
|
186
224
|
## Contributing
|
|
187
225
|
|
|
188
226
|
1. Fork the repository
|
|
@@ -204,6 +242,5 @@ MIT License - see [LICENSE](LICENSE) file for details.
|
|
|
204
242
|
|
|
205
243
|
## Support
|
|
206
244
|
|
|
207
|
-
- GitHub Issues: [Report bugs or request features](https://github.com/
|
|
208
|
-
-
|
|
209
|
-
- Discord: [Join our community](https://discord.gg/codex-linux)
|
|
245
|
+
- GitHub Issues: [Report bugs or request features](https://github.com/ranker-002/codex-linux/issues)
|
|
246
|
+
- GitHub Releases: [Download latest version](https://github.com/ranker-002/codex-linux/releases)
|