@wrongstack/core 0.51.3 → 0.54.1
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/{agent-bridge-CjbD-i7-.d.ts → agent-bridge-Dnhw4tnM.d.ts} +1 -1
- package/dist/{agent-subagent-runner-DfvlBx5N.d.ts → agent-subagent-runner-By7jruZ_.d.ts} +3 -3
- package/dist/{compactor-D1RHFRmF.d.ts → compactor-Duhsf0ge.d.ts} +1 -1
- package/dist/{config-ZRCf7sTu.d.ts → config-bht0txXS.d.ts} +33 -2
- package/dist/{context-7u93AcGD.d.ts → context-DtPKqKYV.d.ts} +1 -0
- package/dist/coordination/index.d.ts +12 -12
- package/dist/coordination/index.js.map +1 -1
- package/dist/defaults/index.d.ts +22 -22
- package/dist/defaults/index.js +31 -16
- package/dist/defaults/index.js.map +1 -1
- package/dist/{events-Bt44ikPN.d.ts → events-CbHTS4ZZ.d.ts} +1 -1
- package/dist/execution/index.d.ts +14 -14
- package/dist/execution/index.js.map +1 -1
- package/dist/extension/index.d.ts +6 -6
- package/dist/{goal-store-BeRsj7YX.d.ts → goal-store-DwcTDDiX.d.ts} +1 -1
- package/dist/{index-mAWBdLyJ.d.ts → index-CI271MjL.d.ts} +5 -5
- package/dist/{index-OzA1XjHL.d.ts → index-ge5F2dnc.d.ts} +8 -8
- package/dist/index.d.ts +33 -33
- package/dist/index.js +116 -64
- package/dist/index.js.map +1 -1
- package/dist/infrastructure/index.d.ts +6 -6
- package/dist/kernel/index.d.ts +9 -9
- package/dist/{mcp-servers-DONdo-XM.d.ts → mcp-servers-DE6gzBry.d.ts} +3 -3
- package/dist/models/index.d.ts +3 -3
- package/dist/models/index.js +31 -16
- package/dist/models/index.js.map +1 -1
- package/dist/{models-registry-gwMAo6E3.d.ts → models-registry-Cuq1C8V9.d.ts} +7 -0
- package/dist/{multi-agent-Ba9Ni2hC.d.ts → multi-agent-BmC_xiog.d.ts} +2 -2
- package/dist/{multi-agent-coordinator-BuKq0q89.d.ts → multi-agent-coordinator-CjNX4uBD.d.ts} +2 -2
- package/dist/{null-fleet-bus-C0xd73YP.d.ts → null-fleet-bus-BNiSlTna.d.ts} +7 -7
- package/dist/observability/index.d.ts +2 -2
- package/dist/{path-resolver-nkmdiFgi.d.ts → path-resolver-Bax85amb.d.ts} +2 -2
- package/dist/{permission-B6sldrSp.d.ts → permission-Drm7LpPo.d.ts} +1 -1
- package/dist/{permission-policy-CtNscWOA.d.ts → permission-policy-CU6sqWxF.d.ts} +2 -2
- package/dist/{plan-templates-BmDdJ7UL.d.ts → plan-templates-CLRcurWN.d.ts} +4 -4
- package/dist/{provider-runner-BGro2qQB.d.ts → provider-runner-BikCxGCx.d.ts} +3 -3
- package/dist/{retry-policy-KF18W4dg.d.ts → retry-policy-Chtlvr5b.d.ts} +1 -1
- package/dist/sdd/index.d.ts +8 -8
- package/dist/sdd/index.js.map +1 -1
- package/dist/security/index.d.ts +3 -3
- package/dist/{selector-DmXxpFyM.d.ts → selector-BvSPdJj6.d.ts} +1 -1
- package/dist/{session-reader-bfgsy2a0.d.ts → session-reader-BGhzMir4.d.ts} +1 -1
- package/dist/storage/index.d.ts +6 -6
- package/dist/storage/index.js +57 -37
- package/dist/storage/index.js.map +1 -1
- package/dist/{system-prompt-CM6zOhd2.d.ts → system-prompt-dtzV_mLm.d.ts} +1 -1
- package/dist/{tool-executor-p4tP9tGF.d.ts → tool-executor-CgU0yWpB.d.ts} +4 -4
- package/dist/types/index.d.ts +15 -15
- package/dist/types/index.js +31 -16
- package/dist/types/index.js.map +1 -1
- package/dist/utils/index.d.ts +14 -2
- package/dist/utils/index.js +18 -1
- package/dist/utils/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -93,7 +93,7 @@ async function renameWithRetry(from, to) {
|
|
|
93
93
|
if (!code || !TRANSIENT_RENAME_CODES.has(code) || i === delays.length) {
|
|
94
94
|
throw err;
|
|
95
95
|
}
|
|
96
|
-
await new Promise((
|
|
96
|
+
await new Promise((resolve12) => setTimeout(resolve12, delays[i]));
|
|
97
97
|
}
|
|
98
98
|
}
|
|
99
99
|
throw lastErr;
|
|
@@ -2369,6 +2369,7 @@ function stripUndefined(obj) {
|
|
|
2369
2369
|
// src/models/models-registry.ts
|
|
2370
2370
|
var DEFAULT_URL = "https://models.dev/api.json";
|
|
2371
2371
|
var DEFAULT_TTL_SECONDS = 24 * 3600;
|
|
2372
|
+
var DEFAULT_REFRESH_TIMEOUT_MS = 15e3;
|
|
2372
2373
|
var FAMILY_BY_NPM = {
|
|
2373
2374
|
"@ai-sdk/anthropic": "anthropic",
|
|
2374
2375
|
"@ai-sdk/google-vertex/anthropic": "anthropic",
|
|
@@ -2405,6 +2406,7 @@ var DefaultModelsRegistry = class {
|
|
|
2405
2406
|
fetchImpl;
|
|
2406
2407
|
seed;
|
|
2407
2408
|
maxStaleAgeMs;
|
|
2409
|
+
refreshTimeoutMs;
|
|
2408
2410
|
overlay;
|
|
2409
2411
|
overlayUrl;
|
|
2410
2412
|
overlayFile;
|
|
@@ -2417,6 +2419,7 @@ var DefaultModelsRegistry = class {
|
|
|
2417
2419
|
this.seed = opts.seed;
|
|
2418
2420
|
const maxStaleSeconds = opts.maxStaleAgeSeconds ?? 7 * 24 * 3600;
|
|
2419
2421
|
this.maxStaleAgeMs = maxStaleSeconds * 1e3;
|
|
2422
|
+
this.refreshTimeoutMs = opts.refreshTimeoutMs ?? DEFAULT_REFRESH_TIMEOUT_MS;
|
|
2420
2423
|
this.overlay = opts.overlay;
|
|
2421
2424
|
this.overlayUrl = opts.overlayUrl;
|
|
2422
2425
|
this.overlayFile = opts.overlayFile;
|
|
@@ -2468,22 +2471,34 @@ var DefaultModelsRegistry = class {
|
|
|
2468
2471
|
}
|
|
2469
2472
|
/** Fetch + cache the models.dev base. Throws on failure (used by `refresh`). */
|
|
2470
2473
|
async refreshBase() {
|
|
2471
|
-
const
|
|
2472
|
-
|
|
2473
|
-
|
|
2474
|
-
|
|
2475
|
-
|
|
2476
|
-
|
|
2477
|
-
|
|
2478
|
-
|
|
2479
|
-
|
|
2480
|
-
|
|
2481
|
-
|
|
2482
|
-
|
|
2483
|
-
|
|
2484
|
-
|
|
2485
|
-
|
|
2486
|
-
|
|
2474
|
+
const controller = new AbortController();
|
|
2475
|
+
const timeout = setTimeout(() => controller.abort(), this.refreshTimeoutMs);
|
|
2476
|
+
try {
|
|
2477
|
+
const res = await this.fetchImpl(this.url, {
|
|
2478
|
+
method: "GET",
|
|
2479
|
+
headers: { accept: "application/json" },
|
|
2480
|
+
signal: controller.signal
|
|
2481
|
+
});
|
|
2482
|
+
clearTimeout(timeout);
|
|
2483
|
+
if (!res.ok) {
|
|
2484
|
+
throw new Error(`ModelsRegistry: HTTP ${res.status} fetching ${this.url}`);
|
|
2485
|
+
}
|
|
2486
|
+
const json = await res.json();
|
|
2487
|
+
this.fetchedAt = /* @__PURE__ */ new Date();
|
|
2488
|
+
const envelope = {
|
|
2489
|
+
fetchedAt: this.fetchedAt.toISOString(),
|
|
2490
|
+
url: this.url,
|
|
2491
|
+
payload: json
|
|
2492
|
+
};
|
|
2493
|
+
await atomicWrite(this.cacheFile, JSON.stringify(envelope));
|
|
2494
|
+
return json;
|
|
2495
|
+
} catch (err) {
|
|
2496
|
+
clearTimeout(timeout);
|
|
2497
|
+
if (err instanceof Error && err.name === "AbortError") {
|
|
2498
|
+
throw new Error(`ModelsRegistry: fetch timed out after ${this.refreshTimeoutMs}ms`);
|
|
2499
|
+
}
|
|
2500
|
+
throw err;
|
|
2501
|
+
}
|
|
2487
2502
|
}
|
|
2488
2503
|
/**
|
|
2489
2504
|
* Resolve the curated overlay, memoised. Order: in-memory `overlay` →
|
|
@@ -3034,7 +3049,7 @@ var InMemoryAgentBridge = class {
|
|
|
3034
3049
|
);
|
|
3035
3050
|
}
|
|
3036
3051
|
this.inflightGuards.add(correlationId);
|
|
3037
|
-
return new Promise((
|
|
3052
|
+
return new Promise((resolve12, reject) => {
|
|
3038
3053
|
const timer = setTimeout(() => {
|
|
3039
3054
|
this.inflightGuards.delete(correlationId);
|
|
3040
3055
|
this.pendingRequests.delete(correlationId);
|
|
@@ -3046,7 +3061,7 @@ var InMemoryAgentBridge = class {
|
|
|
3046
3061
|
return;
|
|
3047
3062
|
}
|
|
3048
3063
|
this.pendingRequests.set(correlationId, {
|
|
3049
|
-
resolve:
|
|
3064
|
+
resolve: resolve12,
|
|
3050
3065
|
reject,
|
|
3051
3066
|
timer
|
|
3052
3067
|
});
|
|
@@ -4752,6 +4767,23 @@ function tryParse(s) {
|
|
|
4752
4767
|
}
|
|
4753
4768
|
}
|
|
4754
4769
|
|
|
4770
|
+
// src/utils/merge-custom-models.ts
|
|
4771
|
+
function mergeCustomModelDefs(providerCustomModels, configModels) {
|
|
4772
|
+
const out = {};
|
|
4773
|
+
if (providerCustomModels) {
|
|
4774
|
+
for (const [id, def] of Object.entries(providerCustomModels)) {
|
|
4775
|
+
out[id] = { ...def };
|
|
4776
|
+
}
|
|
4777
|
+
}
|
|
4778
|
+
if (configModels) {
|
|
4779
|
+
for (const [id, def] of Object.entries(configModels)) {
|
|
4780
|
+
out[id] = { ...def };
|
|
4781
|
+
}
|
|
4782
|
+
}
|
|
4783
|
+
if (Object.keys(out).length === 0) return void 0;
|
|
4784
|
+
return out;
|
|
4785
|
+
}
|
|
4786
|
+
|
|
4755
4787
|
// src/storage/session-store.ts
|
|
4756
4788
|
init_atomic_write();
|
|
4757
4789
|
var DefaultSessionStore = class {
|
|
@@ -7534,8 +7566,8 @@ async function streamProviderToResponse(provider, req, signal, ctx, events) {
|
|
|
7534
7566
|
try {
|
|
7535
7567
|
await Promise.race([
|
|
7536
7568
|
Promise.resolve(iter.return?.()),
|
|
7537
|
-
new Promise((
|
|
7538
|
-
drainTimer = setTimeout(
|
|
7569
|
+
new Promise((resolve12) => {
|
|
7570
|
+
drainTimer = setTimeout(resolve12, 500);
|
|
7539
7571
|
})
|
|
7540
7572
|
]);
|
|
7541
7573
|
} finally {
|
|
@@ -7596,7 +7628,7 @@ async function runProviderWithRetry(opts) {
|
|
|
7596
7628
|
description
|
|
7597
7629
|
});
|
|
7598
7630
|
}
|
|
7599
|
-
await new Promise((
|
|
7631
|
+
await new Promise((resolve12, reject) => {
|
|
7600
7632
|
let settled = false;
|
|
7601
7633
|
const onAbort = () => {
|
|
7602
7634
|
if (settled) return;
|
|
@@ -7609,7 +7641,7 @@ async function runProviderWithRetry(opts) {
|
|
|
7609
7641
|
settled = true;
|
|
7610
7642
|
clearTimeout(t2);
|
|
7611
7643
|
signal.removeEventListener("abort", onAbort);
|
|
7612
|
-
|
|
7644
|
+
resolve12();
|
|
7613
7645
|
}, delay);
|
|
7614
7646
|
if (signal.aborted) {
|
|
7615
7647
|
onAbort();
|
|
@@ -9288,7 +9320,7 @@ ${recentJournal}` : "No prior iterations.",
|
|
|
9288
9320
|
}
|
|
9289
9321
|
};
|
|
9290
9322
|
function sleep(ms) {
|
|
9291
|
-
return new Promise((
|
|
9323
|
+
return new Promise((resolve12) => setTimeout(resolve12, ms));
|
|
9292
9324
|
}
|
|
9293
9325
|
|
|
9294
9326
|
// src/coordination/subagent-budget.ts
|
|
@@ -9504,12 +9536,12 @@ var SubagentBudget = class _SubagentBudget {
|
|
|
9504
9536
|
if (!bus || !bus.hasListenerFor("budget.threshold_reached")) {
|
|
9505
9537
|
return Promise.resolve("stop");
|
|
9506
9538
|
}
|
|
9507
|
-
return new Promise((
|
|
9539
|
+
return new Promise((resolve12) => {
|
|
9508
9540
|
let resolved = false;
|
|
9509
9541
|
const respond = (d) => {
|
|
9510
9542
|
if (resolved) return;
|
|
9511
9543
|
resolved = true;
|
|
9512
|
-
|
|
9544
|
+
resolve12(d);
|
|
9513
9545
|
};
|
|
9514
9546
|
const fallback = setTimeout(
|
|
9515
9547
|
() => respond("stop"),
|
|
@@ -12736,7 +12768,7 @@ var DefaultMultiAgentCoordinator = class _DefaultMultiAgentCoordinator extends E
|
|
|
12736
12768
|
taskIds.map((id) => {
|
|
12737
12769
|
const cached = this.completedResults.find((r) => r.taskId === id);
|
|
12738
12770
|
if (cached) return cached;
|
|
12739
|
-
return new Promise((
|
|
12771
|
+
return new Promise((resolve12, reject) => {
|
|
12740
12772
|
const timeout = setTimeout(() => {
|
|
12741
12773
|
this.off("task.completed", handler);
|
|
12742
12774
|
reject(new Error(`awaitTasks timed out waiting for task "${id}"`));
|
|
@@ -12745,7 +12777,7 @@ var DefaultMultiAgentCoordinator = class _DefaultMultiAgentCoordinator extends E
|
|
|
12745
12777
|
if (result.taskId === id) {
|
|
12746
12778
|
clearTimeout(timeout);
|
|
12747
12779
|
this.off("task.completed", handler);
|
|
12748
|
-
|
|
12780
|
+
resolve12(result);
|
|
12749
12781
|
}
|
|
12750
12782
|
};
|
|
12751
12783
|
this.on("task.completed", handler);
|
|
@@ -13248,7 +13280,7 @@ function providerErrorToSubagentError(err, message, cause) {
|
|
|
13248
13280
|
|
|
13249
13281
|
// src/execution/parallel-eternal-engine.ts
|
|
13250
13282
|
function sleep2(ms) {
|
|
13251
|
-
return new Promise((
|
|
13283
|
+
return new Promise((resolve12) => setTimeout(resolve12, ms));
|
|
13252
13284
|
}
|
|
13253
13285
|
var GOAL_COMPLETE_MARKER2 = /^\s*\[goal[_\s-]?complete\]\s*$/im;
|
|
13254
13286
|
var ParallelEternalEngine = class {
|
|
@@ -16053,11 +16085,11 @@ var Director = class _Director {
|
|
|
16053
16085
|
if (cached) return cached;
|
|
16054
16086
|
const existing = this.taskWaiters.get(id);
|
|
16055
16087
|
if (existing) return existing.promise;
|
|
16056
|
-
let
|
|
16088
|
+
let resolve12;
|
|
16057
16089
|
const promise = new Promise((res) => {
|
|
16058
|
-
|
|
16090
|
+
resolve12 = res;
|
|
16059
16091
|
});
|
|
16060
|
-
this.taskWaiters.set(id, { promise, resolve:
|
|
16092
|
+
this.taskWaiters.set(id, { promise, resolve: resolve12 });
|
|
16061
16093
|
return promise;
|
|
16062
16094
|
})
|
|
16063
16095
|
);
|
|
@@ -16442,7 +16474,7 @@ function createDelegateTool(opts) {
|
|
|
16442
16474
|
subagentId
|
|
16443
16475
|
});
|
|
16444
16476
|
const dir = director;
|
|
16445
|
-
const result = await new Promise((
|
|
16477
|
+
const result = await new Promise((resolve12) => {
|
|
16446
16478
|
let settled = false;
|
|
16447
16479
|
let timer;
|
|
16448
16480
|
const finish = (value) => {
|
|
@@ -16452,7 +16484,7 @@ function createDelegateTool(opts) {
|
|
|
16452
16484
|
offTool();
|
|
16453
16485
|
offIter();
|
|
16454
16486
|
offProgress();
|
|
16455
|
-
|
|
16487
|
+
resolve12(value);
|
|
16456
16488
|
};
|
|
16457
16489
|
const arm = () => {
|
|
16458
16490
|
if (timer) clearTimeout(timer);
|
|
@@ -19595,9 +19627,9 @@ var DefaultHealthRegistry = class {
|
|
|
19595
19627
|
}
|
|
19596
19628
|
async runOne(check) {
|
|
19597
19629
|
let timer = null;
|
|
19598
|
-
const timeout = new Promise((
|
|
19630
|
+
const timeout = new Promise((resolve12) => {
|
|
19599
19631
|
timer = setTimeout(
|
|
19600
|
-
() =>
|
|
19632
|
+
() => resolve12({ status: "unhealthy", detail: `timeout after ${this.timeoutMs}ms` }),
|
|
19601
19633
|
this.timeoutMs
|
|
19602
19634
|
);
|
|
19603
19635
|
});
|
|
@@ -19836,14 +19868,14 @@ async function startMetricsServer(opts) {
|
|
|
19836
19868
|
const { createServer } = await import('http');
|
|
19837
19869
|
server = createServer(listener);
|
|
19838
19870
|
}
|
|
19839
|
-
await new Promise((
|
|
19871
|
+
await new Promise((resolve12, reject) => {
|
|
19840
19872
|
const onError = (err) => {
|
|
19841
19873
|
server.off("listening", onListening);
|
|
19842
19874
|
reject(err);
|
|
19843
19875
|
};
|
|
19844
19876
|
const onListening = () => {
|
|
19845
19877
|
server.off("error", onError);
|
|
19846
|
-
|
|
19878
|
+
resolve12();
|
|
19847
19879
|
};
|
|
19848
19880
|
server.once("error", onError);
|
|
19849
19881
|
server.once("listening", onListening);
|
|
@@ -19855,8 +19887,8 @@ async function startMetricsServer(opts) {
|
|
|
19855
19887
|
return {
|
|
19856
19888
|
port: boundPort,
|
|
19857
19889
|
url: `${protocol}://${host}:${boundPort}${path36}`,
|
|
19858
|
-
close: () => new Promise((
|
|
19859
|
-
server.close((err) => err ? reject(err) :
|
|
19890
|
+
close: () => new Promise((resolve12, reject) => {
|
|
19891
|
+
server.close((err) => err ? reject(err) : resolve12());
|
|
19860
19892
|
})
|
|
19861
19893
|
};
|
|
19862
19894
|
}
|
|
@@ -21995,7 +22027,7 @@ var CloudSync = class {
|
|
|
21995
22027
|
const localPath = this.categoryToPath(cat);
|
|
21996
22028
|
if (!localPath) continue;
|
|
21997
22029
|
const rel = segments.slice(2).join("/");
|
|
21998
|
-
const destPath =
|
|
22030
|
+
const destPath = resolvePulledCategoryPath(cat, localPath, rel, entry.path);
|
|
21999
22031
|
const blobData = await this.getBlob(token, owner, repoName, entry.sha);
|
|
22000
22032
|
await fsp3.mkdir(path6.dirname(destPath), { recursive: true });
|
|
22001
22033
|
await fsp3.writeFile(destPath, Buffer.from(blobData, "base64"));
|
|
@@ -22169,6 +22201,26 @@ var CloudSync = class {
|
|
|
22169
22201
|
return results;
|
|
22170
22202
|
}
|
|
22171
22203
|
};
|
|
22204
|
+
function resolvePulledCategoryPath(cat, localPath, rel, remotePath) {
|
|
22205
|
+
const directoryBacked = cat === "skills" || cat === "prompts";
|
|
22206
|
+
if (!directoryBacked) {
|
|
22207
|
+
if (rel) throw new Error(`Refusing nested CloudSync path for file category: ${remotePath}`);
|
|
22208
|
+
return localPath;
|
|
22209
|
+
}
|
|
22210
|
+
if (!rel) return localPath;
|
|
22211
|
+
const normalizedRel = path6.normalize(rel);
|
|
22212
|
+
const traversesUp = normalizedRel === ".." || normalizedRel.startsWith(`..${path6.sep}`);
|
|
22213
|
+
if (path6.isAbsolute(normalizedRel) || traversesUp) {
|
|
22214
|
+
throw new Error(`Refusing CloudSync path traversal: ${remotePath}`);
|
|
22215
|
+
}
|
|
22216
|
+
const dest = path6.resolve(localPath, normalizedRel);
|
|
22217
|
+
const root = path6.resolve(localPath);
|
|
22218
|
+
const relative7 = path6.relative(root, dest);
|
|
22219
|
+
if (relative7.startsWith("..") || path6.isAbsolute(relative7)) {
|
|
22220
|
+
throw new Error(`Refusing CloudSync path outside category root: ${remotePath}`);
|
|
22221
|
+
}
|
|
22222
|
+
return dest;
|
|
22223
|
+
}
|
|
22172
22224
|
function timeAgo(iso) {
|
|
22173
22225
|
const diff = Date.now() - new Date(iso).getTime();
|
|
22174
22226
|
const mins = Math.floor(diff / 6e4);
|
|
@@ -23337,7 +23389,7 @@ var SecurityScannerOrchestrator = class {
|
|
|
23337
23389
|
const delay = Math.round(policy.delayMs(attempt));
|
|
23338
23390
|
const status = isProviderErr ? err.status : 0;
|
|
23339
23391
|
console.warn(`[SecurityScanner] retry ${attempt + 1} after ${delay}ms (status=${status}) \u2014 ${errAsErr.message}`);
|
|
23340
|
-
await new Promise((
|
|
23392
|
+
await new Promise((resolve12) => setTimeout(resolve12, delay));
|
|
23341
23393
|
return this.completeWithRetry(provider, request, abortController, attempt + 1);
|
|
23342
23394
|
}
|
|
23343
23395
|
}
|
|
@@ -24913,12 +24965,12 @@ function makeContinueToNextIterationTool() {
|
|
|
24913
24965
|
// src/core/iteration-limit.ts
|
|
24914
24966
|
function requestLimitExtension(opts) {
|
|
24915
24967
|
const { events, currentIterations, currentLimit, autoExtend, timeoutMs = 3e4 } = opts;
|
|
24916
|
-
return new Promise((
|
|
24968
|
+
return new Promise((resolve12) => {
|
|
24917
24969
|
let resolved = false;
|
|
24918
24970
|
const timerFired = () => {
|
|
24919
24971
|
if (!resolved) {
|
|
24920
24972
|
resolved = true;
|
|
24921
|
-
|
|
24973
|
+
resolve12(0);
|
|
24922
24974
|
}
|
|
24923
24975
|
};
|
|
24924
24976
|
const timer = setTimeout(timerFired, timeoutMs);
|
|
@@ -24927,14 +24979,14 @@ function requestLimitExtension(opts) {
|
|
|
24927
24979
|
if (!resolved) {
|
|
24928
24980
|
resolved = true;
|
|
24929
24981
|
clearTimeout(timer);
|
|
24930
|
-
|
|
24982
|
+
resolve12(0);
|
|
24931
24983
|
}
|
|
24932
24984
|
};
|
|
24933
24985
|
const grant = (extra) => {
|
|
24934
24986
|
if (!resolved) {
|
|
24935
24987
|
resolved = true;
|
|
24936
24988
|
clearTimeout(timer);
|
|
24937
|
-
|
|
24989
|
+
resolve12(Math.max(0, extra));
|
|
24938
24990
|
}
|
|
24939
24991
|
};
|
|
24940
24992
|
events.emit("iteration.limit_reached", {
|
|
@@ -24948,7 +25000,7 @@ function requestLimitExtension(opts) {
|
|
|
24948
25000
|
if (!resolved) {
|
|
24949
25001
|
resolved = true;
|
|
24950
25002
|
clearTimeout(timer);
|
|
24951
|
-
|
|
25003
|
+
resolve12(100);
|
|
24952
25004
|
}
|
|
24953
25005
|
});
|
|
24954
25006
|
}
|
|
@@ -25540,13 +25592,13 @@ var Agent = class {
|
|
|
25540
25592
|
}
|
|
25541
25593
|
}
|
|
25542
25594
|
waitForConfirm(info) {
|
|
25543
|
-
return new Promise((
|
|
25595
|
+
return new Promise((resolve12) => {
|
|
25544
25596
|
this.events.emit("tool.confirm_needed", {
|
|
25545
25597
|
tool: info.tool,
|
|
25546
25598
|
input: info.input,
|
|
25547
25599
|
toolUseId: info.toolUseId,
|
|
25548
25600
|
suggestedPattern: info.suggestedPattern,
|
|
25549
|
-
resolve:
|
|
25601
|
+
resolve: resolve12
|
|
25550
25602
|
});
|
|
25551
25603
|
});
|
|
25552
25604
|
}
|
|
@@ -26399,12 +26451,12 @@ ${mem}`);
|
|
|
26399
26451
|
}
|
|
26400
26452
|
}
|
|
26401
26453
|
async gitStatus(root) {
|
|
26402
|
-
return new Promise((
|
|
26454
|
+
return new Promise((resolve12) => {
|
|
26403
26455
|
let settled = false;
|
|
26404
26456
|
const finish = (s) => {
|
|
26405
26457
|
if (settled) return;
|
|
26406
26458
|
settled = true;
|
|
26407
|
-
|
|
26459
|
+
resolve12(s);
|
|
26408
26460
|
};
|
|
26409
26461
|
let proc;
|
|
26410
26462
|
const timer = setTimeout(() => {
|
|
@@ -27610,7 +27662,7 @@ var PhaseOrchestrator = class {
|
|
|
27610
27662
|
async mergeOne(phase, handle) {
|
|
27611
27663
|
if (!this.worktrees) return;
|
|
27612
27664
|
try {
|
|
27613
|
-
const
|
|
27665
|
+
const resolve12 = this.ctx.resolveConflict ? async (info) => {
|
|
27614
27666
|
const shouldResolve = await this.shouldAttemptConflictResolution(phase, info);
|
|
27615
27667
|
if (!shouldResolve) return false;
|
|
27616
27668
|
this.emit("phase.conflictResolving", {
|
|
@@ -27620,7 +27672,7 @@ var PhaseOrchestrator = class {
|
|
|
27620
27672
|
});
|
|
27621
27673
|
return this.ctx.resolveConflict(phase, info);
|
|
27622
27674
|
} : void 0;
|
|
27623
|
-
const result = await this.worktrees.merge(handle, { squash: true, resolve:
|
|
27675
|
+
const result = await this.worktrees.merge(handle, { squash: true, resolve: resolve12 });
|
|
27624
27676
|
if (result.resolved) {
|
|
27625
27677
|
this.emit("phase.conflictResolved", { phaseId: phase.id, name: phase.name });
|
|
27626
27678
|
}
|
|
@@ -27970,7 +28022,7 @@ var PhaseOrchestrator = class {
|
|
|
27970
28022
|
}
|
|
27971
28023
|
}
|
|
27972
28024
|
delay(ms) {
|
|
27973
|
-
return new Promise((
|
|
28025
|
+
return new Promise((resolve12) => setTimeout(resolve12, ms));
|
|
27974
28026
|
}
|
|
27975
28027
|
};
|
|
27976
28028
|
|
|
@@ -29007,12 +29059,12 @@ var BrainDecisionQueue = class {
|
|
|
29007
29059
|
options: request.options,
|
|
29008
29060
|
rationale: "Decision escalated to human authority."
|
|
29009
29061
|
};
|
|
29010
|
-
const pending = new Promise((
|
|
29011
|
-
const entry = { request, resolve:
|
|
29062
|
+
const pending = new Promise((resolve12) => {
|
|
29063
|
+
const entry = { request, resolve: resolve12 };
|
|
29012
29064
|
if (this.opts.timeoutMs && this.opts.timeoutMs > 0) {
|
|
29013
29065
|
entry.timer = setTimeout(() => {
|
|
29014
29066
|
this.pending.delete(request.id);
|
|
29015
|
-
|
|
29067
|
+
resolve12({ type: "deny", reason: "Brain human decision timed out." });
|
|
29016
29068
|
}, this.opts.timeoutMs);
|
|
29017
29069
|
}
|
|
29018
29070
|
this.pending.set(request.id, entry);
|
|
@@ -29127,8 +29179,8 @@ var CollaborationBus = class {
|
|
|
29127
29179
|
if (this.isPaused()) return false;
|
|
29128
29180
|
this.pausedAtMs = Date.now();
|
|
29129
29181
|
this.pausedBy = byParticipant;
|
|
29130
|
-
this.pausePromise = new Promise((
|
|
29131
|
-
this.pauseResolve =
|
|
29182
|
+
this.pausePromise = new Promise((resolve12) => {
|
|
29183
|
+
this.pauseResolve = resolve12;
|
|
29132
29184
|
});
|
|
29133
29185
|
return true;
|
|
29134
29186
|
}
|
|
@@ -29164,8 +29216,8 @@ var CollaborationBus = class {
|
|
|
29164
29216
|
return true;
|
|
29165
29217
|
}
|
|
29166
29218
|
let timer;
|
|
29167
|
-
const timeoutPromise = new Promise((
|
|
29168
|
-
timer = setTimeout(() =>
|
|
29219
|
+
const timeoutPromise = new Promise((resolve12) => {
|
|
29220
|
+
timer = setTimeout(() => resolve12("timeout"), timeoutMs);
|
|
29169
29221
|
});
|
|
29170
29222
|
const resumedPromise = this.pausePromise.then(() => "resumed");
|
|
29171
29223
|
const winner = await Promise.race([resumedPromise, timeoutPromise]);
|
|
@@ -29656,7 +29708,7 @@ function createGitPlugin() {
|
|
|
29656
29708
|
}
|
|
29657
29709
|
async function runGit(args, cwd) {
|
|
29658
29710
|
try {
|
|
29659
|
-
return await new Promise((
|
|
29711
|
+
return await new Promise((resolve12, reject) => {
|
|
29660
29712
|
const child = spawn("git", args, { cwd, stdio: ["ignore", "pipe", "pipe"] });
|
|
29661
29713
|
let stdout = "";
|
|
29662
29714
|
let stderr = "";
|
|
@@ -29677,7 +29729,7 @@ async function runGit(args, cwd) {
|
|
|
29677
29729
|
})
|
|
29678
29730
|
);
|
|
29679
29731
|
});
|
|
29680
|
-
child.on("close", (code) =>
|
|
29732
|
+
child.on("close", (code) => resolve12({ stdout, stderr, code: code ?? 0 }));
|
|
29681
29733
|
});
|
|
29682
29734
|
} catch (err) {
|
|
29683
29735
|
if (err instanceof WrongStackError) throw err;
|
|
@@ -30353,6 +30405,6 @@ ${formatPlan(updated)}`
|
|
|
30353
30405
|
};
|
|
30354
30406
|
}
|
|
30355
30407
|
|
|
30356
|
-
export { ACP_AGENTS, AGENTS_BY_PHASE, AGENT_CATALOG, AISpecBuilder, ALL_AGENT_DEFINITIONS, ALL_FLEET_AGENTS, ALL_SYNC_CATEGORIES, AUDIT_LOG_AGENT, Agent, AgentError, AnnotationsStore, AutoApprovePermissionPolicy, AutoCompactionMiddleware, AutoExecutor, AutoPhasePlanner, AutoPhaseRunner, AutonomousRunner, BUG_HUNTER_AGENT, BrainDecisionQueue, BudgetExceededError, CONTEXT_WINDOW_MODES, CORE_RECONSTRUCT_EVENTS, CheckpointManager, CloudSync, CollaborationBus, ConfigError, ConfigMigrationError, Container, Context, ConversationState, DEFAULT_AUTONOMY_CONFIG, DEFAULT_CONFIG_MIGRATIONS, DEFAULT_CONTEXT_CONFIG, DEFAULT_CONTEXT_WINDOW_MODE_ID, DEFAULT_DIRECTOR_PREAMBLE, DEFAULT_DISPATCH_ROLE, DEFAULT_MAX_ITERATIONS, DEFAULT_MODES, DEFAULT_RECOVERY_STRATEGIES, DEFAULT_SESSION_LOGGING_CONFIG, DEFAULT_SPEC_TEMPLATE, DEFAULT_SUBAGENT_BASELINE, DEFAULT_TOOLS_CONFIG, DefaultAttachmentStore, DefaultBrainArbiter, DefaultConfigLoader, DefaultConfigStore, DefaultErrorHandler, DefaultHealthRegistry, DefaultLogger, DefaultMemoryStore, DefaultModeStore, DefaultModelsRegistry, DefaultMultiAgentCoordinator, DefaultPathResolver, DefaultPermissionPolicy, DefaultPluginAPI, DefaultPromptStore, DefaultProviderRunner, DefaultRetryPolicy, DefaultSecretScrubber, DefaultSecretVault, DefaultSessionReader, DefaultSessionRewinder, DefaultSessionStore, DefaultSkillLoader, DefaultSystemPromptBuilder, DefaultTaskStore, DefaultTokenCounter, Director, DirectorStateCheckpoint, DoneConditionChecker, ERROR_CODES, EternalAutonomyEngine, EventBus, ExtensionRegistry, FLEET_ROSTER, FLEET_ROSTER_BUDGETS, FLEET_ROSTER_WITHACP, FleetBus, FleetCostCapError, FleetManager, FleetSpawnBudgetError, FleetUsageAggregator, FsError, GitignoreUpdater, HumanEscalatingBrainArbiter, HybridCompactor, InMemoryAgentBridge, InMemoryBridgeTransport, InMemoryMetricsSink, InputBuilder, IntelligentCompactor, KERNEL_API_VERSION, LAYER_1_IDENTITY, LLMSelector, MATRIX_PHASE_KEYS, MAX_JOURNAL_ENTRIES, NULL_FLEET_BUS, NoopMetricsSink, NoopTracer, OTelTracer, ObservableBrainArbiter, PROMETHEUS_CONTENT_TYPE, ParallelEternalEngine, PhaseGraphBuilder, PhaseOrchestrator, PhaseStore, Pipeline, PluginError, ProviderError, ProviderRegistry, QueueStore, REFACTOR_PLANNER_AGENT, RecoveryLock, ReplayLogStore, ReplayProviderRunner, ReportGenerator, RunController, SECURITY_SCANNER_AGENT, SPEC_TEMPLATES, STANDARD_AUDIT_EVENTS, ScopedEventBus, SddParallelRun, SddTaskDecomposer, SecurityScanner, SecurityScannerOrchestrator, SelectiveCompactor, SessionAnalyzer, SessionError, SessionRecovery, SkillGenerator, SkillInstaller, SkillManifestStore, SlashCommandRegistry, SpecDrivenDev, SpecParser, SpecStore, SpecVersioning, SubagentBudget, TOKENS, TaskFlow, TaskGenerator, TaskGraphStore, TaskTracker, TechStackDetector, ToolAuditLog, ToolError, ToolExecutor, ToolRegistry, WorktreeManager, WrongStackError, addPlanItem, allServers, analyzeCriticalPath, appendJournal, applyRosterBudget, asBlocks, asText, assertSafePath, atomicWrite, attachAutoExtend, attachPlanCheckpoint, attachTodosCheckpoint, awsServer, blockServer, bootConfig, braveSearchServer, buildBtwBlock, buildChildEnv, buildGoalPreamble, buildOtlpMetricsRequest, buildOtlpTracesRequest, buildRecoveryStrategies, classifyFamily, clearPlan, collabInjectMiddleware, collabPauseMiddleware, color, compileGlob, compileUserRegex, completePartialObject, composeDirectorPrompt, composeSubagentPrompt, computeTaskProgress, consumeBtwNotes, context7Server, contextManagerTool, createAutoExecutor, createAutoPhaseFromTaskGraph, createContextManagerTool, createDefaultPipelines, createDelegateTool, createGitPlugin, createMcpControlTool, createMessage, createObservabilityPlugin, createPlanPlugin, createPromptsPlugin, createSecurityPlugin, createSecuritySlashCommand, createSessionEventBridge, createSkillsPlugin, createSyncPlugin, createToolOutputSerializer, decryptConfigSecrets, defaultGitignoreUpdater, defaultOrchestrator, defaultReportGenerator, defaultSecurityScanner, defaultSkillGenerator, defaultTechStackDetector, deriveTodosFromPlanItem, detectNewlineStyle, dispatchAgent, downloadGitHubTarball, emptyGoal, emptyPlan, encryptConfigSecrets, ensureDir, estimateRequestTokens, estimateRequestTokensCalibrated, estimateTextTokens, estimateToolDefTokens, estimateToolInputTokens, estimateToolResultTokens, everArtServer, expandGlob, extractRunEnv, filesystemServer, findCriticalPath, flagsToConfigPatch, formatContextWindowModeList, formatGoal, formatHumanPrompt, formatPlan, formatPlanTemplates, formatTodosList, getAgentDefinition, getCalibrationState, getContextWindowMode, getPlanTemplate, getTemplate, getTermSize, githubServer, goalFilePath, googleMapsServer, hashRequest, isAgentError, isConfigError, isContextWindowModeId, isFsError, isImageBlock, isInteractive, isPluginError, isSessionError, isStdinTTY, isStdoutTTY, isTextBlock, isThinkingBlock, isToolError, isToolResultBlock, isToolUseBlock, isValidMatrixKey, isWrongStackError, listContextWindowModes, listPlanTemplates, listTemplates, loadDirectorState, loadGoal, loadPlan, loadPlugins, loadProjectModes, loadTodosCheckpoint, loadUserModes, makeAgentSubagentRunner, makeAskTool, makeAssignTool, makeAutonomyPromptContributor, makeAwaitTasksTool, makeCollabDebugTool, makeContinueToNextIterationTool, makeDirectorSessionFactory, makeFleetEmitTool, makeFleetHealthTool, makeFleetSessionTool, makeFleetStatusTool, makeFleetUsageTool, makeLLMClassifier, makeRollUpTool, makeSpawnTool, makeTerminateTool, matchAny, matchGlob, matrixKeyKind, mergeModelsPayload, migratePlaintextSecrets, miniMaxVisionServer, normalizeToLf, onResize, parseContinueDirective, parseSkillRef, pendingBtwCount, phaseForRole, projectHash, recordActualUsage, removePlanItem, renderProgress, renderPrometheus, renderSpecAnalysis, renderTaskGraph, renderTaskList, repairToolUseAdjacency, resetCalibration, resolveAuditLevel, resolveContextWindowPolicy, resolveModelMatrix, resolveSessionLoggingConfig, resolveWstackPaths, rewriteConfigEncrypted, rosterSummaryFromConfigs, runConfigMigrations, runProviderWithRetry, safeParse, safeStringify, sanitizeJsonString, saveGoal, savePlan, saveTodosCheckpoint, scoreAgents, securitySlashCommand, sentinelServer, setBtwNote, setPlanItemStatus, setRawMode, slackServer, stableStringify, startMetricsServer, startOtlpMetricsExporter, startOtlpTraceExporter, stripAnsi, summarizeUsage, templateToMarkdown, toStyle, toWrongStackError, topologicalSort, unifiedDiff, unloadPlugins, validateAgainstSchema, wireMetricsToEvents, wrapAsState, writeErr, writeOut, zaiVisionServer };
|
|
30408
|
+
export { ACP_AGENTS, AGENTS_BY_PHASE, AGENT_CATALOG, AISpecBuilder, ALL_AGENT_DEFINITIONS, ALL_FLEET_AGENTS, ALL_SYNC_CATEGORIES, AUDIT_LOG_AGENT, Agent, AgentError, AnnotationsStore, AutoApprovePermissionPolicy, AutoCompactionMiddleware, AutoExecutor, AutoPhasePlanner, AutoPhaseRunner, AutonomousRunner, BUG_HUNTER_AGENT, BrainDecisionQueue, BudgetExceededError, CONTEXT_WINDOW_MODES, CORE_RECONSTRUCT_EVENTS, CheckpointManager, CloudSync, CollaborationBus, ConfigError, ConfigMigrationError, Container, Context, ConversationState, DEFAULT_AUTONOMY_CONFIG, DEFAULT_CONFIG_MIGRATIONS, DEFAULT_CONTEXT_CONFIG, DEFAULT_CONTEXT_WINDOW_MODE_ID, DEFAULT_DIRECTOR_PREAMBLE, DEFAULT_DISPATCH_ROLE, DEFAULT_MAX_ITERATIONS, DEFAULT_MODES, DEFAULT_RECOVERY_STRATEGIES, DEFAULT_SESSION_LOGGING_CONFIG, DEFAULT_SPEC_TEMPLATE, DEFAULT_SUBAGENT_BASELINE, DEFAULT_TOOLS_CONFIG, DefaultAttachmentStore, DefaultBrainArbiter, DefaultConfigLoader, DefaultConfigStore, DefaultErrorHandler, DefaultHealthRegistry, DefaultLogger, DefaultMemoryStore, DefaultModeStore, DefaultModelsRegistry, DefaultMultiAgentCoordinator, DefaultPathResolver, DefaultPermissionPolicy, DefaultPluginAPI, DefaultPromptStore, DefaultProviderRunner, DefaultRetryPolicy, DefaultSecretScrubber, DefaultSecretVault, DefaultSessionReader, DefaultSessionRewinder, DefaultSessionStore, DefaultSkillLoader, DefaultSystemPromptBuilder, DefaultTaskStore, DefaultTokenCounter, Director, DirectorStateCheckpoint, DoneConditionChecker, ERROR_CODES, EternalAutonomyEngine, EventBus, ExtensionRegistry, FLEET_ROSTER, FLEET_ROSTER_BUDGETS, FLEET_ROSTER_WITHACP, FleetBus, FleetCostCapError, FleetManager, FleetSpawnBudgetError, FleetUsageAggregator, FsError, GitignoreUpdater, HumanEscalatingBrainArbiter, HybridCompactor, InMemoryAgentBridge, InMemoryBridgeTransport, InMemoryMetricsSink, InputBuilder, IntelligentCompactor, KERNEL_API_VERSION, LAYER_1_IDENTITY, LLMSelector, MATRIX_PHASE_KEYS, MAX_JOURNAL_ENTRIES, NULL_FLEET_BUS, NoopMetricsSink, NoopTracer, OTelTracer, ObservableBrainArbiter, PROMETHEUS_CONTENT_TYPE, ParallelEternalEngine, PhaseGraphBuilder, PhaseOrchestrator, PhaseStore, Pipeline, PluginError, ProviderError, ProviderRegistry, QueueStore, REFACTOR_PLANNER_AGENT, RecoveryLock, ReplayLogStore, ReplayProviderRunner, ReportGenerator, RunController, SECURITY_SCANNER_AGENT, SPEC_TEMPLATES, STANDARD_AUDIT_EVENTS, ScopedEventBus, SddParallelRun, SddTaskDecomposer, SecurityScanner, SecurityScannerOrchestrator, SelectiveCompactor, SessionAnalyzer, SessionError, SessionRecovery, SkillGenerator, SkillInstaller, SkillManifestStore, SlashCommandRegistry, SpecDrivenDev, SpecParser, SpecStore, SpecVersioning, SubagentBudget, TOKENS, TaskFlow, TaskGenerator, TaskGraphStore, TaskTracker, TechStackDetector, ToolAuditLog, ToolError, ToolExecutor, ToolRegistry, WorktreeManager, WrongStackError, addPlanItem, allServers, analyzeCriticalPath, appendJournal, applyRosterBudget, asBlocks, asText, assertSafePath, atomicWrite, attachAutoExtend, attachPlanCheckpoint, attachTodosCheckpoint, awsServer, blockServer, bootConfig, braveSearchServer, buildBtwBlock, buildChildEnv, buildGoalPreamble, buildOtlpMetricsRequest, buildOtlpTracesRequest, buildRecoveryStrategies, classifyFamily, clearPlan, collabInjectMiddleware, collabPauseMiddleware, color, compileGlob, compileUserRegex, completePartialObject, composeDirectorPrompt, composeSubagentPrompt, computeTaskProgress, consumeBtwNotes, context7Server, contextManagerTool, createAutoExecutor, createAutoPhaseFromTaskGraph, createContextManagerTool, createDefaultPipelines, createDelegateTool, createGitPlugin, createMcpControlTool, createMessage, createObservabilityPlugin, createPlanPlugin, createPromptsPlugin, createSecurityPlugin, createSecuritySlashCommand, createSessionEventBridge, createSkillsPlugin, createSyncPlugin, createToolOutputSerializer, decryptConfigSecrets, defaultGitignoreUpdater, defaultOrchestrator, defaultReportGenerator, defaultSecurityScanner, defaultSkillGenerator, defaultTechStackDetector, deriveTodosFromPlanItem, detectNewlineStyle, dispatchAgent, downloadGitHubTarball, emptyGoal, emptyPlan, encryptConfigSecrets, ensureDir, estimateRequestTokens, estimateRequestTokensCalibrated, estimateTextTokens, estimateToolDefTokens, estimateToolInputTokens, estimateToolResultTokens, everArtServer, expandGlob, extractRunEnv, filesystemServer, findCriticalPath, flagsToConfigPatch, formatContextWindowModeList, formatGoal, formatHumanPrompt, formatPlan, formatPlanTemplates, formatTodosList, getAgentDefinition, getCalibrationState, getContextWindowMode, getPlanTemplate, getTemplate, getTermSize, githubServer, goalFilePath, googleMapsServer, hashRequest, isAgentError, isConfigError, isContextWindowModeId, isFsError, isImageBlock, isInteractive, isPluginError, isSessionError, isStdinTTY, isStdoutTTY, isTextBlock, isThinkingBlock, isToolError, isToolResultBlock, isToolUseBlock, isValidMatrixKey, isWrongStackError, listContextWindowModes, listPlanTemplates, listTemplates, loadDirectorState, loadGoal, loadPlan, loadPlugins, loadProjectModes, loadTodosCheckpoint, loadUserModes, makeAgentSubagentRunner, makeAskTool, makeAssignTool, makeAutonomyPromptContributor, makeAwaitTasksTool, makeCollabDebugTool, makeContinueToNextIterationTool, makeDirectorSessionFactory, makeFleetEmitTool, makeFleetHealthTool, makeFleetSessionTool, makeFleetStatusTool, makeFleetUsageTool, makeLLMClassifier, makeRollUpTool, makeSpawnTool, makeTerminateTool, matchAny, matchGlob, matrixKeyKind, mergeCustomModelDefs, mergeModelsPayload, migratePlaintextSecrets, miniMaxVisionServer, normalizeToLf, onResize, parseContinueDirective, parseSkillRef, pendingBtwCount, phaseForRole, projectHash, recordActualUsage, removePlanItem, renderProgress, renderPrometheus, renderSpecAnalysis, renderTaskGraph, renderTaskList, repairToolUseAdjacency, resetCalibration, resolveAuditLevel, resolveContextWindowPolicy, resolveModelMatrix, resolveSessionLoggingConfig, resolveWstackPaths, rewriteConfigEncrypted, rosterSummaryFromConfigs, runConfigMigrations, runProviderWithRetry, safeParse, safeStringify, sanitizeJsonString, saveGoal, savePlan, saveTodosCheckpoint, scoreAgents, securitySlashCommand, sentinelServer, setBtwNote, setPlanItemStatus, setRawMode, slackServer, stableStringify, startMetricsServer, startOtlpMetricsExporter, startOtlpTraceExporter, stripAnsi, summarizeUsage, templateToMarkdown, toStyle, toWrongStackError, topologicalSort, unifiedDiff, unloadPlugins, validateAgainstSchema, wireMetricsToEvents, wrapAsState, writeErr, writeOut, zaiVisionServer };
|
|
30357
30409
|
//# sourceMappingURL=index.js.map
|
|
30358
30410
|
//# sourceMappingURL=index.js.map
|