codex-linux 1.0.0 → 1.0.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/.github/workflows/ci.yml +0 -27
- package/README.md +40 -39
- package/abyss-teal-design-system.html +1449 -0
- package/dist/renderer/assets/main-AJwWHWV7.js +304 -0
- package/dist/renderer/assets/main-ua9RiJ9-.css +1 -0
- package/dist/renderer/index.html +2 -2
- package/package.json +4 -3
- package/scripts/install.sh +1 -1
- package/src/renderer/App.tsx +45 -15
- package/src/renderer/components/AgentPanel.tsx +94 -125
- 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/.github/workflows/ci.yml
CHANGED
|
@@ -101,33 +101,6 @@ jobs:
|
|
|
101
101
|
env:
|
|
102
102
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
103
103
|
|
|
104
|
-
npm-publish:
|
|
105
|
-
runs-on: ubuntu-latest
|
|
106
|
-
needs: [test, build]
|
|
107
|
-
if: startsWith(github.ref, 'refs/tags/v')
|
|
108
|
-
|
|
109
|
-
steps:
|
|
110
|
-
- uses: actions/checkout@v4
|
|
111
|
-
|
|
112
|
-
- name: Use Node.js
|
|
113
|
-
uses: actions/setup-node@v4
|
|
114
|
-
with:
|
|
115
|
-
node-version: '20.x'
|
|
116
|
-
registry-url: 'https://registry.npmjs.org'
|
|
117
|
-
|
|
118
|
-
- name: Update package version
|
|
119
|
-
run: |
|
|
120
|
-
VERSION=${GITHUB_REF#refs/tags/v}
|
|
121
|
-
cd packages/npm-installer
|
|
122
|
-
npm version $VERSION --no-git-tag-version
|
|
123
|
-
|
|
124
|
-
- name: Publish to NPM
|
|
125
|
-
run: |
|
|
126
|
-
cd packages/npm-installer
|
|
127
|
-
npm publish --access public
|
|
128
|
-
env:
|
|
129
|
-
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
130
|
-
|
|
131
104
|
docker:
|
|
132
105
|
runs-on: ubuntu-latest
|
|
133
106
|
needs: test
|
package/README.md
CHANGED
|
@@ -16,56 +16,48 @@ A Linux port of OpenAI Codex - A powerful command center for managing multiple A
|
|
|
16
16
|
|
|
17
17
|
### Quick Install (Recommended)
|
|
18
18
|
|
|
19
|
-
Choose one of these two universal methods:
|
|
20
|
-
|
|
21
|
-
#### Option 1: Curl (Universal - All Linux Distributions)
|
|
22
|
-
|
|
23
19
|
```bash
|
|
24
|
-
curl -fsSL https://codex-linux
|
|
20
|
+
curl -fsSL https://raw.githubusercontent.com/ranker-002/codex-linux/master/scripts/install.sh | bash
|
|
25
21
|
```
|
|
26
22
|
|
|
27
|
-
This
|
|
23
|
+
This will install Codex Linux to `~/.local/bin` and add it to your PATH.
|
|
28
24
|
|
|
29
|
-
|
|
30
|
-
```bash
|
|
31
|
-
curl -fsSL https://codex-linux.dev/install.sh | bash -s -- --system
|
|
32
|
-
```
|
|
25
|
+
### Via npm
|
|
33
26
|
|
|
34
|
-
**Uninstall:**
|
|
35
27
|
```bash
|
|
36
|
-
|
|
28
|
+
npm install -g codex-linux
|
|
37
29
|
```
|
|
38
30
|
|
|
39
|
-
|
|
31
|
+
### System-wide Install
|
|
40
32
|
|
|
41
33
|
```bash
|
|
42
|
-
|
|
43
|
-
npm install -g codex-linux
|
|
44
|
-
|
|
45
|
-
# Or run without installing
|
|
46
|
-
npx codex-linux
|
|
34
|
+
curl -fsSL https://raw.githubusercontent.com/ranker-002/codex-linux/master/scripts/install.sh | sudo bash -s -- --system
|
|
47
35
|
```
|
|
48
36
|
|
|
49
|
-
|
|
37
|
+
### Download AppImage
|
|
38
|
+
|
|
39
|
+
Download the latest AppImage from [GitHub Releases](https://github.com/ranker-002/codex-linux/releases/latest):
|
|
40
|
+
|
|
50
41
|
```bash
|
|
51
|
-
|
|
52
|
-
|
|
42
|
+
# Download
|
|
43
|
+
wget https://github.com/ranker-002/codex-linux/releases/latest/download/Codex.Linux-1.0.1.AppImage
|
|
53
44
|
|
|
54
|
-
|
|
45
|
+
# Make executable
|
|
46
|
+
chmod +x Codex.Linux-1.0.1.AppImage
|
|
55
47
|
|
|
56
|
-
|
|
57
|
-
-
|
|
58
|
-
|
|
48
|
+
# Run
|
|
49
|
+
./Codex.Linux-1.0.1.AppImage
|
|
50
|
+
```
|
|
59
51
|
|
|
60
52
|
### From Source
|
|
61
53
|
|
|
62
54
|
```bash
|
|
63
55
|
# Clone the repository
|
|
64
|
-
git clone https://github.com/
|
|
56
|
+
git clone https://github.com/ranker-002/codex-linux.git
|
|
65
57
|
cd codex-linux
|
|
66
58
|
|
|
67
59
|
# Install dependencies
|
|
68
|
-
|
|
60
|
+
pnpm install
|
|
69
61
|
|
|
70
62
|
# Build the application
|
|
71
63
|
npm run build
|
|
@@ -77,17 +69,13 @@ npm run dev
|
|
|
77
69
|
npm run package:linux
|
|
78
70
|
```
|
|
79
71
|
|
|
80
|
-
### Pre-built Packages
|
|
81
|
-
|
|
82
|
-
Download the latest release from [GitHub Releases](https://github.com/ranker-org/codex-linux-app/releases):
|
|
83
|
-
|
|
84
|
-
- **AppImage** (Universal): `Codex-Linux-x.x.x.AppImage` - Works on all distributions
|
|
85
|
-
- **Debian/Ubuntu**: `codex-linux_x.x.x_amd64.deb`
|
|
86
|
-
- **Fedora/RHEL**: `codex-linux-x.x.x.x86_64.rpm`
|
|
87
|
-
|
|
88
72
|
## Quick Start
|
|
89
73
|
|
|
90
|
-
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
|
+
```
|
|
91
79
|
|
|
92
80
|
2. **Configure AI Provider**:
|
|
93
81
|
- Go to Settings → AI Providers
|
|
@@ -200,6 +188,12 @@ codex-linux/
|
|
|
200
188
|
|
|
201
189
|
## Development
|
|
202
190
|
|
|
191
|
+
### Prerequisites
|
|
192
|
+
|
|
193
|
+
- Node.js 18+
|
|
194
|
+
- pnpm (recommended) or npm
|
|
195
|
+
- Git
|
|
196
|
+
|
|
203
197
|
### Running Tests
|
|
204
198
|
|
|
205
199
|
```bash
|
|
@@ -219,6 +213,14 @@ npm run lint:fix
|
|
|
219
213
|
npm run typecheck
|
|
220
214
|
```
|
|
221
215
|
|
|
216
|
+
## Uninstall
|
|
217
|
+
|
|
218
|
+
```bash
|
|
219
|
+
codex-linux --uninstall
|
|
220
|
+
# or
|
|
221
|
+
~/.local/bin/uninstall-codex-linux.sh
|
|
222
|
+
```
|
|
223
|
+
|
|
222
224
|
## Contributing
|
|
223
225
|
|
|
224
226
|
1. Fork the repository
|
|
@@ -240,6 +242,5 @@ MIT License - see [LICENSE](LICENSE) file for details.
|
|
|
240
242
|
|
|
241
243
|
## Support
|
|
242
244
|
|
|
243
|
-
- GitHub Issues: [Report bugs or request features](https://github.com/
|
|
244
|
-
-
|
|
245
|
-
- 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)
|