agdi 2.10.3 → 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.
Files changed (3) hide show
  1. package/README.md +29 -62
  2. package/dist/index.js +1 -1
  3. 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.**
@@ -74,6 +81,21 @@ agdi squad "Build a blog with comments" --deploy
74
81
 
75
82
  ---
76
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
+
77
99
  ## 🦸 The Agdi Squad
78
100
 
79
101
  | Agent | Role | What It Does |
@@ -88,8 +110,7 @@ agdi squad "Build a blog with comments" --deploy
88
110
 
89
111
  ## 📖 Commands
90
112
 
91
- ### Core Commands
92
-
113
+ ### Core
93
114
  ```bash
94
115
  agdi # Interactive mode
95
116
  agdi auth # Configure API keys
@@ -97,73 +118,19 @@ agdi squad "..." # 🆕 Multi-agent builder
97
118
  agdi build "..." # Single-agent build
98
119
  ```
99
120
 
100
- ### Squad Options
101
-
102
- ```bash
103
- agdi squad "prompt" --deploy # Auto-deploy to Vercel
104
- agdi squad "prompt" --output ./ # Specify output directory
105
- ```
106
-
107
- ### Other Commands
108
-
121
+ ### Options
109
122
  ```bash
110
- agdi model # Change AI model
111
- agdi chat # Q&A mode
112
- agdi doctor # System health check
113
- agdi auth --status # Show configured providers
123
+ --deploy # Auto-deploy to Vercel
124
+ --output ./dir # Output directory
114
125
  ```
115
126
 
116
127
  ---
117
128
 
118
- ## 🔐 Zero-Touch Deployment
119
-
120
- ### Setup (One-Time)
121
-
122
- ```bash
123
- agdi auth
124
- # Select: 🚀 Deployment (Vercel/Netlify)
125
- # Get token from: https://vercel.com/account/tokens
126
- ```
127
-
128
- ### Deploy
129
-
130
- ```bash
131
- agdi squad "Build a landing page" --deploy
132
-
133
- # Output:
134
- # 🚀 Agdi Squad Activated!
135
- # 📋 Phase 1: Planning... ✓
136
- # ⚡ Phase 2: Execution... ✓
137
- # ✅ Phase 3: Validation... ✓
138
- # 🚀 Phase 4: Deployment... ✓
139
- # 🎉 Live at: https://your-app.vercel.app
140
- ```
141
-
142
- ---
143
-
144
- ## 🤖 Supported AI Providers
145
-
146
- | Provider | Models | Get Key |
147
- |----------|--------|---------|
148
- | 🔥 **Gemini** | Gemini 3 Pro, Flash | [aistudio.google.com](https://aistudio.google.com/apikey) |
149
- | 🧠 **OpenAI** | GPT-5.2, o1 | [platform.openai.com](https://platform.openai.com/api-keys) |
150
- | 💜 **Anthropic** | Claude 4.5 | [console.anthropic.com](https://console.anthropic.com/) |
151
- | 🌊 **DeepSeek** | V3, R1, Coder | [platform.deepseek.com](https://platform.deepseek.com/) |
152
- | 🚀 **xAI** | Grok 3 | [console.x.ai](https://console.x.ai/) |
153
- | 🌐 **OpenRouter** | 100+ models | [openrouter.ai](https://openrouter.ai/keys) |
154
-
155
- ---
156
-
157
129
  ## 🛡️ Security
158
130
 
159
- ```
160
- ┌─────────────────────────────────────────────────┐
161
- 🔐 API Keys → ~/.agdi/config.json (0600) │
162
- │ 📁 Workspace → Commands restricted to cwd │
163
- │ ⚠️ Dangerous → Requires user confirmation │
164
- │ 📝 Audit Log → All operations logged │
165
- └─────────────────────────────────────────────────┘
166
- ```
131
+ - ✅ API Keys stored securely (0600 permissions)
132
+ - ✅ Commands restricted to workspace
133
+ - Dangerous operations require confirmation
167
134
 
168
135
  ---
169
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.3").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");
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) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agdi",
3
- "version": "2.10.3",
3
+ "version": "2.10.4",
4
4
  "description": "AI-powered app generator - build full-stack apps from natural language in your terminal",
5
5
  "type": "module",
6
6
  "bin": {