@_xtribe/cli 1.0.0-beta.9 → 1.0.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 +30 -7
- package/install-tribe.js +1110 -410
- package/package.json +8 -10
- package/lima-guestagent.Linux-aarch64.gz +0 -0
- package/tribe +0 -0
- package/tribe-deployment.yaml +0 -448
package/README.md
CHANGED
|
@@ -8,12 +8,18 @@ TRIBE is an AI-powered multi-agent development system that manages your entire d
|
|
|
8
8
|
npx @_xtribe/cli
|
|
9
9
|
```
|
|
10
10
|
|
|
11
|
-
That's it! This single command
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
- ✅
|
|
15
|
-
- ✅
|
|
16
|
-
- ✅
|
|
11
|
+
That's it! This single command works on macOS, Linux, and Windows (WSL2).
|
|
12
|
+
|
|
13
|
+
**What it does:**
|
|
14
|
+
- ✅ Detects your platform automatically
|
|
15
|
+
- ✅ Installs all required tools (kubectl, TRIBE CLI)
|
|
16
|
+
- ✅ Sets up Kubernetes for your platform:
|
|
17
|
+
- **macOS**: Colima with Kubernetes
|
|
18
|
+
- **Linux**: K3s (lightweight Kubernetes)
|
|
19
|
+
- **Windows**: Guides to WSL2 setup
|
|
20
|
+
- ✅ Deploys the complete TRIBE cluster
|
|
21
|
+
- ✅ Configures your environment
|
|
22
|
+
- ✅ Guides you through creating your first project
|
|
17
23
|
|
|
18
24
|
## 🎯 What is TRIBE?
|
|
19
25
|
|
|
@@ -54,7 +60,12 @@ tribe review-task
|
|
|
54
60
|
|
|
55
61
|
## 🛠️ System Requirements
|
|
56
62
|
|
|
57
|
-
|
|
63
|
+
### Supported Platforms
|
|
64
|
+
- **macOS** (Intel & Apple Silicon)
|
|
65
|
+
- **Linux** (Ubuntu, Debian, Fedora, etc.)
|
|
66
|
+
- **Windows** - Use WSL2 with Ubuntu
|
|
67
|
+
|
|
68
|
+
### Hardware Requirements
|
|
58
69
|
- **4GB RAM** minimum (8GB recommended)
|
|
59
70
|
- **20GB disk space**
|
|
60
71
|
- **Node.js 16+**
|
|
@@ -90,6 +101,8 @@ For detailed documentation, visit the [TRIBE Flow Guide](https://github.com/0zen
|
|
|
90
101
|
## 🆘 Troubleshooting
|
|
91
102
|
|
|
92
103
|
### Cluster not starting?
|
|
104
|
+
|
|
105
|
+
**macOS:**
|
|
93
106
|
```bash
|
|
94
107
|
# Check if Colima is running
|
|
95
108
|
colima status
|
|
@@ -99,6 +112,16 @@ colima start --kubernetes
|
|
|
99
112
|
tribe start
|
|
100
113
|
```
|
|
101
114
|
|
|
115
|
+
**Linux:**
|
|
116
|
+
```bash
|
|
117
|
+
# Check if K3s is running
|
|
118
|
+
sudo systemctl status k3s
|
|
119
|
+
|
|
120
|
+
# Start manually if needed
|
|
121
|
+
sudo systemctl start k3s
|
|
122
|
+
tribe start
|
|
123
|
+
```
|
|
124
|
+
|
|
102
125
|
### Port conflicts?
|
|
103
126
|
```bash
|
|
104
127
|
# Check what's using ports
|