oh-my-agent 6.3.1 → 6.5.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 +14 -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
|
|
|
@@ -262,6 +267,11 @@ See [SPONSORS.md](https://github.com/first-fluke/oh-my-agent/blob/main/SPONSORS.
|
|
|
262
267
|
[](https://www.star-history.com/#first-fluke/oh-my-agent&type=date&legend=bottom-right)
|
|
263
268
|
|
|
264
269
|
|
|
270
|
+
## References
|
|
271
|
+
|
|
272
|
+
- Liang, Q., Wang, H., Liang, Z., & Liu, Y. (2026). *From skill text to skill structure: The scheduling-structural-logical representation for agent skills* (Version 2) [Preprint]. arXiv. https://doi.org/10.48550/arXiv.2604.24026
|
|
273
|
+
|
|
274
|
+
|
|
265
275
|
## License
|
|
266
276
|
|
|
267
277
|
MIT
|