open-agents-ai 0.130.0 → 0.131.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.
Files changed (2) hide show
  1. package/dist/index.js +8 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -52968,6 +52968,13 @@ async function startInteractive(config, repoPath) {
52968
52968
  }
52969
52969
  initOaDirectory(repoRoot);
52970
52970
  const savedSettings = resolveSettings(repoRoot);
52971
+ if (process.stdout.isTTY && !isResumed) {
52972
+ process.stdout.write("\x1B[2J\x1B[H");
52973
+ process.stdout.write(`
52974
+ \x1B[2mStarting open-agents...\x1B[0m
52975
+
52976
+ `);
52977
+ }
52971
52978
  let memoryDb = null;
52972
52979
  let taskMemoryStore = null;
52973
52980
  let failureStore = null;
@@ -53036,7 +53043,7 @@ async function startInteractive(config, repoPath) {
53036
53043
  `;
53037
53044
  renderInfo(resumeMsg);
53038
53045
  } else {
53039
- process.stdout.write("\x1B[2J\x1B[H");
53046
+ process.stdout.write("\x1B[H");
53040
53047
  banner.setDesign(createDefaultBanner(version));
53041
53048
  carouselLines = banner.start();
53042
53049
  renderRichHeader({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "open-agents-ai",
3
- "version": "0.130.0",
3
+ "version": "0.131.0",
4
4
  "description": "AI coding agent powered by open-source models (Ollama/vLLM) — interactive TUI with agentic tool-calling loop",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",