agdi 2.10.2 → 2.10.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/README.md +50 -92
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -12,6 +12,13 @@
|
|
|
12
12
|
|
|
13
13
|
---
|
|
14
14
|
|
|
15
|
+
### ⚠️ Development Status: Alpha
|
|
16
|
+
|
|
17
|
+
> **Agdi is currently in active development.**
|
|
18
|
+
> Use for experimentation and prototyping. Not recommended for mission-critical production use yet.
|
|
19
|
+
|
|
20
|
+
---
|
|
21
|
+
|
|
15
22
|
## 🎬 What is Agdi?
|
|
16
23
|
|
|
17
24
|
> **One prompt. Full app. Live URL.**
|
|
@@ -26,46 +33,26 @@ agdi squad "Build a todo app with authentication" --deploy
|
|
|
26
33
|
## 🔄 How It Works
|
|
27
34
|
|
|
28
35
|
```
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
│ 🕵️ QA Agent │
|
|
50
|
-
└────────┬────────┘
|
|
51
|
-
│
|
|
52
|
-
┌────────┴────────┐
|
|
53
|
-
│ Build Pass? │
|
|
54
|
-
└────────┬────────┘
|
|
55
|
-
│
|
|
56
|
-
┌──────────────┴──────────────┐
|
|
57
|
-
│ No Yes │
|
|
58
|
-
▼ ▼
|
|
59
|
-
┌─────────────────┐ ┌─────────────────┐
|
|
60
|
-
│ 🔧 Auto-Fix │ │ 🚀 DevOps │
|
|
61
|
-
└────────┬────────┘ └────────┬────────┘
|
|
62
|
-
│ │
|
|
63
|
-
└──────────▶ ◀────────────────┘
|
|
64
|
-
│
|
|
65
|
-
▼
|
|
66
|
-
┌─────────────────┐
|
|
67
|
-
│ 🌐 Live URL! │
|
|
68
|
-
└─────────────────┘
|
|
36
|
+
👤 Your Prompt
|
|
37
|
+
│
|
|
38
|
+
▼
|
|
39
|
+
🧠 Manager Agent ────► 📋 Project Spec
|
|
40
|
+
│
|
|
41
|
+
├───► 🎨 Frontend
|
|
42
|
+
│ │
|
|
43
|
+
└───► ⚙️ Backend
|
|
44
|
+
│
|
|
45
|
+
┌─────────▼─────────┐
|
|
46
|
+
│ 🕵️ QA Agent │
|
|
47
|
+
└─────────┬─────────┘
|
|
48
|
+
│
|
|
49
|
+
Build Pass?
|
|
50
|
+
│ │
|
|
51
|
+
No ─▼─ ──▼── Yes
|
|
52
|
+
│ │
|
|
53
|
+
🔧 Fix 🚀 DevOps Agent
|
|
54
|
+
│ │
|
|
55
|
+
└──────► 🌐 Live URL
|
|
69
56
|
```
|
|
70
57
|
|
|
71
58
|
---
|
|
@@ -94,6 +81,21 @@ agdi squad "Build a blog with comments" --deploy
|
|
|
94
81
|
|
|
95
82
|
---
|
|
96
83
|
|
|
84
|
+
## 🚧 Limitations & Roadmap
|
|
85
|
+
|
|
86
|
+
### Current Limitations
|
|
87
|
+
- Best for **MVPs and prototypes**.
|
|
88
|
+
- Large complex projects may hit **context limits**.
|
|
89
|
+
- Generated code may require **manual review**.
|
|
90
|
+
|
|
91
|
+
### Roadmap
|
|
92
|
+
- [ ] Voice Interface ("Talk to Code")
|
|
93
|
+
- [ ] GitHub Repo Import
|
|
94
|
+
- [ ] E2E Testing Agent
|
|
95
|
+
- [ ] Docker Support
|
|
96
|
+
|
|
97
|
+
---
|
|
98
|
+
|
|
97
99
|
## 🦸 The Agdi Squad
|
|
98
100
|
|
|
99
101
|
| Agent | Role | What It Does |
|
|
@@ -108,71 +110,27 @@ agdi squad "Build a blog with comments" --deploy
|
|
|
108
110
|
|
|
109
111
|
## 📖 Commands
|
|
110
112
|
|
|
113
|
+
### Core
|
|
111
114
|
```bash
|
|
112
|
-
# Core
|
|
113
115
|
agdi # Interactive mode
|
|
114
116
|
agdi auth # Configure API keys
|
|
115
|
-
agdi squad "..." # Multi-agent builder
|
|
117
|
+
agdi squad "..." # 🆕 Multi-agent builder
|
|
116
118
|
agdi build "..." # Single-agent build
|
|
117
|
-
|
|
118
|
-
# Squad Options
|
|
119
|
-
agdi squad "..." --deploy # Auto-deploy to Vercel
|
|
120
|
-
agdi squad "..." --output ./ # Specify output directory
|
|
121
|
-
|
|
122
|
-
# Other
|
|
123
|
-
agdi model # Change AI model
|
|
124
|
-
agdi chat # Q&A mode
|
|
125
|
-
agdi doctor # System health check
|
|
126
|
-
```
|
|
127
|
-
|
|
128
|
-
---
|
|
129
|
-
|
|
130
|
-
## 🔐 Zero-Touch Deployment
|
|
131
|
-
|
|
132
|
-
### Setup (One-Time)
|
|
133
|
-
|
|
134
|
-
```bash
|
|
135
|
-
agdi auth
|
|
136
|
-
# Select: 🚀 Deployment (Vercel/Netlify)
|
|
137
|
-
# Get token from: https://vercel.com/account/tokens
|
|
138
119
|
```
|
|
139
120
|
|
|
140
|
-
###
|
|
141
|
-
|
|
121
|
+
### Options
|
|
142
122
|
```bash
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
# 🚀 Agdi Squad Activated!
|
|
146
|
-
# 📋 Phase 1: Planning... ✓
|
|
147
|
-
# ⚡ Phase 2: Execution... ✓
|
|
148
|
-
# ✅ Phase 3: Validation... ✓
|
|
149
|
-
# 🚀 Phase 4: Deployment... ✓
|
|
150
|
-
# 🎉 Live at: https://your-app.vercel.app
|
|
123
|
+
--deploy # Auto-deploy to Vercel
|
|
124
|
+
--output ./dir # Output directory
|
|
151
125
|
```
|
|
152
126
|
|
|
153
127
|
---
|
|
154
128
|
|
|
155
|
-
## 🤖 Supported AI Providers
|
|
156
|
-
|
|
157
|
-
| Provider | Models | Get Key |
|
|
158
|
-
|----------|--------|---------|
|
|
159
|
-
| 🔥 **Gemini** | Gemini 3 Pro, Flash | [aistudio.google.com](https://aistudio.google.com/apikey) |
|
|
160
|
-
| 🧠 **OpenAI** | GPT-5.2, o1 | [platform.openai.com](https://platform.openai.com/api-keys) |
|
|
161
|
-
| 💜 **Anthropic** | Claude 4.5 | [console.anthropic.com](https://console.anthropic.com/) |
|
|
162
|
-
| 🌊 **DeepSeek** | V3, R1, Coder | [platform.deepseek.com](https://platform.deepseek.com/) |
|
|
163
|
-
| 🚀 **xAI** | Grok 3 | [console.x.ai](https://console.x.ai/) |
|
|
164
|
-
| 🌐 **OpenRouter** | 100+ models | [openrouter.ai](https://openrouter.ai/keys) |
|
|
165
|
-
|
|
166
|
-
---
|
|
167
|
-
|
|
168
129
|
## 🛡️ Security
|
|
169
130
|
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
| 📁 **Workspace** | Commands restricted to current directory |
|
|
174
|
-
| ⚠️ **Dangerous Ops** | Requires user confirmation |
|
|
175
|
-
| 📝 **Audit Log** | All operations logged |
|
|
131
|
+
- ✅ API Keys stored securely (0600 permissions)
|
|
132
|
+
- ✅ Commands restricted to workspace
|
|
133
|
+
- ✅ Dangerous operations require confirmation
|
|
176
134
|
|
|
177
135
|
---
|
|
178
136
|
|
package/dist/index.js
CHANGED
|
@@ -6327,7 +6327,7 @@ ${chalk18.cyan(`/_/ |_|\\_, /\\__,_//_/ `)}
|
|
|
6327
6327
|
${chalk18.cyan(` /____/ `)}
|
|
6328
6328
|
`;
|
|
6329
6329
|
var program = new Command();
|
|
6330
|
-
program.name("agdi").description(chalk18.cyan("\u{1F680} AI-powered coding assistant")).version("2.10.
|
|
6330
|
+
program.name("agdi").description(chalk18.cyan("\u{1F680} AI-powered coding assistant")).version("2.10.4").option("-y, --yes", "Auto-approve all prompts (headless/CI mode)").option("-m, --minimal", "Generate only the requested file(s), not a full app").option("-d, --dry-run", "Show what would be created without writing files");
|
|
6331
6331
|
program.hook("preAction", (thisCommand) => {
|
|
6332
6332
|
const opts = thisCommand.opts();
|
|
6333
6333
|
if (opts.yes) {
|