oh-my-agent 6.3.1 → 6.4.0
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 +9 -4
- package/bin/cli.js +394 -394
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -20,14 +20,19 @@ When a workflow resolves an agent to the same vendor as the current runtime, it
|
|
|
20
20
|
## Quick Start
|
|
21
21
|
|
|
22
22
|
```bash
|
|
23
|
-
#
|
|
23
|
+
# macOS / Linux — auto-installs bun & uv if missing
|
|
24
24
|
curl -fsSL https://raw.githubusercontent.com/first-fluke/oh-my-agent/main/cli/install.sh | bash
|
|
25
|
+
```
|
|
25
26
|
|
|
26
|
-
|
|
27
|
-
|
|
27
|
+
```powershell
|
|
28
|
+
# Windows (PowerShell) — auto-installs bun & uv if missing
|
|
29
|
+
irm https://raw.githubusercontent.com/first-fluke/oh-my-agent/main/cli/install.ps1 | iex
|
|
28
30
|
```
|
|
29
31
|
|
|
30
|
-
|
|
32
|
+
```bash
|
|
33
|
+
# Or manual (any OS, requires bun + uv)
|
|
34
|
+
bunx oh-my-agent@latest
|
|
35
|
+
```
|
|
31
36
|
|
|
32
37
|
### Install via Agent Package Manager
|
|
33
38
|
|