open-agents-ai 0.187.121 → 0.187.123

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 +2 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -285375,7 +285375,7 @@ async function startNeovimMode(opts) {
285375
285375
  const ptyRows = Math.max(5, opts.contentRows);
285376
285376
  if (isTTY5) {
285377
285377
  const L = layout();
285378
- const bottomBound = L.contentBottom;
285378
+ const bottomBound = Math.max(L.contentTop, L.contentBottom - 2);
285379
285379
  process.stdout.write(
285380
285380
  `\x1B[${L.contentTop};${bottomBound}r\x1B[${L.contentTop};1H`
285381
285381
  );
@@ -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}}) 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)'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "open-agents-ai",
3
- "version": "0.187.121",
3
+ "version": "0.187.123",
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",