omnius 1.0.97 → 1.0.98

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
@@ -563967,7 +563967,12 @@ function buildToolResultBody(toolName, success, output, verbose) {
563967
563967
  return codePreviewLines(output, 10);
563968
563968
  }
563969
563969
  if (toolName === "task_complete") {
563970
- return [{ text: "Done", mode: "wrap", kind: "success" }];
563970
+ const summary = output && output.trim() ? output : "Done";
563971
+ return summary.split("\n").map((line) => ({
563972
+ text: line,
563973
+ mode: "wrap",
563974
+ kind: "markdown"
563975
+ }));
563971
563976
  }
563972
563977
  const filtered = output.split("\n").filter((line) => {
563973
563978
  const trimmed = line.trim();
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "omnius",
3
- "version": "1.0.97",
3
+ "version": "1.0.98",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "omnius",
9
- "version": "1.0.97",
9
+ "version": "1.0.98",
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.97",
3
+ "version": "1.0.98",
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",