open-agents-ai 0.187.123 → 0.187.124

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 +15 -3
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -285385,7 +285385,7 @@ async function startNeovimMode(opts) {
285385
285385
  'local lp = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"',
285386
285386
  'if not vim.loop.fs_stat(lp) then pcall(vim.fn.system, {"git", "clone", "--filter=blob:none", "--depth=1", "https://github.com/folke/lazy.nvim.git", "--branch=stable", lp}) end',
285387
285387
  "vim.opt.rtp:prepend(lp)",
285388
- 'pcall(function() require("lazy").setup({{"nvim-neo-tree/neo-tree.nvim", branch="v3.x", lazy=false, dependencies={"nvim-lua/plenary.nvim","MunifTanjim/nui.nvim","nvim-tree/nvim-web-devicons"},config=function() require("neo-tree").setup({close_if_last_window=true,enable_git_status=true,filesystem={follow_current_file={enabled=true},use_libuv_file_watcher=true,hijack_netrw_behavior="open_default",filtered_items={hide_dotfiles=false,hide_gitignored=false}},window={position="left",width=30,mappings={"<leftmouse>"="open","<2-LeftMouse>"="open"}}}) end}},{install={colorscheme={}},checker={enabled=false}}) end)',
285388
+ 'pcall(function() require("lazy").setup({{"nvim-neo-tree/neo-tree.nvim", branch="v3.x", lazy=false, dependencies={"nvim-lua/plenary.nvim","MunifTanjim/nui.nvim","nvim-tree/nvim-web-devicons"},config=function() require("neo-tree").setup({close_if_last_window=true,enable_git_status=true,filesystem={follow_current_file={enabled=true},use_libuv_file_watcher=true,hijack_netrw_behavior="open_default",filtered_items={hide_dotfiles=false,hide_gitignored=false}},window={position="left",width=30,mappings={["<leftmouse>"]="open",["<2-LeftMouse>"]="open"}}}) end}},{install={colorscheme={}},checker={enabled=false}}) end)',
285389
285389
  // Open neo-tree sidebar after lazy.nvim finishes loading (needs short defer).
285390
285390
  // Uses pcall so a missing/broken neo-tree doesn't block the editor.
285391
285391
  'vim.defer_fn(function() pcall(vim.cmd, "Neotree show") end, 300)'
@@ -285784,9 +285784,21 @@ function doCleanup(state) {
285784
285784
  }
285785
285785
  _state = null;
285786
285786
  process.stdout.write(
285787
- `\x1B[?1000l\x1B[?1002l\x1B[?1003l\x1B[?1006l\x1B[?1015l\x1B[?1004l\x1B[?2004l\x1B[1;${termRows()}r\x1B[H\x1B[J`
285788
- // clear screen
285787
+ `\x1B[?1000l\x1B[?1002l\x1B[?1003l\x1B[?1006l\x1B[?1015l\x1B[?1004l\x1B[?2004l\x1B[1;${termRows()}r`
285788
+ // reset scroll region to full terminal
285789
285789
  );
285790
+ try {
285791
+ stdin.resume();
285792
+ stdin.read();
285793
+ setTimeout(() => {
285794
+ try {
285795
+ stdin.read();
285796
+ stdin.pause();
285797
+ } catch {
285798
+ }
285799
+ }, 100);
285800
+ } catch {
285801
+ }
285790
285802
  state.opts.onExit?.();
285791
285803
  }
285792
285804
  var isTTY5, PTY_MODE_ENABLE_RE, STDIN_MOUSE_FOCUS_RE, _state;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "open-agents-ai",
3
- "version": "0.187.123",
3
+ "version": "0.187.124",
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",