agdi 3.4.0 → 3.4.2
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 +0 -2
- package/dist/index.js +4 -4
- package/package.json +1 -8
package/README.md
CHANGED
|
@@ -85,9 +85,7 @@ agdi config
|
|
|
85
85
|
## Links
|
|
86
86
|
|
|
87
87
|
- **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
88
|
- **Discord**: [discord.gg/pPkZ93Yb](https://discord.gg/pPkZ93Yb)
|
|
90
|
-
- **Issues**: [GitHub Issues](https://github.com/anassagd432/Agdi-dev/issues)
|
|
91
89
|
|
|
92
90
|
## License
|
|
93
91
|
|
package/dist/index.js
CHANGED
|
@@ -5367,7 +5367,7 @@ async function runWizard() {
|
|
|
5367
5367
|
if (wantsSaas) {
|
|
5368
5368
|
ui.setFlags({ saas: true });
|
|
5369
5369
|
}
|
|
5370
|
-
console.log(chalk14.cyan.bold("\n\u{1F3AF} Mission Control (
|
|
5370
|
+
console.log(chalk14.cyan.bold("\n\u{1F3AF} Mission Control (Agdi Setup)"));
|
|
5371
5371
|
console.log(chalk14.gray("I need to calibrate the squad. Answer these 4 questions to define your build.\n"));
|
|
5372
5372
|
const vision = await input5({
|
|
5373
5373
|
message: '1. What are we building today? (e.g. "A Kanban board", "Portfolio site")',
|
|
@@ -6852,7 +6852,7 @@ var HOLIDAY_TAGLINES = {
|
|
|
6852
6852
|
valentines: "Valentines: roses are typed, pipelines are green."
|
|
6853
6853
|
};
|
|
6854
6854
|
var TAGLINES = [
|
|
6855
|
-
"Automation with
|
|
6855
|
+
"Automation with agents: less toil, more shipping.",
|
|
6856
6856
|
"One CLI for chat ops, coding workflows, and controlled chaos.",
|
|
6857
6857
|
"Your terminal just got better at boring work.",
|
|
6858
6858
|
"From prompt to action without tab-sprawl.",
|
|
@@ -7158,7 +7158,7 @@ ${theme.muted("Docs:")} ${docs}
|
|
|
7158
7158
|
}
|
|
7159
7159
|
|
|
7160
7160
|
// src/index.ts
|
|
7161
|
-
var PROGRAM_VERSION = "3.
|
|
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);
|
|
@@ -7627,7 +7627,7 @@ program.command("import <url>").alias("i").description("\u{1F4E6} Import a GitHu
|
|
|
7627
7627
|
throw error;
|
|
7628
7628
|
}
|
|
7629
7629
|
});
|
|
7630
|
-
program.command("wizard").alias("w").description("\u{1F9D9} Start the
|
|
7630
|
+
program.command("wizard").alias("w").description("\u{1F9D9} Start the Agdi Setup Wizard").action(async () => {
|
|
7631
7631
|
try {
|
|
7632
7632
|
await runWizard();
|
|
7633
7633
|
} catch (error) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agdi",
|
|
3
|
-
"version": "3.4.
|
|
3
|
+
"version": "3.4.2",
|
|
4
4
|
"description": "AI-powered app generator - build full-stack apps from natural language in your terminal",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -40,14 +40,7 @@
|
|
|
40
40
|
],
|
|
41
41
|
"author": "Agdi Systems Inc.",
|
|
42
42
|
"license": "MIT",
|
|
43
|
-
"repository": {
|
|
44
|
-
"type": "git",
|
|
45
|
-
"url": "git+https://github.com/anassagd432/Agdi-dev.git"
|
|
46
|
-
},
|
|
47
43
|
"homepage": "https://agdi-dev.vercel.app",
|
|
48
|
-
"bugs": {
|
|
49
|
-
"url": "https://github.com/anassagd432/Agdi-dev/issues"
|
|
50
|
-
},
|
|
51
44
|
"engines": {
|
|
52
45
|
"node": ">=20.0.0"
|
|
53
46
|
},
|