@oomol-lab/oo-cli-linux-x64-gnu 0.1.5 → 0.1.7
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 +31 -5
- package/bin/oo +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -14,12 +14,38 @@ inspection, cloud task execution, and shell completion generation.
|
|
|
14
14
|
## Installation
|
|
15
15
|
|
|
16
16
|
```bash
|
|
17
|
-
npm install -g @oomol-lab/oo-cli
|
|
18
|
-
# or
|
|
19
|
-
pnpm add -g @oomol-lab/oo-cli
|
|
20
|
-
# or
|
|
21
17
|
bun install -g @oomol-lab/oo-cli
|
|
22
|
-
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## Quick Start
|
|
21
|
+
|
|
22
|
+
1. Log in:
|
|
23
|
+
|
|
24
|
+
```bash
|
|
25
|
+
oo login
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
2. Open Codex and start working with:
|
|
29
|
+
|
|
30
|
+
```text
|
|
31
|
+
$oo generate a QR code for the string OOMOL
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
## Codex Skills
|
|
35
|
+
|
|
36
|
+
On the first `oo` launch, or after running `oo skills install`, Codex will get
|
|
37
|
+
the bundled `oo` skill under `${CODEX_HOME:-~/.codex}/skills/oo`.
|
|
38
|
+
|
|
39
|
+
Then you can use it in Codex, for example:
|
|
40
|
+
|
|
41
|
+
```text
|
|
42
|
+
$oo generate a QR code for the string OOMOL
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
You can also install it explicitly with:
|
|
46
|
+
|
|
47
|
+
```bash
|
|
48
|
+
oo skills install
|
|
23
49
|
```
|
|
24
50
|
|
|
25
51
|
## Documentation
|
package/bin/oo
CHANGED
|
Binary file
|
package/package.json
CHANGED