omnius 1.0.326 → 1.0.327
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 +60 -15
- package/npm-shrinkwrap.json +28 -89
- package/package.json +5 -5
package/dist/index.js
CHANGED
|
@@ -294217,7 +294217,7 @@ var init_codebase_indexer = __esm({
|
|
|
294217
294217
|
};
|
|
294218
294218
|
}
|
|
294219
294219
|
async index() {
|
|
294220
|
-
const ig = ignore
|
|
294220
|
+
const ig = ignore();
|
|
294221
294221
|
if (this.config.respectGitignore) {
|
|
294222
294222
|
try {
|
|
294223
294223
|
const gitignoreContent = await readFile22(join69(this.config.rootDir, ".gitignore"), "utf-8");
|
|
@@ -554070,7 +554070,7 @@ var init_messages = __esm({
|
|
|
554070
554070
|
role: z2.enum(["user", "assistant", "system", "tool"]),
|
|
554071
554071
|
content: z2.string(),
|
|
554072
554072
|
timestamp: z2.string().datetime(),
|
|
554073
|
-
metadata: z2.record(z2.unknown()).optional()
|
|
554073
|
+
metadata: z2.record(z2.string(), z2.unknown()).optional()
|
|
554074
554074
|
});
|
|
554075
554075
|
}
|
|
554076
554076
|
});
|
|
@@ -554084,7 +554084,7 @@ var init_tools = __esm({
|
|
|
554084
554084
|
ToolCallSchema = z3.object({
|
|
554085
554085
|
id: z3.string().uuid(),
|
|
554086
554086
|
name: z3.string(),
|
|
554087
|
-
arguments: z3.record(z3.unknown()),
|
|
554087
|
+
arguments: z3.record(z3.string(), z3.unknown()),
|
|
554088
554088
|
result: z3.unknown().optional(),
|
|
554089
554089
|
status: z3.enum(["pending", "running", "completed", "failed"]),
|
|
554090
554090
|
startedAt: z3.string().datetime().optional(),
|
|
@@ -554106,7 +554106,7 @@ var init_session3 = __esm({
|
|
|
554106
554106
|
createdAt: z4.string().datetime(),
|
|
554107
554107
|
updatedAt: z4.string().datetime(),
|
|
554108
554108
|
status: z4.enum(["active", "paused", "completed", "error"]),
|
|
554109
|
-
config: z4.record(z4.unknown()).optional()
|
|
554109
|
+
config: z4.record(z4.string(), z4.unknown()).optional()
|
|
554110
554110
|
});
|
|
554111
554111
|
}
|
|
554112
554112
|
});
|
|
@@ -554637,25 +554637,25 @@ var init_config5 = __esm({
|
|
|
554637
554637
|
* Maximum context length for the model.
|
|
554638
554638
|
* Should be discovered by startup probing rather than hard-coded.
|
|
554639
554639
|
*/
|
|
554640
|
-
AGENT_MAX_MODEL_LEN: z14.string().transform((v) => parseInt(v, 10)).pipe(z14.number().int().positive()).default(
|
|
554640
|
+
AGENT_MAX_MODEL_LEN: z14.string().transform((v) => parseInt(v, 10)).pipe(z14.number().int().positive()).default(65536),
|
|
554641
554641
|
/** Enable vLLM automatic prefix caching (1 = enabled) */
|
|
554642
|
-
AGENT_ENABLE_PREFIX_CACHING: z14.string().transform((v) => v === "1" || v.toLowerCase() === "true").pipe(z14.boolean()).default(
|
|
554642
|
+
AGENT_ENABLE_PREFIX_CACHING: z14.string().transform((v) => v === "1" || v.toLowerCase() === "true").pipe(z14.boolean()).default(true),
|
|
554643
554643
|
/** Enable vLLM sleep mode when idle (1 = enabled) */
|
|
554644
|
-
AGENT_ENABLE_SLEEP_MODE: z14.string().transform((v) => v === "1" || v.toLowerCase() === "true").pipe(z14.boolean()).default(
|
|
554644
|
+
AGENT_ENABLE_SLEEP_MODE: z14.string().transform((v) => v === "1" || v.toLowerCase() === "true").pipe(z14.boolean()).default(true),
|
|
554645
554645
|
// -----------------------------------------------------------------------
|
|
554646
554646
|
// Agent behaviour
|
|
554647
554647
|
// -----------------------------------------------------------------------
|
|
554648
554648
|
/** Maximum retry cycles per subtask */
|
|
554649
|
-
AGENT_MAX_RETRIES: z14.string().transform((v) => parseInt(v, 10)).pipe(z14.number().int().nonnegative()).default(
|
|
554649
|
+
AGENT_MAX_RETRIES: z14.string().transform((v) => parseInt(v, 10)).pipe(z14.number().int().nonnegative()).default(3),
|
|
554650
554650
|
/** Maximum number of parallel subagents that may run simultaneously */
|
|
554651
|
-
AGENT_MAX_PARALLEL_SUBAGENTS: z14.string().transform((v) => parseInt(v, 10)).pipe(z14.number().int().positive()).default(
|
|
554651
|
+
AGENT_MAX_PARALLEL_SUBAGENTS: z14.string().transform((v) => parseInt(v, 10)).pipe(z14.number().int().positive()).default(4),
|
|
554652
554652
|
// -----------------------------------------------------------------------
|
|
554653
554653
|
// Retrieval limits
|
|
554654
554654
|
// -----------------------------------------------------------------------
|
|
554655
554655
|
/** Maximum files included in a single retrieval packet */
|
|
554656
|
-
AGENT_RETRIEVAL_MAX_FILES: z14.string().transform((v) => parseInt(v, 10)).pipe(z14.number().int().positive()).default(
|
|
554656
|
+
AGENT_RETRIEVAL_MAX_FILES: z14.string().transform((v) => parseInt(v, 10)).pipe(z14.number().int().positive()).default(8),
|
|
554657
554657
|
/** Maximum snippets included in a single retrieval packet */
|
|
554658
|
-
AGENT_RETRIEVAL_MAX_SNIPPETS: z14.string().transform((v) => parseInt(v, 10)).pipe(z14.number().int().positive()).default(
|
|
554658
|
+
AGENT_RETRIEVAL_MAX_SNIPPETS: z14.string().transform((v) => parseInt(v, 10)).pipe(z14.number().int().positive()).default(16),
|
|
554659
554659
|
// -----------------------------------------------------------------------
|
|
554660
554660
|
// File paths
|
|
554661
554661
|
// -----------------------------------------------------------------------
|
|
@@ -609724,7 +609724,9 @@ var init_status_bar = __esm({
|
|
|
609724
609724
|
} else {
|
|
609725
609725
|
return false;
|
|
609726
609726
|
}
|
|
609727
|
-
this.
|
|
609727
|
+
if (this.active && !isOverlayActive() && !this._suspendContentLayer) {
|
|
609728
|
+
this.repaintContent();
|
|
609729
|
+
}
|
|
609728
609730
|
return true;
|
|
609729
609731
|
}
|
|
609730
609732
|
/**
|
|
@@ -685554,6 +685556,8 @@ body { display:flex; flex-direction:column; height:100vh; margin:0; overflow:hid
|
|
|
685554
685556
|
</div>
|
|
685555
685557
|
<h3 style="color:var(--color-brand);font-size:0.7rem;margin:16px 0 8px">Inference Provider</h3>
|
|
685556
685558
|
<div id="config-endpoint" style="font-size:0.78rem;color:var(--color-fg-muted);margin-bottom:8px"></div>
|
|
685559
|
+
<div style="font-size:0.66rem;color:var(--color-fg-faint);margin-bottom:6px">Pick a provider to pre-fill the endpoint, then add your key and press <strong>set</strong>.</div>
|
|
685560
|
+
<div id="config-provider-modules" style="margin-bottom:10px"></div>
|
|
685557
685561
|
<form onsubmit="event.preventDefault(); switchEndpoint();" autocomplete="off" style="display:flex;gap:8px;align-items:center;flex-wrap:wrap;margin-bottom:4px">
|
|
685558
685562
|
<input id="config-ep-url" placeholder="https://api.example.com/v1" autocomplete="off" style="flex:1;min-width:200px;background:var(--color-bg-input);border:1px solid var(--color-border);border-radius:3px;padding:4px 8px;color:var(--color-fg);font-family:inherit;font-size:0.7rem;outline:none">
|
|
685559
685563
|
<input id="config-ep-key" placeholder="Bearer key (optional)" type="password" autocomplete="new-password" style="flex:1;min-width:150px;background:var(--color-bg-input);border:1px solid var(--color-border);border-radius:3px;padding:4px 8px;color:var(--color-fg);font-family:inherit;font-size:0.7rem;outline:none">
|
|
@@ -688892,6 +688896,12 @@ async function loadConfig() {
|
|
|
688892
688896
|
'<td style="padding:4px;color:var(--color-fg)">' + (v === '[redacted]' ? '<span style="color:var(--color-fg-faint)">[redacted]</span>' : String(v)) + '</td></tr>'
|
|
688893
688897
|
).join('') + '</table>';
|
|
688894
688898
|
document.getElementById('config-endpoint').textContent = ep.url + ' (' + (ep.backendType || 'unknown') + ')';
|
|
688899
|
+
// Provider module grid (same cards as the Settings modal) wired to the
|
|
688900
|
+
// config-tab endpoint form. Pre-selects the provider matching the active URL.
|
|
688901
|
+
try {
|
|
688902
|
+
const pm = document.getElementById('config-provider-modules');
|
|
688903
|
+
if (pm) pm.innerHTML = renderSettingsProviderModules(settingsProviderIdForUrl(ep.url), ep.url, 'selectConfigProviderModule');
|
|
688904
|
+
} catch {}
|
|
688895
688905
|
// Populate model switcher
|
|
688896
688906
|
const sel = document.getElementById('config-model-select');
|
|
688897
688907
|
sel.innerHTML = '';
|
|
@@ -688931,6 +688941,38 @@ async function switchEndpoint() {
|
|
|
688931
688941
|
} catch {}
|
|
688932
688942
|
}
|
|
688933
688943
|
|
|
688944
|
+
// Provider-module click handler for the /settings (config tab) endpoint form.
|
|
688945
|
+
// Fills the URL + backend-type fields, highlights the active card, and for
|
|
688946
|
+
// cloud providers opens the API-key page and focuses the key input so the user
|
|
688947
|
+
// just pastes their key and presses "set".
|
|
688948
|
+
function selectConfigProviderModule(providerId) {
|
|
688949
|
+
const provider = settingsProviderById(providerId);
|
|
688950
|
+
if (!provider) return;
|
|
688951
|
+
const urlInput = document.getElementById('config-ep-url');
|
|
688952
|
+
const typeSel = document.getElementById('config-ep-type');
|
|
688953
|
+
const keyInput = document.getElementById('config-ep-key');
|
|
688954
|
+
if (urlInput) urlInput.value = provider.url || '';
|
|
688955
|
+
if (typeSel && provider.backendType) {
|
|
688956
|
+
if (!Array.from(typeSel.options).some(o => o.value === provider.backendType)) {
|
|
688957
|
+
const opt = document.createElement('option');
|
|
688958
|
+
opt.value = provider.backendType; opt.textContent = provider.backendType;
|
|
688959
|
+
typeSel.appendChild(opt);
|
|
688960
|
+
}
|
|
688961
|
+
typeSel.value = provider.backendType;
|
|
688962
|
+
}
|
|
688963
|
+
// Highlight the chosen card.
|
|
688964
|
+
document.querySelectorAll('#config-provider-modules .settings-provider-module').forEach(btn => {
|
|
688965
|
+
btn.classList.toggle('active', btn.getAttribute('data-provider-id') === providerId);
|
|
688966
|
+
});
|
|
688967
|
+
// Cloud providers: open the key page and focus the key field.
|
|
688968
|
+
if (provider.requiresAuth && provider.apiKeyUrl) {
|
|
688969
|
+
try { window.open(provider.apiKeyUrl, '_blank', 'noopener'); } catch {}
|
|
688970
|
+
}
|
|
688971
|
+
if (keyInput) { try { keyInput.focus(); } catch {} }
|
|
688972
|
+
else if (!provider.url && urlInput) { try { urlInput.focus(); } catch {} }
|
|
688973
|
+
}
|
|
688974
|
+
window.selectConfigProviderModule = selectConfigProviderModule;
|
|
688975
|
+
|
|
688934
688976
|
async function switchModel() {
|
|
688935
688977
|
const model = document.getElementById('config-model-select').value;
|
|
688936
688978
|
if (!model) return;
|
|
@@ -692795,15 +692837,18 @@ function settingsProviderIcon(provider) {
|
|
|
692795
692837
|
return '<span class="settings-provider-brand"><img src="' + escapeHtml(src) + '" alt="" onerror="this.hidden=true;this.nextElementSibling.hidden=false"><span hidden>' + initial + '</span></span>';
|
|
692796
692838
|
}
|
|
692797
692839
|
|
|
692798
|
-
function renderSettingsProviderModules(selectedId, currentUrl) {
|
|
692840
|
+
function renderSettingsProviderModules(selectedId, currentUrl, handler) {
|
|
692799
692841
|
const activeId = settingsProviderIdForUrl(currentUrl);
|
|
692842
|
+
// handler is the click function name so the same grid can drive either the
|
|
692843
|
+
// Settings modal Connections pane or the /settings (config tab) form.
|
|
692844
|
+
const fn = handler || 'selectSettingsProviderModule';
|
|
692800
692845
|
return '<div class="settings-provider-module-grid">' + _OMNIUS_ENDPOINT_PROVIDERS.map(provider => {
|
|
692801
692846
|
const selected = provider.id === selectedId;
|
|
692802
692847
|
const active = provider.id === activeId;
|
|
692803
692848
|
const cls = 'settings-provider-module' + (selected ? ' active' : '');
|
|
692804
692849
|
const safeId = escapeHtml(provider.id);
|
|
692805
692850
|
const meta = provider.group + (active ? ' - active' : (provider.requiresAuth ? ' - API key' : ''));
|
|
692806
|
-
return '<button type="button" class="' + cls + '" data-provider-id="' + safeId + '" onclick="
|
|
692851
|
+
return '<button type="button" class="' + cls + '" data-provider-id="' + safeId + '" onclick="' + fn + '(\\'' + safeId + '\\', false)">' +
|
|
692807
692852
|
settingsProviderIcon(provider) +
|
|
692808
692853
|
'<strong>' + escapeHtml(provider.label) + '</strong>' +
|
|
692809
692854
|
'<small>' + escapeHtml(meta) + '</small>' +
|
|
@@ -700274,7 +700319,7 @@ async function handleRequest(req3, res, ollamaUrl, verbose, runtimeDefaults = {}
|
|
|
700274
700319
|
return;
|
|
700275
700320
|
}
|
|
700276
700321
|
if (pathname === "/favicon.ico" && method === "GET") {
|
|
700277
|
-
const svg = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><rect width="16" height="16"
|
|
700322
|
+
const svg = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><rect width="16" height="16" fill="#000"/><rect x="3" y="3" width="10" height="10" fill="#fff"/><rect x="6" y="6" width="4" height="4" fill="#000"/></svg>';
|
|
700278
700323
|
res.writeHead(200, {
|
|
700279
700324
|
"Content-Type": "image/svg+xml",
|
|
700280
700325
|
"Cache-Control": "public, max-age=86400"
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,27 +1,27 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "omnius",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.327",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "omnius",
|
|
9
|
-
"version": "1.0.
|
|
9
|
+
"version": "1.0.327",
|
|
10
10
|
"bundleDependencies": [
|
|
11
11
|
"image-to-ascii"
|
|
12
12
|
],
|
|
13
13
|
"hasInstallScript": true,
|
|
14
14
|
"license": "CC-BY-NC-4.0",
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"aiwg": "2026.
|
|
17
|
-
"glob": "^
|
|
18
|
-
"ignore": "^
|
|
16
|
+
"aiwg": "2026.6.2",
|
|
17
|
+
"glob": "^13.0.6",
|
|
18
|
+
"ignore": "^7.0.5",
|
|
19
19
|
"image-to-ascii": "file:vendor/image-to-ascii",
|
|
20
20
|
"nats.ws": "1.30.3",
|
|
21
21
|
"omnius-fabric": "^0.12.8",
|
|
22
22
|
"open-agents-nexus": "1.17.3",
|
|
23
23
|
"ws": "^8.20.0",
|
|
24
|
-
"zod": "^
|
|
24
|
+
"zod": "^4.4.3"
|
|
25
25
|
},
|
|
26
26
|
"bin": {
|
|
27
27
|
"omnius": "dist/launcher.cjs"
|
|
@@ -543,15 +543,6 @@
|
|
|
543
543
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
544
544
|
}
|
|
545
545
|
},
|
|
546
|
-
"node_modules/@isaacs/cliui": {
|
|
547
|
-
"version": "9.0.0",
|
|
548
|
-
"resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-9.0.0.tgz",
|
|
549
|
-
"integrity": "sha512-AokJm4tuBHillT+FpMtxQ60n8ObyXBatq7jD2/JA9dxbDDokKQm8KMht5ibGzLVU9IJDIKK4TPKgMHEYMn3lMg==",
|
|
550
|
-
"license": "BlueOak-1.0.0",
|
|
551
|
-
"engines": {
|
|
552
|
-
"node": ">=18"
|
|
553
|
-
}
|
|
554
|
-
},
|
|
555
546
|
"node_modules/@leichtgewicht/ip-codec": {
|
|
556
547
|
"version": "2.0.5",
|
|
557
548
|
"resolved": "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.5.tgz",
|
|
@@ -2214,9 +2205,9 @@
|
|
|
2214
2205
|
}
|
|
2215
2206
|
},
|
|
2216
2207
|
"node_modules/aiwg": {
|
|
2217
|
-
"version": "2026.
|
|
2218
|
-
"resolved": "https://registry.npmjs.org/aiwg/-/aiwg-2026.
|
|
2219
|
-
"integrity": "sha512-
|
|
2208
|
+
"version": "2026.6.2",
|
|
2209
|
+
"resolved": "https://registry.npmjs.org/aiwg/-/aiwg-2026.6.2.tgz",
|
|
2210
|
+
"integrity": "sha512-DlZwilKJajAoQldBadYmo5EqSSYGsn/mBnhIpzJVuQkarMR1h8w1szLTiBcL7kDJ3sGM3DPIt0fUVGZhvRa7tQ==",
|
|
2220
2211
|
"license": "MIT",
|
|
2221
2212
|
"dependencies": {
|
|
2222
2213
|
"@modelcontextprotocol/sdk": "^1.24.0",
|
|
@@ -2261,21 +2252,13 @@
|
|
|
2261
2252
|
}
|
|
2262
2253
|
}
|
|
2263
2254
|
},
|
|
2264
|
-
"node_modules/aiwg/node_modules/
|
|
2265
|
-
"version": "
|
|
2266
|
-
"resolved": "https://registry.npmjs.org/
|
|
2267
|
-
"integrity": "sha512-
|
|
2268
|
-
"license": "
|
|
2269
|
-
"dependencies": {
|
|
2270
|
-
"minimatch": "^10.2.2",
|
|
2271
|
-
"minipass": "^7.1.3",
|
|
2272
|
-
"path-scurry": "^2.0.2"
|
|
2273
|
-
},
|
|
2274
|
-
"engines": {
|
|
2275
|
-
"node": "18 || 20 || >=22"
|
|
2276
|
-
},
|
|
2255
|
+
"node_modules/aiwg/node_modules/zod": {
|
|
2256
|
+
"version": "3.25.76",
|
|
2257
|
+
"resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
|
|
2258
|
+
"integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
|
|
2259
|
+
"license": "MIT",
|
|
2277
2260
|
"funding": {
|
|
2278
|
-
"url": "https://github.com/sponsors/
|
|
2261
|
+
"url": "https://github.com/sponsors/colinhacks"
|
|
2279
2262
|
}
|
|
2280
2263
|
},
|
|
2281
2264
|
"node_modules/ajv": {
|
|
@@ -3632,22 +3615,6 @@
|
|
|
3632
3615
|
}
|
|
3633
3616
|
}
|
|
3634
3617
|
},
|
|
3635
|
-
"node_modules/foreground-child": {
|
|
3636
|
-
"version": "3.3.1",
|
|
3637
|
-
"resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.1.tgz",
|
|
3638
|
-
"integrity": "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==",
|
|
3639
|
-
"license": "ISC",
|
|
3640
|
-
"dependencies": {
|
|
3641
|
-
"cross-spawn": "^7.0.6",
|
|
3642
|
-
"signal-exit": "^4.0.1"
|
|
3643
|
-
},
|
|
3644
|
-
"engines": {
|
|
3645
|
-
"node": ">=14"
|
|
3646
|
-
},
|
|
3647
|
-
"funding": {
|
|
3648
|
-
"url": "https://github.com/sponsors/isaacs"
|
|
3649
|
-
}
|
|
3650
|
-
},
|
|
3651
3618
|
"node_modules/form-data": {
|
|
3652
3619
|
"version": "4.0.6",
|
|
3653
3620
|
"resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.6.tgz",
|
|
@@ -3828,24 +3795,17 @@
|
|
|
3828
3795
|
"license": "MIT"
|
|
3829
3796
|
},
|
|
3830
3797
|
"node_modules/glob": {
|
|
3831
|
-
"version": "
|
|
3832
|
-
"resolved": "https://registry.npmjs.org/glob/-/glob-
|
|
3833
|
-
"integrity": "sha512-
|
|
3834
|
-
"deprecated": "Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me",
|
|
3798
|
+
"version": "13.0.6",
|
|
3799
|
+
"resolved": "https://registry.npmjs.org/glob/-/glob-13.0.6.tgz",
|
|
3800
|
+
"integrity": "sha512-Wjlyrolmm8uDpm/ogGyXZXb1Z+Ca2B8NbJwqBVg0axK9GbBeoS7yGV6vjXnYdGm6X53iehEuxxbyiKp8QmN4Vw==",
|
|
3835
3801
|
"license": "BlueOak-1.0.0",
|
|
3836
3802
|
"dependencies": {
|
|
3837
|
-
"
|
|
3838
|
-
"
|
|
3839
|
-
"
|
|
3840
|
-
"minipass": "^7.1.2",
|
|
3841
|
-
"package-json-from-dist": "^1.0.0",
|
|
3842
|
-
"path-scurry": "^2.0.0"
|
|
3843
|
-
},
|
|
3844
|
-
"bin": {
|
|
3845
|
-
"glob": "dist/esm/bin.mjs"
|
|
3803
|
+
"minimatch": "^10.2.2",
|
|
3804
|
+
"minipass": "^7.1.3",
|
|
3805
|
+
"path-scurry": "^2.0.2"
|
|
3846
3806
|
},
|
|
3847
3807
|
"engines": {
|
|
3848
|
-
"node": "20 || >=22"
|
|
3808
|
+
"node": "18 || 20 || >=22"
|
|
3849
3809
|
},
|
|
3850
3810
|
"funding": {
|
|
3851
3811
|
"url": "https://github.com/sponsors/isaacs"
|
|
@@ -4104,9 +4064,9 @@
|
|
|
4104
4064
|
"license": "BSD-3-Clause"
|
|
4105
4065
|
},
|
|
4106
4066
|
"node_modules/ignore": {
|
|
4107
|
-
"version": "
|
|
4108
|
-
"resolved": "https://registry.npmjs.org/ignore/-/ignore-
|
|
4109
|
-
"integrity": "sha512-
|
|
4067
|
+
"version": "7.0.5",
|
|
4068
|
+
"resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.5.tgz",
|
|
4069
|
+
"integrity": "sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==",
|
|
4110
4070
|
"license": "MIT",
|
|
4111
4071
|
"engines": {
|
|
4112
4072
|
"node": ">= 4"
|
|
@@ -4773,21 +4733,6 @@
|
|
|
4773
4733
|
"uint8arrays": "^5.1.0"
|
|
4774
4734
|
}
|
|
4775
4735
|
},
|
|
4776
|
-
"node_modules/jackspeak": {
|
|
4777
|
-
"version": "4.2.3",
|
|
4778
|
-
"resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-4.2.3.tgz",
|
|
4779
|
-
"integrity": "sha512-ykkVRwrYvFm1nb2AJfKKYPr0emF6IiXDYUaFx4Zn9ZuIH7MrzEZ3sD5RlqGXNRpHtvUHJyOnCEFxOlNDtGo7wg==",
|
|
4780
|
-
"license": "BlueOak-1.0.0",
|
|
4781
|
-
"dependencies": {
|
|
4782
|
-
"@isaacs/cliui": "^9.0.0"
|
|
4783
|
-
},
|
|
4784
|
-
"engines": {
|
|
4785
|
-
"node": "20 || >=22"
|
|
4786
|
-
},
|
|
4787
|
-
"funding": {
|
|
4788
|
-
"url": "https://github.com/sponsors/isaacs"
|
|
4789
|
-
}
|
|
4790
|
-
},
|
|
4791
4736
|
"node_modules/jose": {
|
|
4792
4737
|
"version": "6.2.3",
|
|
4793
4738
|
"resolved": "https://registry.npmjs.org/jose/-/jose-6.2.3.tgz",
|
|
@@ -5881,12 +5826,6 @@
|
|
|
5881
5826
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
5882
5827
|
}
|
|
5883
5828
|
},
|
|
5884
|
-
"node_modules/package-json-from-dist": {
|
|
5885
|
-
"version": "1.0.1",
|
|
5886
|
-
"resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz",
|
|
5887
|
-
"integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==",
|
|
5888
|
-
"license": "BlueOak-1.0.0"
|
|
5889
|
-
},
|
|
5890
5829
|
"node_modules/pako": {
|
|
5891
5830
|
"version": "1.0.11",
|
|
5892
5831
|
"resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz",
|
|
@@ -7593,9 +7532,9 @@
|
|
|
7593
7532
|
}
|
|
7594
7533
|
},
|
|
7595
7534
|
"node_modules/zod": {
|
|
7596
|
-
"version": "
|
|
7597
|
-
"resolved": "https://registry.npmjs.org/zod/-/zod-
|
|
7598
|
-
"integrity": "sha512-
|
|
7535
|
+
"version": "4.4.3",
|
|
7536
|
+
"resolved": "https://registry.npmjs.org/zod/-/zod-4.4.3.tgz",
|
|
7537
|
+
"integrity": "sha512-ytENFjIJFl2UwYglde2jchW2Hwm4GJFLDiSXWdTrJQBIN9Fcyp7n4DhxJEiWNAJMV1/BqWfW/kkg71UDcHJyTQ==",
|
|
7599
7538
|
"license": "MIT",
|
|
7600
7539
|
"funding": {
|
|
7601
7540
|
"url": "https://github.com/sponsors/colinhacks"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "omnius",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.327",
|
|
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",
|
|
@@ -80,15 +80,15 @@
|
|
|
80
80
|
"node": ">=22.0.0"
|
|
81
81
|
},
|
|
82
82
|
"dependencies": {
|
|
83
|
-
"aiwg": "2026.
|
|
83
|
+
"aiwg": "2026.6.2",
|
|
84
84
|
"omnius-fabric": "^0.12.8",
|
|
85
|
-
"glob": "^
|
|
86
|
-
"ignore": "^
|
|
85
|
+
"glob": "^13.0.6",
|
|
86
|
+
"ignore": "^7.0.5",
|
|
87
87
|
"image-to-ascii": "file:vendor/image-to-ascii",
|
|
88
88
|
"nats.ws": "1.30.3",
|
|
89
89
|
"open-agents-nexus": "1.17.3",
|
|
90
90
|
"ws": "^8.20.0",
|
|
91
|
-
"zod": "^
|
|
91
|
+
"zod": "^4.4.3"
|
|
92
92
|
},
|
|
93
93
|
"bundledDependencies": [
|
|
94
94
|
"image-to-ascii"
|