u-foo 1.2.1 → 1.2.2
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 +11 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,7 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
🤖 Multi-agent AI collaboration framework for orchestrating Claude Code, OpenAI Codex, and custom AI agents.
|
|
4
4
|
|
|
5
|
+
📦 **npm**: [https://www.npmjs.com/package/u-foo](https://www.npmjs.com/package/u-foo)
|
|
6
|
+
|
|
5
7
|
[](https://www.npmjs.com/package/u-foo)
|
|
8
|
+
[](https://www.npmjs.com/package/u-foo)
|
|
6
9
|
[](LICENSE)
|
|
7
10
|
[](https://nodejs.org)
|
|
8
11
|
[](https://www.apple.com/macos)
|
|
@@ -35,14 +38,19 @@ ufoo solves the challenge of coordinating multiple AI coding agents:
|
|
|
35
38
|
## Installation
|
|
36
39
|
|
|
37
40
|
```bash
|
|
38
|
-
# Install globally from npm
|
|
41
|
+
# Install globally from npm (recommended)
|
|
39
42
|
npm install -g u-foo
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
Or install from source:
|
|
40
46
|
|
|
41
|
-
|
|
47
|
+
```bash
|
|
42
48
|
git clone https://github.com/Icyoung/ufoo.git ~/.ufoo
|
|
43
|
-
cd ~/.ufoo && npm link
|
|
49
|
+
cd ~/.ufoo && npm install && npm link
|
|
44
50
|
```
|
|
45
51
|
|
|
52
|
+
After installation, the following commands are available globally: `ufoo`, `uclaude`, `ucodex`, `ucode`.
|
|
53
|
+
|
|
46
54
|
## Quick Start
|
|
47
55
|
|
|
48
56
|
```bash
|