@kyma-api/agent 0.1.0 → 0.1.1
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/main.js +3 -0
- package/package.json +1 -1
package/dist/main.js
CHANGED
|
@@ -4376,6 +4376,9 @@ async function main(argv) {
|
|
|
4376
4376
|
initialMessage: parsed.initialMessage,
|
|
4377
4377
|
continueSession: parsed.continueSession
|
|
4378
4378
|
});
|
|
4379
|
+
if (process.stdout.isTTY) {
|
|
4380
|
+
process.stdout.write("\x1B[2J\x1B[H");
|
|
4381
|
+
}
|
|
4379
4382
|
const interactiveMode = new KymaInteractiveMode(runtime, interactiveOptions);
|
|
4380
4383
|
await interactiveMode.run();
|
|
4381
4384
|
}
|