u-foo 1.2.0 → 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 -9
- package/package.json +1 -1
- package/src/code/README.md +1 -9
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
|
|
@@ -83,12 +91,6 @@ ucode-1: Bug fixed. Running tests...
|
|
|
83
91
|
> /decisions
|
|
84
92
|
```
|
|
85
93
|
|
|
86
|
-
To import a local `pi-mono` checkout as a reference snapshot (reference-only):
|
|
87
|
-
|
|
88
|
-
```bash
|
|
89
|
-
npm run import:pi-mono -- /path/to/pi-mono
|
|
90
|
-
```
|
|
91
|
-
|
|
92
94
|
Native self-developed implementation lives under `src/code`.
|
|
93
95
|
|
|
94
96
|
Prepare and verify `ucode` runtime wiring:
|
package/package.json
CHANGED
package/src/code/README.md
CHANGED
|
@@ -2,15 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
`src/code/` is the self-developed core area for `ucode`.
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
- Local reference repo path: `/Users/icy/Code/pi-mono`
|
|
8
|
-
- Upstream reference URL: `https://github.com/badlogic/pi-mono`
|
|
9
|
-
- Primary reference package: `https://github.com/badlogic/pi-mono/tree/main/packages/coding-agent`
|
|
10
|
-
|
|
11
|
-
Note:
|
|
12
|
-
- `pi-mono` is reference-only for architecture and behavior alignment.
|
|
13
|
-
- `ucode` NL core and TUI/runtime orchestration are implemented in `src/code/`.
|
|
5
|
+
`ucode` NL core and TUI/runtime orchestration are implemented in `src/code/`.
|
|
14
6
|
|
|
15
7
|
## Current native scope (phase 1)
|
|
16
8
|
|