@_xtribe/cli 2.0.3 β 2.0.4
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/index.js +20 -0
- package/install-tribe-autolaunch.js +272 -0
- package/install-tribe-minimal.js +171 -0
- package/install-tribe.js +162 -41
- package/install.sh +52 -0
- package/package.json +22 -22
- package/setup-path.js +105 -0
- package/tribe-deployment.yaml +761 -0
- package/README.md +0 -207
package/README.md
DELETED
|
@@ -1,207 +0,0 @@
|
|
|
1
|
-
# TRIBE: Multi-Agent AI Development System
|
|
2
|
-
|
|
3
|
-
> **Transform natural language into production-ready code with a team of autonomous AI agents working in parallel**
|
|
4
|
-
|
|
5
|
-
[](https://www.npmjs.com/package/@_xtribe/cli)
|
|
6
|
-
[](https://opensource.org/licenses/MIT)
|
|
7
|
-
|
|
8
|
-
## π Get Started in 30 Seconds
|
|
9
|
-
|
|
10
|
-
```bash
|
|
11
|
-
npx @_xtribe/cli@latest
|
|
12
|
-
```
|
|
13
|
-
|
|
14
|
-
That's it! This single command sets up your entire AI development environment.
|
|
15
|
-
|
|
16
|
-
## π‘ Why TRIBE?
|
|
17
|
-
|
|
18
|
-
**The Problem:** Writing code takes time. Even with AI assistants, you're still copy-pasting, context-switching, and managing everything manually.
|
|
19
|
-
|
|
20
|
-
**The Solution:** TRIBE deploys a team of AI agents that work like real developers. They understand your requirements, write code, create pull requests, and even handle code reviewsβall running securely on your local machine.
|
|
21
|
-
|
|
22
|
-
## π― What Can TRIBE Do?
|
|
23
|
-
|
|
24
|
-
### Real Examples, Real Results
|
|
25
|
-
|
|
26
|
-
```bash
|
|
27
|
-
# Create a complete REST API
|
|
28
|
-
tribe submit-prompt "Build a user management API with JWT auth, password reset, and email verification"
|
|
29
|
-
|
|
30
|
-
# Add features to existing code
|
|
31
|
-
tribe submit-prompt "Add rate limiting and request logging to all API endpoints"
|
|
32
|
-
|
|
33
|
-
# Fix bugs with context
|
|
34
|
-
tribe submit-prompt "Debug why user sessions expire after 5 minutes instead of 24 hours"
|
|
35
|
-
|
|
36
|
-
# Refactor legacy code
|
|
37
|
-
tribe submit-prompt "Refactor the payment processing module to use async/await instead of callbacks"
|
|
38
|
-
```
|
|
39
|
-
|
|
40
|
-
**TRIBE agents will:**
|
|
41
|
-
- β
Break down your request into logical tasks
|
|
42
|
-
- β
Assign specialized agents to each task
|
|
43
|
-
- β
Write code in parallel across multiple feature branches
|
|
44
|
-
- β
Create pull requests with detailed descriptions
|
|
45
|
-
- β
Implement features with best practices
|
|
46
|
-
|
|
47
|
-
## ποΈ How It Works
|
|
48
|
-
|
|
49
|
-
1. **Natural Language Input** β You describe what you want in plain English
|
|
50
|
-
2. **Intelligent Task Breakdown** β TRIBE analyzes and creates an execution plan
|
|
51
|
-
3. **Parallel Agent Execution** β Multiple AI agents work simultaneously
|
|
52
|
-
4. **Code Implementation** β Agents write clean, tested code
|
|
53
|
-
5. **Pull Request Ready** β Review and merge when you're satisfied
|
|
54
|
-
|
|
55
|
-
## π οΈ Quick Start Guide
|
|
56
|
-
|
|
57
|
-
### Prerequisites
|
|
58
|
-
- **Claude Code CLI**: Install with `npm install -g @anthropic-ai/claude-code` and authenticate
|
|
59
|
-
- **Docker** or **Colima**: For running the local Kubernetes cluster
|
|
60
|
-
- **Node.js 16+**: Required for the CLI
|
|
61
|
-
|
|
62
|
-
### Installation
|
|
63
|
-
|
|
64
|
-
```bash
|
|
65
|
-
# 1. Install TRIBE CLI
|
|
66
|
-
npx @_xtribe/cli@latest
|
|
67
|
-
|
|
68
|
-
# 2. Install and authenticate Claude Code CLI (if not already done)
|
|
69
|
-
npm install -g @anthropic-ai/claude-code
|
|
70
|
-
claude auth login
|
|
71
|
-
|
|
72
|
-
# 3. Start TRIBE
|
|
73
|
-
tribe start
|
|
74
|
-
```
|
|
75
|
-
|
|
76
|
-
### Your First Project
|
|
77
|
-
|
|
78
|
-
```bash
|
|
79
|
-
# Interactive mode (recommended for beginners)
|
|
80
|
-
tribe
|
|
81
|
-
|
|
82
|
-
# Or use direct commands
|
|
83
|
-
tribe submit-prompt "Create a TODO app with React, TypeScript, and local storage"
|
|
84
|
-
```
|
|
85
|
-
|
|
86
|
-
Watch as your agents:
|
|
87
|
-
- Create a new repository
|
|
88
|
-
- Set up the project structure
|
|
89
|
-
- Implement all features
|
|
90
|
-
- Write tests
|
|
91
|
-
- Create documentation
|
|
92
|
-
|
|
93
|
-
### Monitor Progress
|
|
94
|
-
|
|
95
|
-
```bash
|
|
96
|
-
# See what your agents are doing (multiple ways)
|
|
97
|
-
tribe tasks # Object-oriented syntax
|
|
98
|
-
tribe list-tasks # Traditional syntax
|
|
99
|
-
|
|
100
|
-
# Check specific task details
|
|
101
|
-
tribe tasks task_abc123 # Object-oriented syntax
|
|
102
|
-
tribe show-task task_abc123 # Traditional syntax
|
|
103
|
-
|
|
104
|
-
# View worker activity
|
|
105
|
-
tribe workers # Object-oriented syntax
|
|
106
|
-
tribe worker-status # Traditional syntax
|
|
107
|
-
```
|
|
108
|
-
|
|
109
|
-
### Export and Review
|
|
110
|
-
|
|
111
|
-
```bash
|
|
112
|
-
# Export all branches locally
|
|
113
|
-
tribe export-branches
|
|
114
|
-
|
|
115
|
-
# Review the code
|
|
116
|
-
git diff main...tribe/feature-todo-app
|
|
117
|
-
|
|
118
|
-
# Merge via the Gitea UI
|
|
119
|
-
open http://localhost:3000
|
|
120
|
-
```
|
|
121
|
-
|
|
122
|
-
## π¨ Key Features
|
|
123
|
-
|
|
124
|
-
### π€ Autonomous Multi-Agent System
|
|
125
|
-
- **Specialized Agents**: Different agents for frontend, backend, testing, and documentation
|
|
126
|
-
- **Parallel Execution**: Multiple agents work simultaneously on different tasks
|
|
127
|
-
- **Smart Coordination**: Agents understand dependencies and work in the right order
|
|
128
|
-
|
|
129
|
-
### π Security & Privacy First
|
|
130
|
-
- **100% Local**: Your code never leaves your machine
|
|
131
|
-
- **Isolated Environment**: Runs in Kubernetes with proper resource limits
|
|
132
|
-
- **Full Control**: Review every line before merging
|
|
133
|
-
|
|
134
|
-
### π οΈ Developer-Friendly
|
|
135
|
-
- **Git-Native**: Each task creates a proper feature branch
|
|
136
|
-
- **Standard PRs**: Review changes like any other pull request
|
|
137
|
-
- **IDE Compatible**: Work with your favorite editor while agents code
|
|
138
|
-
|
|
139
|
-
### π Real-Time Monitoring
|
|
140
|
-
- **Live Progress**: See what each agent is working on
|
|
141
|
-
- **Task Tracking**: Monitor completion status
|
|
142
|
-
- **Performance Metrics**: Understand how your agents are performing
|
|
143
|
-
|
|
144
|
-
## π Use Cases
|
|
145
|
-
|
|
146
|
-
### Startups & MVPs
|
|
147
|
-
Build your MVP faster by describing features in plain English and letting TRIBE handle the implementation.
|
|
148
|
-
|
|
149
|
-
### Enterprise Development
|
|
150
|
-
Automate routine feature development, bug fixes, and refactoring tasks while your team focuses on architecture.
|
|
151
|
-
|
|
152
|
-
### Learning & Experimentation
|
|
153
|
-
See how experienced developers would implement your ideas by reviewing the code TRIBE generates.
|
|
154
|
-
|
|
155
|
-
## π§ Commands Reference
|
|
156
|
-
|
|
157
|
-
TRIBE supports both traditional and object-oriented command syntax:
|
|
158
|
-
|
|
159
|
-
```bash
|
|
160
|
-
# Cluster Management
|
|
161
|
-
tribe start # Start TRIBE cluster
|
|
162
|
-
tribe stop # Stop TRIBE cluster
|
|
163
|
-
tribe status # Check system status
|
|
164
|
-
|
|
165
|
-
# Task Management (two ways)
|
|
166
|
-
tribe submit-prompt "description" # Create new project from prompt
|
|
167
|
-
tribe tasks # List all tasks (object-oriented)
|
|
168
|
-
tribe list-tasks # List all tasks (traditional)
|
|
169
|
-
tribe tasks <id> # Show task details (object-oriented)
|
|
170
|
-
tribe show-task <id> # Show task details (traditional)
|
|
171
|
-
|
|
172
|
-
# Project Management
|
|
173
|
-
tribe projects # List all projects (object-oriented)
|
|
174
|
-
tribe list-projects # List all projects (traditional)
|
|
175
|
-
|
|
176
|
-
# Worker Management
|
|
177
|
-
tribe workers # List workers (object-oriented)
|
|
178
|
-
tribe worker-status # Show worker status (traditional)
|
|
179
|
-
tribe scale-workers <count> # Scale agent count
|
|
180
|
-
|
|
181
|
-
# Advanced Object-Oriented Examples
|
|
182
|
-
tribe pods # List all pods
|
|
183
|
-
tribe pods <name> logs # View pod logs
|
|
184
|
-
tribe services <name> restart # Restart a service
|
|
185
|
-
|
|
186
|
-
# Code Management
|
|
187
|
-
tribe export-branches # Export all branches locally
|
|
188
|
-
tribe export-branch <name> # Export specific branch
|
|
189
|
-
```
|
|
190
|
-
|
|
191
|
-
## π€ Community & Support
|
|
192
|
-
|
|
193
|
-
- **GitHub**: [github.com/TRIBE-INC/0zen](https://github.com/TRIBE-INC/0zen)
|
|
194
|
-
- **Issues**: [github.com/TRIBE-INC/0zen/issues](https://github.com/TRIBE-INC/0zen/issues)
|
|
195
|
-
- **Documentation**: [Full documentation in repository](https://github.com/TRIBE-INC/0zen/blob/main/README.md)
|
|
196
|
-
|
|
197
|
-
## π License
|
|
198
|
-
|
|
199
|
-
MIT License - see [LICENSE](https://github.com/TRIBE-INC/0zen/blob/main/LICENSE) for details.
|
|
200
|
-
|
|
201
|
-
---
|
|
202
|
-
|
|
203
|
-
<div align="center">
|
|
204
|
-
<h3>π Ready to 10x your development speed?</h3>
|
|
205
|
-
<h2><code>npx @_xtribe/cli@latest</code></h2>
|
|
206
|
-
<p><em>Start building faster with TRIBE today</em></p>
|
|
207
|
-
</div>
|