oh-my-agent 6.3.0 → 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.
Files changed (3) hide show
  1. package/README.md +9 -4
  2. package/bin/cli.js +405 -405
  3. 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
- # One-liner (auto-installs bun & uv if missing)
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
- # Or manual
27
- bunx oh-my-agent@latest
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
- `install.sh` supports macOS/Linux only. On Windows, install `bun` and `uv` manually, then run `bunx oh-my-agent@latest`.
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