omnius 1.0.484 → 1.0.485

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
@@ -576696,6 +576696,24 @@ var init_focusSupervisor = __esm({
576696
576696
  this.clearSatisfiedDirective(input.runtimeAuthored ? "cached authoritative evidence reused" : "authoritative evidence already available", input.turn);
576697
576697
  return;
576698
576698
  }
576699
+ if (input.toolName === "shell" && input.success) {
576700
+ if (this.convergenceBreaker) {
576701
+ const fam = actionFamily(input.toolName, input.args, this.familyCwd);
576702
+ this.convergenceBreaker.resolve(fam);
576703
+ this.convergenceFamilyCounts.delete(fam);
576704
+ }
576705
+ if (this.directive?.requiredNextAction === "run_verification") {
576706
+ this.clearSatisfiedDirective(input.runtimeAuthored ? "cached verification replay consumed" : "verification ran successfully", input.turn);
576707
+ } else if (input.isReadLike && this.directive?.requiredNextAction === "read_authoritative_target") {
576708
+ this.clearSatisfiedDirective("authoritative evidence read via shell", input.turn);
576709
+ } else if (!input.isReadLike && this.directive?.requiredNextAction === "use_cached_evidence") {
576710
+ this.clearSatisfiedDirective("distinct shell action executed after cached evidence", input.turn);
576711
+ } else if (input.runtimeAuthored) {
576712
+ this.lastDecision = "runtime_authored_not_satisfied";
576713
+ this.lastReason = "runtime-authored control result did not execute the requested tool";
576714
+ }
576715
+ return;
576716
+ }
576699
576717
  if (input.runtimeAuthored) {
576700
576718
  this.lastDecision = "runtime_authored_not_satisfied";
576701
576719
  this.lastReason = "runtime-authored control result did not execute the requested tool";
@@ -576725,21 +576743,6 @@ var init_focusSupervisor = __esm({
576725
576743
  }
576726
576744
  return;
576727
576745
  }
576728
- if (input.toolName === "shell" && input.success) {
576729
- if (this.convergenceBreaker) {
576730
- const fam = actionFamily(input.toolName, input.args, this.familyCwd);
576731
- this.convergenceBreaker.resolve(fam);
576732
- this.convergenceFamilyCounts.delete(fam);
576733
- }
576734
- if (this.directive?.requiredNextAction === "run_verification") {
576735
- this.clearSatisfiedDirective("verification ran successfully", input.turn);
576736
- } else if (input.isReadLike && this.directive?.requiredNextAction === "read_authoritative_target") {
576737
- this.clearSatisfiedDirective("authoritative evidence read via shell", input.turn);
576738
- } else if (!input.isReadLike && this.directive?.requiredNextAction === "use_cached_evidence") {
576739
- this.clearSatisfiedDirective("distinct shell action executed after cached evidence", input.turn);
576740
- }
576741
- return;
576742
- }
576743
576746
  if (input.success)
576744
576747
  return;
576745
576748
  const family = failureFamilyKey(input.toolName, input.args, input.error, input.output, this.familyCwd);
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "omnius",
3
- "version": "1.0.484",
3
+ "version": "1.0.485",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "omnius",
9
- "version": "1.0.484",
9
+ "version": "1.0.485",
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.484",
3
+ "version": "1.0.485",
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",