omnius 1.0.449 → 1.0.450

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
@@ -574471,6 +574471,8 @@ function violatesDirective(directive, input) {
574471
574471
  case "report_incomplete":
574472
574472
  return !isReportTool(input.toolName);
574473
574473
  case "edit_different_target":
574474
+ if (input.toolName === "shell")
574475
+ return false;
574474
574476
  return !isEditTool(input.toolName) && !isEvidenceGatheringTool(input.toolName) && !input.isReadLike;
574475
574477
  case "use_cached_evidence":
574476
574478
  return directive.forbiddenActionFamilies.includes(family);
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "omnius",
3
- "version": "1.0.449",
3
+ "version": "1.0.450",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "omnius",
9
- "version": "1.0.449",
9
+ "version": "1.0.450",
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.449",
3
+ "version": "1.0.450",
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",