agdi 3.4.1 → 3.4.3
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 +28 -22
- package/dist/index.js +1 -1
- package/package.json +10 -5
package/README.md
CHANGED
|
@@ -12,10 +12,13 @@ npm install -g agdi
|
|
|
12
12
|
# 1. Configure your API keys
|
|
13
13
|
agdi auth
|
|
14
14
|
|
|
15
|
-
# 2. Generate
|
|
15
|
+
# 2. Generate a standard app
|
|
16
16
|
agdi build "A kanban board with drag-and-drop"
|
|
17
17
|
|
|
18
|
-
# 3.
|
|
18
|
+
# 3. Generate a production SaaS blueprint (Next.js + Prisma + Stripe)
|
|
19
|
+
agdi build "Task management platform" --saas
|
|
20
|
+
|
|
21
|
+
# 4. Or use the full multi-agent squad
|
|
19
22
|
agdi squad "SaaS dashboard with auth and Stripe billing"
|
|
20
23
|
```
|
|
21
24
|
|
|
@@ -31,18 +34,18 @@ agdi squad "SaaS dashboard with auth and Stripe billing"
|
|
|
31
34
|
|
|
32
35
|
## Commands
|
|
33
36
|
|
|
34
|
-
| Command | Description |
|
|
35
|
-
|
|
36
|
-
| `agdi` | Launch interactive TUI dashboard |
|
|
37
|
-
| `agdi build <prompt>` | Generate an app from a prompt |
|
|
38
|
-
| `agdi build <prompt> --saas` | SaaS blueprint (Next.js + Prisma + Stripe) |
|
|
39
|
-
| `agdi squad [prompt]` | Multi-agent autonomous build |
|
|
40
|
-
| `agdi squad --deploy` | Build and deploy to Vercel |
|
|
41
|
-
| `agdi
|
|
42
|
-
| `agdi
|
|
43
|
-
| `agdi
|
|
44
|
-
| `agdi doctor` | Environment health check |
|
|
45
|
-
| `agdi import <url>` | Import a GitHub repository |
|
|
37
|
+
| Command | Alias | Description |
|
|
38
|
+
|---------|-------|-------------|
|
|
39
|
+
| `agdi` | — | Launch the minimal interactive TUI dashboard |
|
|
40
|
+
| `agdi build <prompt>` | `b` | Generate an app from a prompt |
|
|
41
|
+
| `agdi build <prompt> --saas` | — | Generate a SaaS blueprint (Next.js + Prisma + Stripe) |
|
|
42
|
+
| `agdi squad [prompt]` | `s` | Multi-agent autonomous build with parallel execution |
|
|
43
|
+
| `agdi squad --deploy` | — | Build and auto-deploy to Vercel/Netlify |
|
|
44
|
+
| `agdi gateway` | `gw` | Start or check the WebSocket native gateway |
|
|
45
|
+
| `agdi channels` | — | Manage omnichannel integrations (Slack, Discord, Telegram) |
|
|
46
|
+
| `agdi auth` | — | Configure API keys securely |
|
|
47
|
+
| `agdi doctor` | `doc` | Environment health check and diagnostics |
|
|
48
|
+
| `agdi import <url>` | `i` | Import and scaffold a GitHub repository |
|
|
46
49
|
|
|
47
50
|
## How It Works
|
|
48
51
|
|
|
@@ -51,10 +54,13 @@ Agdi uses a **multi-agent architecture** with specialized agents:
|
|
|
51
54
|
1. **Manager** — analyzes your request and creates a spec
|
|
52
55
|
2. **Frontend** — generates React + Tailwind components
|
|
53
56
|
3. **Backend** — writes server logic and database schemas
|
|
54
|
-
4. **DevOps** — configures CI/CD and deployment
|
|
57
|
+
4. **DevOps** — configures CI/CD and zero-touch deployment (Vercel/Netlify)
|
|
55
58
|
5. **QA** — tests the output, auto-fixes errors (up to 3 retries)
|
|
56
59
|
|
|
57
|
-
The CLI
|
|
60
|
+
The CLI features **Deep Context Indexing**:
|
|
61
|
+
- **AST Parsing**: Understands Babel/TypeScript syntax, imports, and exports.
|
|
62
|
+
- **Dependency Graphs**: Maps relationships between modules automatically.
|
|
63
|
+
- **Vector Embeddings**: Uses local `@xenova/transformers` (MiniLM) for semantic code search.
|
|
58
64
|
|
|
59
65
|
## Configuration
|
|
60
66
|
|
|
@@ -68,11 +74,13 @@ agdi doctor
|
|
|
68
74
|
agdi config
|
|
69
75
|
```
|
|
70
76
|
|
|
71
|
-
## Security
|
|
77
|
+
## Security & Telemetry
|
|
72
78
|
|
|
73
|
-
|
|
74
|
-
- **
|
|
75
|
-
- **
|
|
79
|
+
Agdi is built with a zero-trust architecture:
|
|
80
|
+
- **Code Firewall** — scans AI-generated code for `eval()`, injection, and hardcoded secrets before writing to disk.
|
|
81
|
+
- **Permission Gate** — all shell commands and file writes require explicit approval (unless explicitly skipped).
|
|
82
|
+
- **Audit Logger** — logs every operation to `~/.agdi/audit.log`.
|
|
83
|
+
- **Telemetry Transparency** — Opt-in telemetry. Run `agdi config telemetry --dry-run` to see exactly what is sent (never source code or keys).
|
|
76
84
|
|
|
77
85
|
## Common Issues
|
|
78
86
|
|
|
@@ -85,9 +93,7 @@ agdi config
|
|
|
85
93
|
## Links
|
|
86
94
|
|
|
87
95
|
- **Web IDE**: [agdi-dev.vercel.app](https://agdi-dev.vercel.app)
|
|
88
|
-
- **GitHub**: [github.com/anassagd432/Agdi-dev](https://github.com/anassagd432/Agdi-dev)
|
|
89
96
|
- **Discord**: [discord.gg/pPkZ93Yb](https://discord.gg/pPkZ93Yb)
|
|
90
|
-
- **Issues**: [GitHub Issues](https://github.com/anassagd432/Agdi-dev/issues)
|
|
91
97
|
|
|
92
98
|
## License
|
|
93
99
|
|
package/dist/index.js
CHANGED
|
@@ -7158,7 +7158,7 @@ ${theme.muted("Docs:")} ${docs}
|
|
|
7158
7158
|
}
|
|
7159
7159
|
|
|
7160
7160
|
// src/index.ts
|
|
7161
|
-
var PROGRAM_VERSION = "3.4.
|
|
7161
|
+
var PROGRAM_VERSION = "3.4.2";
|
|
7162
7162
|
var program = new Command();
|
|
7163
7163
|
program.name("agdi").description("").version(PROGRAM_VERSION).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").option("--saas", "Generate a production SaaS blueprint (Next.js + Prisma + Postgres + Stripe)").option("--no-color", "Disable ANSI colors", false);
|
|
7164
7164
|
configureCliDesign(program, PROGRAM_VERSION);
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agdi",
|
|
3
|
-
"version": "3.4.
|
|
4
|
-
"description": "AI
|
|
3
|
+
"version": "3.4.3",
|
|
4
|
+
"description": "The autonomous AI software engineer. Build full-stack web applications from natural language with a multi-agent squad, deep context indexing, and zero-touch deployment.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
7
|
"agdi": "bin/agdi.js"
|
|
@@ -28,23 +28,28 @@
|
|
|
28
28
|
"keywords": [
|
|
29
29
|
"cli",
|
|
30
30
|
"ai",
|
|
31
|
+
"agent",
|
|
32
|
+
"autonomous",
|
|
31
33
|
"code-generation",
|
|
32
34
|
"app-generator",
|
|
33
35
|
"llm",
|
|
34
36
|
"gpt",
|
|
35
37
|
"claude",
|
|
36
38
|
"gemini",
|
|
39
|
+
"deepseek",
|
|
37
40
|
"react",
|
|
41
|
+
"nextjs",
|
|
38
42
|
"vite",
|
|
39
43
|
"full-stack"
|
|
40
44
|
],
|
|
41
|
-
"author": "Agdi
|
|
45
|
+
"author": "Anass Agdi <anassagd432@gmail.com>",
|
|
42
46
|
"license": "MIT",
|
|
47
|
+
"homepage": "https://agdi-dev.vercel.app",
|
|
43
48
|
"repository": {
|
|
44
49
|
"type": "git",
|
|
45
|
-
"url": "
|
|
50
|
+
"url": "https://github.com/anassagd432/Agdi-dev.git",
|
|
51
|
+
"directory": "packages/cli"
|
|
46
52
|
},
|
|
47
|
-
"homepage": "https://agdi-dev.vercel.app",
|
|
48
53
|
"bugs": {
|
|
49
54
|
"url": "https://github.com/anassagd432/Agdi-dev/issues"
|
|
50
55
|
},
|