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 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
- ### Prerequisites
17
+ ### Quick Install (Recommended)
18
18
 
19
- - Node.js 18+
20
- - Git
21
- - Linux (Ubuntu 20.04+, Fedora 35+, or Arch Linux)
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/yourusername/codex-linux.git
56
+ git clone https://github.com/ranker-002/codex-linux.git
28
57
  cd codex-linux
29
58
 
30
59
  # Install dependencies
31
- npm install
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/yourusername/codex-linux/issues)
208
- - Documentation: [Full documentation](https://codex-linux.readthedocs.io)
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)