bimmo-cli 1.2.0 → 1.2.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/package.json +2 -2
- package/src/interface.js +2 -2
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bimmo-cli",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.2",
|
|
4
4
|
"description": "🌿 CLI universal para IAs com interface verde/lavanda, modo agente (Auto-Edit) e contexto inteligente de projeto.",
|
|
5
5
|
"bin": {
|
|
6
|
-
"bimmo": "
|
|
6
|
+
"bimmo": "bin/bimmo"
|
|
7
7
|
},
|
|
8
8
|
"type": "module",
|
|
9
9
|
"keywords": [
|
package/src/interface.js
CHANGED
|
@@ -102,7 +102,7 @@ export async function startInteractive() {
|
|
|
102
102
|
let config = getConfig();
|
|
103
103
|
|
|
104
104
|
if (!config.provider || !config.apiKey) {
|
|
105
|
-
console.log(lavender(figlet.textSync('bimmo'
|
|
105
|
+
console.log(lavender(figlet.textSync('bimmo')));
|
|
106
106
|
console.log(gray('\nBem-vindo! Vamos configurar seus perfis de IA.\n'));
|
|
107
107
|
await configure();
|
|
108
108
|
return startInteractive();
|
|
@@ -119,7 +119,7 @@ export async function startInteractive() {
|
|
|
119
119
|
});
|
|
120
120
|
|
|
121
121
|
console.clear();
|
|
122
|
-
console.log(lavender(figlet.textSync('bimmo'
|
|
122
|
+
console.log(lavender(figlet.textSync('bimmo')));
|
|
123
123
|
console.log(lavender('─'.repeat(60)));
|
|
124
124
|
console.log(green(` Perfil Ativo: ${bold(config.activeProfile || 'Padrão')} (${config.provider.toUpperCase()})`));
|
|
125
125
|
console.log(green(` Modelo: ${bold(config.model)}`));
|