omnius 1.0.361 → 1.0.362

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
@@ -713786,7 +713786,9 @@ function formatTaskCompletionMeta(meta) {
713786
713786
  return `${meta.turns} turns, ${meta.toolCalls} tool calls, ${dur}, ${meta.model}`;
713787
713787
  }
713788
713788
  function buildNewTaskIntakePacket(ingress, interpretation, previousPrompt, previousSummary, previousMeta) {
713789
- const title = interpretation?.inference?.trim() || ingress.rawText?.trim()?.split("\n")[0]?.slice(0, 120) || "task";
713789
+ const rawTitle = ingress.rawText?.trim()?.split("\n")[0]?.slice(0, 120) || "task";
713790
+ const inferenceTitle = interpretation?.inference?.trim();
713791
+ const title = interpretation && inferenceTitle && inferenceTitle.length > 15 && inferenceTitle !== rawTitle ? inferenceTitle : rawTitle;
713790
713792
  const lines = [
713791
713793
  `${title}`,
713792
713794
  `id: ${ingress.id}`,
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "omnius",
3
- "version": "1.0.361",
3
+ "version": "1.0.362",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "omnius",
9
- "version": "1.0.361",
9
+ "version": "1.0.362",
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.361",
3
+ "version": "1.0.362",
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",