open-agents-ai 0.187.112 → 0.187.113

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
@@ -278291,7 +278291,8 @@ function hitTestHeaderButton(row, col, termWidth) {
278291
278291
  if (_updateBadgeActive && row === 1 && col >= _updateBadgeCol && col < _updateBadgeCol + _updateBadgeLen) {
278292
278292
  return "/update";
278293
278293
  }
278294
- if (row === 2) {
278294
+ const hdrRow = layout().headerContent;
278295
+ if (row === hdrRow) {
278295
278296
  if (col <= 3)
278296
278297
  return "header-prev";
278297
278298
  if (col >= termWidth - 3)
@@ -278317,6 +278318,7 @@ var SEL_BG, SEL_FG, SEL_START, SEL_END, TextSelection, _clipboardAutoInstallAtte
278317
278318
  var init_text_selection = __esm({
278318
278319
  "packages/cli/dist/tui/text-selection.js"() {
278319
278320
  "use strict";
278321
+ init_layout2();
278320
278322
  SEL_BG = 178;
278321
278323
  SEL_FG = 30;
278322
278324
  SEL_START = `\x1B[${SEL_FG}m\x1B[48;5;${SEL_BG}m`;
@@ -310141,6 +310143,11 @@ ${opts.systemPromptAddition}` : `Working directory: ${repoRoot}`;
310141
310143
  redirect: () => isNeovimActive() ? writeToNeovimOutput : null
310142
310144
  });
310143
310145
  }
310146
+ setContentWriteHook({
310147
+ begin: () => statusBar.beginContentWrite(),
310148
+ end: () => statusBar.endContentWrite(),
310149
+ redirect: () => isNeovimActive() ? writeToNeovimOutput : null
310150
+ });
310144
310151
  let resolvedContextWindowSize = 0;
310145
310152
  queryContextSize(config.backendUrl, config.model, config.apiKey).then((ctxSize) => {
310146
310153
  if (ctxSize) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "open-agents-ai",
3
- "version": "0.187.112",
3
+ "version": "0.187.113",
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",