@oxecli/oxe 1.0.43 → 1.0.44
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/cli.js +4 -3
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -26,10 +26,11 @@ export class CLI {
|
|
|
26
26
|
}
|
|
27
27
|
renderHeader(model = default_model) {
|
|
28
28
|
const version = packageInfo.version ?? "unknown";
|
|
29
|
-
const
|
|
30
|
-
const
|
|
29
|
+
const detailText = `Version ${version} Model ${model} Status Ready`;
|
|
30
|
+
const details = `[dim]Version[/dim] ${version} [dim]Model[/dim] ${model} [dim]Status[/dim] Ready`;
|
|
31
|
+
const detailLine = details + " ".repeat(Math.max(0, 69 - detailText.length));
|
|
31
32
|
renderPanel("[bold white]Terminal coding agent[/bold white]\n" +
|
|
32
|
-
|
|
33
|
+
detailLine, "Oxe", "", false, "90", "left");
|
|
33
34
|
}
|
|
34
35
|
saveSession(engine) {
|
|
35
36
|
if (!this.inputItems.length)
|