omnius 1.0.6 → 1.0.7

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
@@ -593612,11 +593612,11 @@ function runProcess3(command, args, cwd4, timeoutMs) {
593612
593612
  child.stderr?.on("data", (chunk) => {
593613
593613
  stderr += chunk.toString();
593614
593614
  });
593615
- child.on("error", (err) => {
593615
+ onChildError(child, (err) => {
593616
593616
  clearTimeout(timer);
593617
593617
  resolveProcess({ code: 127, stdout, stderr: stderr + String(err.message || err) });
593618
593618
  });
593619
- child.on("close", (code8) => {
593619
+ onChildClose(child, (code8) => {
593620
593620
  clearTimeout(timer);
593621
593621
  resolveProcess({ code: code8, stdout, stderr });
593622
593622
  });
@@ -593626,6 +593626,7 @@ var MANIFEST_FILE, PATH_KEYS, MEDIA_PATH_RE, CreativeAudioFileTool;
593626
593626
  var init_telegram_creative_tools = __esm({
593627
593627
  "packages/cli/src/tui/telegram-creative-tools.ts"() {
593628
593628
  "use strict";
593629
+ init_typed_node_events();
593629
593630
  init_dist5();
593630
593631
  MANIFEST_FILE = ".omnius-creative-manifest.json";
593631
593632
  PATH_KEYS = ["path", "file", "file_path", "filename", "filepath", "filePath"];
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "omnius",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "omnius",
9
- "version": "1.0.6",
9
+ "version": "1.0.7",
10
10
  "hasInstallScript": true,
11
11
  "license": "CC-BY-NC-4.0",
12
12
  "dependencies": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "omnius",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
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",