@codexctl/linux-x64 0.5.14

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.
Files changed (3) hide show
  1. package/README.md +12 -0
  2. package/bin/codexctl +0 -0
  3. package/package.json +25 -0
package/README.md ADDED
@@ -0,0 +1,12 @@
1
+ # @codexctl/linux-x64
2
+
3
+ This is the Linux x86_64 binary for codexctl, a CLI tool for managing multiple AI CLI accounts.
4
+
5
+ ## Installation
6
+
7
+ This package is automatically installed as an optional dependency of the main `codexctl` package. You typically don't need to install this directly.
8
+
9
+ For direct installation:
10
+ ```bash
11
+ npm install @codexctl/linux-x64
12
+ ```
package/bin/codexctl ADDED
Binary file
package/package.json ADDED
@@ -0,0 +1,25 @@
1
+ {
2
+ "name": "@codexctl/linux-x64",
3
+ "version": "0.5.14",
4
+ "description": "The Linux x86_64 binary for codexctl",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "git+https://github.com/repohelper/codexctl.git"
8
+ },
9
+ "keywords": ["codexctl", "cli", "ai", "profile-manager"],
10
+ "author": "Bhanu Korthiwada",
11
+ "license": "MIT",
12
+ "bugs": {
13
+ "url": "https://github.com/repohelper/codexctl/issues"
14
+ },
15
+ "homepage": "https://github.com/repohelper/codexctl",
16
+ "os": ["linux"],
17
+ "cpu": ["x64"],
18
+ "bin": {
19
+ "codexctl": "./bin/codexctl",
20
+ "cdx": "./bin/cdx"
21
+ },
22
+ "files": [
23
+ "bin"
24
+ ]
25
+ }