omnius 1.0.400 → 1.0.401

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.
package/dist/index.js CHANGED
@@ -570718,14 +570718,14 @@ function violatesDirective(directive, input) {
570718
570718
  case "update_todos":
570719
570719
  return !(input.toolName === "todo_write" || isEditTool(input.toolName));
570720
570720
  case "read_authoritative_target":
570721
- return !isEvidenceGatheringTool(input.toolName);
570721
+ return !(isEvidenceGatheringTool(input.toolName) || input.isReadLike);
570722
570722
  case "run_verification":
570723
570723
  return input.toolName !== "shell";
570724
570724
  case "report_blocked":
570725
570725
  case "report_incomplete":
570726
570726
  return !isReportTool(input.toolName);
570727
570727
  case "edit_different_target":
570728
- return !isEditTool(input.toolName) && !isEvidenceGatheringTool(input.toolName);
570728
+ return !isEditTool(input.toolName) && !isEvidenceGatheringTool(input.toolName) && !input.isReadLike;
570729
570729
  case "use_cached_evidence":
570730
570730
  return directive.forbiddenActionFamilies.includes(family);
570731
570731
  default:
@@ -571039,6 +571039,8 @@ var init_focusSupervisor = __esm({
571039
571039
  if (input.toolName === "shell" && input.success) {
571040
571040
  if (this.directive?.requiredNextAction === "run_verification") {
571041
571041
  this.clearSatisfiedDirective("verification ran successfully", input.turn);
571042
+ } else if (input.isReadLike && (this.directive?.requiredNextAction === "read_authoritative_target" || this.directive?.requiredNextAction === "use_cached_evidence")) {
571043
+ this.clearSatisfiedDirective("authoritative evidence read via shell", input.turn);
571042
571044
  }
571043
571045
  return;
571044
571046
  }
@@ -622442,6 +622444,7 @@ ${CONTENT_BG_SEQ}`);
622442
622444
  if (!this.active) return;
622443
622445
  if (this._contentScrollOffset > 0 || this._mouseSelecting) return;
622444
622446
  if (isOverlayActive() || this._suspendContentLayer) return;
622447
+ this.invalidateRowCountCache();
622445
622448
  this.repaintContent();
622446
622449
  }, this.dynamicRefreshFrameMs());
622447
622450
  this._dynamicRefreshCoalesceTimer.unref?.();
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "omnius",
3
- "version": "1.0.400",
3
+ "version": "1.0.401",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "omnius",
9
- "version": "1.0.400",
9
+ "version": "1.0.401",
10
10
  "bundleDependencies": [
11
11
  "image-to-ascii"
12
12
  ],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "omnius",
3
- "version": "1.0.400",
3
+ "version": "1.0.401",
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",