agdi 2.11.3 → 2.11.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/dist/index.js +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -326,7 +326,7 @@ var THEME = {
|
|
|
326
326
|
var brandGradient = gradient([THEME.cyan, THEME.purple]);
|
|
327
327
|
var errorGradient = gradient([THEME.red, "#b91c1c"]);
|
|
328
328
|
var goldGradient = gradient([THEME.yellow, "#fbbf24"]);
|
|
329
|
-
async function renderBanner(version = "v2.
|
|
329
|
+
async function renderBanner(version = "v2.11.4") {
|
|
330
330
|
console.clear();
|
|
331
331
|
const text = await new Promise((resolve5) => {
|
|
332
332
|
figlet("AGDI", { font: "Slant" }, (err, data) => {
|
|
@@ -6635,7 +6635,7 @@ ${chalk19.cyan(`/_/ |_|\\_, /\\__,_//_/ `)}
|
|
|
6635
6635
|
${chalk19.cyan(` /____/ `)}
|
|
6636
6636
|
`;
|
|
6637
6637
|
var program = new Command();
|
|
6638
|
-
program.name("agdi").description(chalk19.cyan("\u{1F680} AI-powered coding assistant")).version("2.11.
|
|
6638
|
+
program.name("agdi").description(chalk19.cyan("\u{1F680} AI-powered coding assistant")).version("2.11.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");
|
|
6639
6639
|
program.hook("preAction", (thisCommand) => {
|
|
6640
6640
|
const opts = thisCommand.opts();
|
|
6641
6641
|
if (opts.yes) {
|