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.
Files changed (2) hide show
  1. package/README.md +11 -3
  2. 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
  [![npm version](https://img.shields.io/npm/v/u-foo.svg)](https://www.npmjs.com/package/u-foo)
8
+ [![npm downloads](https://img.shields.io/npm/dm/u-foo.svg)](https://www.npmjs.com/package/u-foo)
6
9
  [![License](https://img.shields.io/badge/license-UNLICENSED-red.svg)](LICENSE)
7
10
  [![Node](https://img.shields.io/badge/node-%3E%3D18-brightgreen.svg)](https://nodejs.org)
8
11
  [![Platform](https://img.shields.io/badge/platform-macOS-blue.svg)](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
- # Or clone from source
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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "u-foo",
3
- "version": "1.2.1",
3
+ "version": "1.2.2",
4
4
  "description": "Multi-Agent Workspace Protocol. Just add u. claude → uclaude, codex → ucodex.",
5
5
  "license": "SEE LICENSE IN LICENSE",
6
6
  "homepage": "https://ufoo.dev",