agdi 2.1.0 → 2.2.0
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
|
@@ -1472,11 +1472,11 @@ ${chalk9.cyan(` ___ __ _ `)}
|
|
|
1472
1472
|
${chalk9.cyan(` / | ____ _____/ /(_) `)}
|
|
1473
1473
|
${chalk9.cyan(` / /| | / __ \`/ __ // / `)}
|
|
1474
1474
|
${chalk9.cyan(` / ___ |/ /_/ / /_/ // / `)}
|
|
1475
|
-
${chalk9.cyan(`/_/ |_|\\
|
|
1475
|
+
${chalk9.cyan(`/_/ |_|\\_, /\\__,_//_/ `)}
|
|
1476
1476
|
${chalk9.cyan(` /____/ `)}
|
|
1477
1477
|
`;
|
|
1478
1478
|
var program = new Command();
|
|
1479
|
-
program.name("agdi").description(chalk9.cyan("\u{1F680} AI-powered coding assistant")).version("2.
|
|
1479
|
+
program.name("agdi").description(chalk9.cyan("\u{1F680} AI-powered coding assistant")).version("2.1.0").configureHelp({
|
|
1480
1480
|
// Show banner only when help is requested
|
|
1481
1481
|
formatHelp: (cmd, helper) => {
|
|
1482
1482
|
return BANNER + "\n" + chalk9.gray(" The Open Source AI Architect") + "\n" + chalk9.gray(" \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\n") + "\n" + helper.formatHelp(cmd, helper);
|