@oxecli/oxe 1.0.20 → 1.0.21
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/config.js +4 -0
- package/package.json +1 -1
package/dist/config.js
CHANGED
|
@@ -151,6 +151,10 @@ export async function loadOrPrompt() {
|
|
|
151
151
|
let key_data = {};
|
|
152
152
|
for (;;) {
|
|
153
153
|
if (!api_key) {
|
|
154
|
+
// The CLI banner ends with a trailing newline; write one more blank so
|
|
155
|
+
// there is exactly one empty line between the banner and this panel
|
|
156
|
+
// (mirrors Python's console.print() after the banner).
|
|
157
|
+
process.stdout.write("\n");
|
|
154
158
|
renderPanel("[bold white]Oxe Desktop Authentication[/bold white]\n\n" +
|
|
155
159
|
`[dim]Only valid Oxe API keys (starting with [bold]${OXE_KEY_PREFIX}[/bold]) generated on your\n` +
|
|
156
160
|
"Oxe web dashboard are authorized to run this agent.\n\n" +
|