open-agents-ai 0.158.0 → 0.159.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 +7 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -57940,7 +57940,8 @@ var init_status_bar = __esm({
57940
57940
  this.cancelMouseIdle();
57941
57941
  this.enableMouseTracking();
57942
57942
  const rows = process.stdout.rows ?? 24;
57943
- const scrollEnd = Math.max(rows - this._currentFooterHeight, this.scrollRegionTop + 1);
57943
+ const pos = this.rowPositions(rows);
57944
+ const scrollEnd = pos.scrollEnd;
57944
57945
  if (this.writeDepth === 1 && !this._origWrite) {
57945
57946
  this._origWrite = this._trueStdoutWrite;
57946
57947
  const origBound = this._trueStdoutWrite;
@@ -58759,7 +58760,11 @@ ${CONTENT_BG_SEQ}`);
58759
58760
  self.copySelection();
58760
58761
  return;
58761
58762
  }
58762
- if (s === "\x1B[67;6u") {
58763
+ if (s === "\x1B[67;6u" || s === "\x1B[27;6;67~") {
58764
+ self.copySelection();
58765
+ return;
58766
+ }
58767
+ if (s === "" && key?.shift) {
58763
58768
  self.copySelection();
58764
58769
  return;
58765
58770
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "open-agents-ai",
3
- "version": "0.158.0",
3
+ "version": "0.159.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",