@agenticmail/enterprise 0.5.354 → 0.5.355
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-heartbeat-R2C7R2WF.js → agent-heartbeat-ZCVMYFMO.js} +1 -1
- package/dist/{agent-tools-KPMEG6GA.js → agent-tools-LOVO4CLJ.js} +47 -1
- package/dist/{chunk-KEZCVP5G.js → chunk-3VZOFEQF.js} +13 -13
- package/dist/{chunk-ZGYVXYQQ.js → chunk-5WDYN4UV.js} +107 -71
- package/dist/{chunk-NOAQG5CY.js → chunk-HIQY73V2.js} +1 -1
- package/dist/{chunk-JZ5IXBPI.js → chunk-PPGBBASR.js} +20 -20
- package/dist/{chunk-55OZMX4U.js → chunk-RCCWFEZI.js} +4 -4
- package/dist/{chunk-Z6TCU3Z5.js → chunk-WECNT5FR.js} +2 -2
- package/dist/{cli-agent-FANXZL4X.js → cli-agent-SPDASSB7.js} +6 -6
- package/dist/{cli-serve-2VYQM5KP.js → cli-serve-JS5CDMOW.js} +1 -1
- package/dist/{cli-validate-Z726VJCN.js → cli-validate-ZO3PW64W.js} +1 -1
- package/dist/cli.js +4 -4
- package/dist/index.js +6 -6
- package/dist/{routes-RU4K3BXY.js → routes-S43BQMDK.js} +3 -3
- package/dist/{runtime-AIHMXQXU.js → runtime-3GLGCAGF.js} +1 -1
- package/dist/{server-OVZSPJLB.js → server-5URLZCXN.js} +4 -4
- package/dist/{setup-QZWQDG2J.js → setup-R2ECMQLR.js} +1 -1
- package/dist/{skills-EL4RTJKK.js → skills-4MHEPJGC.js} +2 -2
- package/dist/smtp-email-WGUG4M45.js +332 -0
- package/logs/cloudflared-error.log +2 -0
- package/package.json +1 -1
|
@@ -356,7 +356,7 @@ function createRuntimeHooks(deps) {
|
|
|
356
356
|
var injectedMessages = [...messages];
|
|
357
357
|
if (deps.knowledgeBaseEnabled !== false) {
|
|
358
358
|
try {
|
|
359
|
-
var { knowledgeBase } = await import("./routes-
|
|
359
|
+
var { knowledgeBase } = await import("./routes-S43BQMDK.js");
|
|
360
360
|
var kbs = await knowledgeBase.listForAgent(agentId);
|
|
361
361
|
if (kbs.length > 0) {
|
|
362
362
|
var contextParts = [];
|
|
@@ -389,7 +389,7 @@ ${contextParts.join("\n\n")}`;
|
|
|
389
389
|
}
|
|
390
390
|
if (deps.memoryEnabled !== false) {
|
|
391
391
|
try {
|
|
392
|
-
var { memoryManager } = await import("./routes-
|
|
392
|
+
var { memoryManager } = await import("./routes-S43BQMDK.js");
|
|
393
393
|
var memories = await memoryManager.queryMemories({
|
|
394
394
|
agentId,
|
|
395
395
|
limit: 10,
|
|
@@ -410,7 +410,7 @@ ${memories.map(function(m) {
|
|
|
410
410
|
}
|
|
411
411
|
if (deps.policyEnabled !== false) {
|
|
412
412
|
try {
|
|
413
|
-
var { policyEngine } = await import("./routes-
|
|
413
|
+
var { policyEngine } = await import("./routes-S43BQMDK.js");
|
|
414
414
|
var policies = await policyEngine.getAgentPolicies(agentId, deps.orgId);
|
|
415
415
|
if (policies.length > 0) {
|
|
416
416
|
var policyText = policies.map(function(p) {
|
|
@@ -435,7 +435,7 @@ ${policyText}`;
|
|
|
435
435
|
// ─── Budget Check ──────────────────────────────
|
|
436
436
|
async checkBudget(agentId, _orgId, _estimatedTokens) {
|
|
437
437
|
try {
|
|
438
|
-
var { lifecycle } = await import("./routes-
|
|
438
|
+
var { lifecycle } = await import("./routes-S43BQMDK.js");
|
|
439
439
|
var now = Date.now();
|
|
440
440
|
var cacheKey = `budget_sync_${agentId}`;
|
|
441
441
|
var lastSync = globalThis[cacheKey] || 0;
|
|
@@ -528,7 +528,7 @@ ${policyText}`;
|
|
|
528
528
|
// ─── Record LLM Usage ──────────────────────────
|
|
529
529
|
async recordLLMUsage(agentId, orgId, usage) {
|
|
530
530
|
try {
|
|
531
|
-
var { lifecycle } = await import("./routes-
|
|
531
|
+
var { lifecycle } = await import("./routes-S43BQMDK.js");
|
|
532
532
|
console.log(`[hooks] recordLLMUsage: agent=${agentId}, input=${usage.inputTokens}, output=${usage.outputTokens}`);
|
|
533
533
|
await lifecycle.recordLLMUsage(agentId, {
|
|
534
534
|
inputTokens: usage.inputTokens,
|
|
@@ -539,7 +539,7 @@ ${policyText}`;
|
|
|
539
539
|
console.log(`[hooks] recordLLMUsage error: ${recordErr.message}`);
|
|
540
540
|
}
|
|
541
541
|
try {
|
|
542
|
-
var { activity } = await import("./routes-
|
|
542
|
+
var { activity } = await import("./routes-S43BQMDK.js");
|
|
543
543
|
await activity.record({
|
|
544
544
|
agentId,
|
|
545
545
|
orgId,
|
|
@@ -587,7 +587,7 @@ ${policyText}`;
|
|
|
587
587
|
var cacheKey = `${ctx.agentId}:${ctx.toolName}`;
|
|
588
588
|
var cached = getCachedPermission(cacheKey);
|
|
589
589
|
if (cached) return cached;
|
|
590
|
-
var { permissionEngine } = await import("./routes-
|
|
590
|
+
var { permissionEngine } = await import("./routes-S43BQMDK.js");
|
|
591
591
|
var permResult = await permissionEngine.checkPermission(ctx.agentId, ctx.toolName);
|
|
592
592
|
var result = {
|
|
593
593
|
allowed: permResult.allowed,
|
|
@@ -596,7 +596,7 @@ ${policyText}`;
|
|
|
596
596
|
};
|
|
597
597
|
if (result.allowed && deps.guardrailsEnabled !== false) {
|
|
598
598
|
try {
|
|
599
|
-
var { guardrails } = await import("./routes-
|
|
599
|
+
var { guardrails } = await import("./routes-S43BQMDK.js");
|
|
600
600
|
var status = await guardrails.getStatus(ctx.agentId);
|
|
601
601
|
if (status.paused || status.offDuty) {
|
|
602
602
|
result.allowed = false;
|
|
@@ -608,7 +608,7 @@ ${policyText}`;
|
|
|
608
608
|
}
|
|
609
609
|
if (result.allowed && deps.dlpEnabled !== false && ctx.parameters) {
|
|
610
610
|
try {
|
|
611
|
-
var { dlp } = await import("./routes-
|
|
611
|
+
var { dlp } = await import("./routes-S43BQMDK.js");
|
|
612
612
|
var dlpResult = await dlp.scanParameters({
|
|
613
613
|
orgId: ctx.orgId,
|
|
614
614
|
agentId: ctx.agentId,
|
|
@@ -628,7 +628,7 @@ ${policyText}`;
|
|
|
628
628
|
}
|
|
629
629
|
if (result.requiresApproval && result.allowed) {
|
|
630
630
|
try {
|
|
631
|
-
var { approvals } = await import("./routes-
|
|
631
|
+
var { approvals } = await import("./routes-S43BQMDK.js");
|
|
632
632
|
var approval = await approvals.createAndWait({
|
|
633
633
|
agentId: ctx.agentId,
|
|
634
634
|
orgId: ctx.orgId,
|
|
@@ -658,7 +658,7 @@ ${policyText}`;
|
|
|
658
658
|
// ─── After Tool Call ────────────────────────────
|
|
659
659
|
async afterToolCall(ctx, result) {
|
|
660
660
|
try {
|
|
661
|
-
var { activity } = await import("./routes-
|
|
661
|
+
var { activity } = await import("./routes-S43BQMDK.js");
|
|
662
662
|
await activity.record({
|
|
663
663
|
agentId: ctx.agentId,
|
|
664
664
|
orgId: ctx.orgId,
|
|
@@ -675,7 +675,7 @@ ${policyText}`;
|
|
|
675
675
|
} catch {
|
|
676
676
|
}
|
|
677
677
|
try {
|
|
678
|
-
var { lifecycle } = await import("./routes-
|
|
678
|
+
var { lifecycle } = await import("./routes-S43BQMDK.js");
|
|
679
679
|
await lifecycle.recordToolCall(ctx.agentId, {
|
|
680
680
|
toolId: ctx.toolName,
|
|
681
681
|
tokensUsed: 0,
|
|
@@ -687,7 +687,7 @@ ${policyText}`;
|
|
|
687
687
|
}
|
|
688
688
|
if (result.success && EXTERNAL_TOOLS.has(ctx.toolName)) {
|
|
689
689
|
try {
|
|
690
|
-
var { journal } = await import("./routes-
|
|
690
|
+
var { journal } = await import("./routes-S43BQMDK.js");
|
|
691
691
|
await journal.record({
|
|
692
692
|
orgId: ctx.orgId,
|
|
693
693
|
agentId: ctx.agentId,
|
|
@@ -702,7 +702,7 @@ ${policyText}`;
|
|
|
702
702
|
}
|
|
703
703
|
if (result.success && COMMUNICATION_TOOLS.has(ctx.toolName)) {
|
|
704
704
|
try {
|
|
705
|
-
var { commBus } = await import("./routes-
|
|
705
|
+
var { commBus } = await import("./routes-S43BQMDK.js");
|
|
706
706
|
await commBus.observeMessage({
|
|
707
707
|
orgId: ctx.orgId,
|
|
708
708
|
agentId: ctx.agentId,
|
|
@@ -716,7 +716,7 @@ ${policyText}`;
|
|
|
716
716
|
// ─── Session Lifecycle ──────────────────────────
|
|
717
717
|
async onSessionStart(sessionId, agentId, orgId) {
|
|
718
718
|
try {
|
|
719
|
-
var { activity } = await import("./routes-
|
|
719
|
+
var { activity } = await import("./routes-S43BQMDK.js");
|
|
720
720
|
await activity.record({
|
|
721
721
|
agentId,
|
|
722
722
|
orgId,
|
|
@@ -729,7 +729,7 @@ ${policyText}`;
|
|
|
729
729
|
},
|
|
730
730
|
async onSessionEnd(sessionId, agentId, orgId) {
|
|
731
731
|
try {
|
|
732
|
-
var { activity } = await import("./routes-
|
|
732
|
+
var { activity } = await import("./routes-S43BQMDK.js");
|
|
733
733
|
await activity.record({
|
|
734
734
|
agentId,
|
|
735
735
|
orgId,
|
|
@@ -743,7 +743,7 @@ ${policyText}`;
|
|
|
743
743
|
// ─── Context Compaction ─────────────────────────
|
|
744
744
|
async onContextCompaction(sessionId, agentId, summary) {
|
|
745
745
|
try {
|
|
746
|
-
var { memoryManager } = await import("./routes-
|
|
746
|
+
var { memoryManager } = await import("./routes-S43BQMDK.js");
|
|
747
747
|
await memoryManager.createMemory({
|
|
748
748
|
agentId,
|
|
749
749
|
orgId: deps.orgId,
|
|
@@ -2518,7 +2518,7 @@ async function runAgentLoop(config, initialMessages, hooks, options) {
|
|
|
2518
2518
|
console.log(`[agent-loop] \u2705 Tool ${toolCall.name} succeeded (${content.length} chars): ${content.slice(0, 300)}`);
|
|
2519
2519
|
}
|
|
2520
2520
|
try {
|
|
2521
|
-
const { activity } = await import("./routes-
|
|
2521
|
+
const { activity } = await import("./routes-S43BQMDK.js");
|
|
2522
2522
|
activity.recordToolCallCompact({
|
|
2523
2523
|
agentId: config.agentId,
|
|
2524
2524
|
orgId: config.orgId,
|
|
@@ -3385,7 +3385,7 @@ function createRequestToolsTool(allTools, activeSets, _context) {
|
|
|
3385
3385
|
};
|
|
3386
3386
|
}
|
|
3387
3387
|
async function createToolsForContext(options, context, opts) {
|
|
3388
|
-
const { createAllTools } = await import("./agent-tools-
|
|
3388
|
+
const { createAllTools } = await import("./agent-tools-LOVO4CLJ.js");
|
|
3389
3389
|
if (context === "full") {
|
|
3390
3390
|
return createAllTools(options);
|
|
3391
3391
|
}
|
|
@@ -4028,7 +4028,7 @@ var AgentRuntime = class {
|
|
|
4028
4028
|
};
|
|
4029
4029
|
if (this.config.getEmailConfig) {
|
|
4030
4030
|
const ec = this.config.getEmailConfig(agentId);
|
|
4031
|
-
if (ec?.oauthAccessToken) {
|
|
4031
|
+
if (ec?.oauthAccessToken || ec?.smtpHost) {
|
|
4032
4032
|
base.emailConfig = ec;
|
|
4033
4033
|
if (this.config.onTokenRefresh) {
|
|
4034
4034
|
const onRefresh = this.config.onTokenRefresh;
|
|
@@ -34,7 +34,7 @@ import {
|
|
|
34
34
|
PermissionEngine,
|
|
35
35
|
SKILL_SUITES,
|
|
36
36
|
init_skills as init_skills2
|
|
37
|
-
} from "./chunk-
|
|
37
|
+
} from "./chunk-HIQY73V2.js";
|
|
38
38
|
import {
|
|
39
39
|
AgentConfigGenerator,
|
|
40
40
|
DeploymentEngine,
|
|
@@ -62,7 +62,7 @@ import {
|
|
|
62
62
|
FULL_SKILL_DEFINITIONS,
|
|
63
63
|
init_emoji,
|
|
64
64
|
init_skills
|
|
65
|
-
} from "./chunk-
|
|
65
|
+
} from "./chunk-5WDYN4UV.js";
|
|
66
66
|
import {
|
|
67
67
|
VALID_CATEGORIES,
|
|
68
68
|
init_skill_validator,
|
|
@@ -7075,7 +7075,7 @@ function createAgentRoutes(opts) {
|
|
|
7075
7075
|
if (presetName || permissionsData) {
|
|
7076
7076
|
let profile = { id: agentId, name: presetName || "Custom", createdAt: (/* @__PURE__ */ new Date()).toISOString(), updatedAt: (/* @__PURE__ */ new Date()).toISOString() };
|
|
7077
7077
|
if (presetName) {
|
|
7078
|
-
const { PRESET_PROFILES: PRESET_PROFILES2 } = await import("./skills-
|
|
7078
|
+
const { PRESET_PROFILES: PRESET_PROFILES2 } = await import("./skills-4MHEPJGC.js");
|
|
7079
7079
|
const preset = PRESET_PROFILES2.find((p) => p.name === presetName);
|
|
7080
7080
|
if (preset) Object.assign(profile, preset);
|
|
7081
7081
|
}
|
|
@@ -7103,7 +7103,7 @@ function createAgentRoutes(opts) {
|
|
|
7103
7103
|
}
|
|
7104
7104
|
const managedAgent = await lifecycle2.createAgent(orgId, config, actor);
|
|
7105
7105
|
try {
|
|
7106
|
-
const { knowledgeBase: kbEngine } = await import("./routes-
|
|
7106
|
+
const { knowledgeBase: kbEngine } = await import("./routes-S43BQMDK.js");
|
|
7107
7107
|
const allKbs = kbEngine.getAllKnowledgeBases();
|
|
7108
7108
|
const clientOrgId = managedAgent?.clientOrgId || config?.clientOrgId || null;
|
|
7109
7109
|
let kbAssigned = 0;
|
|
@@ -1234,7 +1234,7 @@ async function deploy(config, db, jwtSecret, vaultKey, spinner, chalk) {
|
|
|
1234
1234
|
const { deployTarget, company, database, domain, tunnel, cloud } = config;
|
|
1235
1235
|
if (deployTarget === "cloudflare-tunnel" && tunnel) {
|
|
1236
1236
|
spinner.start(`Starting local server on port ${tunnel.port}...`);
|
|
1237
|
-
const { createServer: createServer2 } = await import("./server-
|
|
1237
|
+
const { createServer: createServer2 } = await import("./server-5URLZCXN.js");
|
|
1238
1238
|
const server2 = createServer2({ port: tunnel.port, db, jwtSecret });
|
|
1239
1239
|
const handle2 = await server2.start();
|
|
1240
1240
|
spinner.succeed("Server running");
|
|
@@ -1535,7 +1535,7 @@ async function deploy(config, db, jwtSecret, vaultKey, spinner, chalk) {
|
|
|
1535
1535
|
return {};
|
|
1536
1536
|
}
|
|
1537
1537
|
spinner.start("Starting local server...");
|
|
1538
|
-
const { createServer } = await import("./server-
|
|
1538
|
+
const { createServer } = await import("./server-5URLZCXN.js");
|
|
1539
1539
|
const server = createServer({ port: 3e3, db, jwtSecret });
|
|
1540
1540
|
const handle = await server.start();
|
|
1541
1541
|
spinner.succeed("Server running");
|
|
@@ -762,7 +762,7 @@ async function runAgent(_args) {
|
|
|
762
762
|
const agent = agentRow[0];
|
|
763
763
|
console.log(` Agent: ${agent.display_name || agent.name}`);
|
|
764
764
|
console.log(` State: ${agent.state}`);
|
|
765
|
-
const routes = await import("./routes-
|
|
765
|
+
const routes = await import("./routes-S43BQMDK.js");
|
|
766
766
|
await routes.lifecycle.setDb(engineDb);
|
|
767
767
|
await routes.lifecycle.loadFromDb();
|
|
768
768
|
routes.lifecycle.standaloneMode = true;
|
|
@@ -820,10 +820,10 @@ async function runAgent(_args) {
|
|
|
820
820
|
}
|
|
821
821
|
} catch {
|
|
822
822
|
}
|
|
823
|
-
const { createAgentRuntime } = await import("./runtime-
|
|
823
|
+
const { createAgentRuntime } = await import("./runtime-3GLGCAGF.js");
|
|
824
824
|
let orgIntMgr = null;
|
|
825
825
|
try {
|
|
826
|
-
const { orgIntegrations: oi } = await import("./routes-
|
|
826
|
+
const { orgIntegrations: oi } = await import("./routes-S43BQMDK.js");
|
|
827
827
|
orgIntMgr = oi;
|
|
828
828
|
} catch {
|
|
829
829
|
}
|
|
@@ -1222,7 +1222,7 @@ Please complete this task now.`,
|
|
|
1222
1222
|
}
|
|
1223
1223
|
if (scope === "all" || scope === "permissions") {
|
|
1224
1224
|
try {
|
|
1225
|
-
const { permissionEngine } = await import("./routes-
|
|
1225
|
+
const { permissionEngine } = await import("./routes-S43BQMDK.js");
|
|
1226
1226
|
await permissionEngine.setDb(engineDb);
|
|
1227
1227
|
reloaded.push("permissions");
|
|
1228
1228
|
} catch {
|
|
@@ -1262,7 +1262,7 @@ Please complete this task now.`,
|
|
|
1262
1262
|
}
|
|
1263
1263
|
if (scope === "all" || scope === "guardrails") {
|
|
1264
1264
|
try {
|
|
1265
|
-
const { guardrails } = await import("./routes-
|
|
1265
|
+
const { guardrails } = await import("./routes-S43BQMDK.js");
|
|
1266
1266
|
await guardrails.loadFromDb?.();
|
|
1267
1267
|
reloaded.push("guardrails");
|
|
1268
1268
|
} catch {
|
|
@@ -2190,7 +2190,7 @@ Available tools: gmail_send (to, subject, body) or agenticmail_send (to, subject
|
|
|
2190
2190
|
console.log("[guardrails] Disabled via autonomy settings");
|
|
2191
2191
|
}
|
|
2192
2192
|
try {
|
|
2193
|
-
const { AgentHeartbeatManager } = await import("./agent-heartbeat-
|
|
2193
|
+
const { AgentHeartbeatManager } = await import("./agent-heartbeat-ZCVMYFMO.js");
|
|
2194
2194
|
const hbOrgRows = await engineDb.query(`SELECT org_id FROM managed_agents WHERE id = $1`, [AGENT_ID]);
|
|
2195
2195
|
const hbOrgId = hbOrgRows?.[0]?.org_id || "";
|
|
2196
2196
|
const hbManagerEmail = config.managerEmail || (config.manager?.type === "external" ? config.manager.email : null);
|
|
@@ -94,7 +94,7 @@ async function runServe(_args) {
|
|
|
94
94
|
process.exit(1);
|
|
95
95
|
}
|
|
96
96
|
const { createAdapter, smartDbConfig } = await import("./factory-RTZU2K54.js");
|
|
97
|
-
const { createServer } = await import("./server-
|
|
97
|
+
const { createServer } = await import("./server-5URLZCXN.js");
|
|
98
98
|
const db = await createAdapter(smartDbConfig(DATABASE_URL));
|
|
99
99
|
await db.migrate();
|
|
100
100
|
const server = createServer({
|
package/dist/cli.js
CHANGED
|
@@ -5,7 +5,7 @@ var args = process.argv.slice(2);
|
|
|
5
5
|
var command = args[0];
|
|
6
6
|
switch (command) {
|
|
7
7
|
case "validate":
|
|
8
|
-
import("./cli-validate-
|
|
8
|
+
import("./cli-validate-ZO3PW64W.js").then((m) => m.runValidate(args.slice(1))).catch(fatal);
|
|
9
9
|
break;
|
|
10
10
|
case "build-skill":
|
|
11
11
|
import("./cli-build-skill-2IOE7MYP.js").then((m) => m.runBuildSkill(args.slice(1))).catch(fatal);
|
|
@@ -57,14 +57,14 @@ Skill Development:
|
|
|
57
57
|
break;
|
|
58
58
|
case "serve":
|
|
59
59
|
case "start":
|
|
60
|
-
import("./cli-serve-
|
|
60
|
+
import("./cli-serve-JS5CDMOW.js").then((m) => m.runServe(args.slice(1))).catch(fatal);
|
|
61
61
|
break;
|
|
62
62
|
case "agent":
|
|
63
|
-
import("./cli-agent-
|
|
63
|
+
import("./cli-agent-SPDASSB7.js").then((m) => m.runAgent(args.slice(1))).catch(fatal);
|
|
64
64
|
break;
|
|
65
65
|
case "setup":
|
|
66
66
|
default:
|
|
67
|
-
import("./setup-
|
|
67
|
+
import("./setup-R2ECMQLR.js").then((m) => m.runSetupWizard()).catch(fatal);
|
|
68
68
|
break;
|
|
69
69
|
}
|
|
70
70
|
function fatal(err) {
|
package/dist/index.js
CHANGED
|
@@ -13,7 +13,7 @@ import {
|
|
|
13
13
|
import {
|
|
14
14
|
provision,
|
|
15
15
|
runSetupWizard
|
|
16
|
-
} from "./chunk-
|
|
16
|
+
} from "./chunk-WECNT5FR.js";
|
|
17
17
|
import {
|
|
18
18
|
AgentRuntime,
|
|
19
19
|
EmailChannel,
|
|
@@ -28,7 +28,7 @@ import {
|
|
|
28
28
|
executeTool,
|
|
29
29
|
runAgentLoop,
|
|
30
30
|
toolsToDefinitions
|
|
31
|
-
} from "./chunk-
|
|
31
|
+
} from "./chunk-PPGBBASR.js";
|
|
32
32
|
import {
|
|
33
33
|
ValidationError,
|
|
34
34
|
auditLogger,
|
|
@@ -42,7 +42,7 @@ import {
|
|
|
42
42
|
requireRole,
|
|
43
43
|
securityHeaders,
|
|
44
44
|
validate
|
|
45
|
-
} from "./chunk-
|
|
45
|
+
} from "./chunk-3VZOFEQF.js";
|
|
46
46
|
import "./chunk-DJBCRQTD.js";
|
|
47
47
|
import {
|
|
48
48
|
PROVIDER_REGISTRY,
|
|
@@ -82,7 +82,7 @@ import {
|
|
|
82
82
|
init_storage_manager,
|
|
83
83
|
init_tenant,
|
|
84
84
|
init_workforce
|
|
85
|
-
} from "./chunk-
|
|
85
|
+
} from "./chunk-RCCWFEZI.js";
|
|
86
86
|
import "./chunk-3UAFHUEC.js";
|
|
87
87
|
import {
|
|
88
88
|
ENGINE_TABLES,
|
|
@@ -109,7 +109,7 @@ import {
|
|
|
109
109
|
PRESET_PROFILES,
|
|
110
110
|
PermissionEngine,
|
|
111
111
|
init_skills
|
|
112
|
-
} from "./chunk-
|
|
112
|
+
} from "./chunk-HIQY73V2.js";
|
|
113
113
|
import {
|
|
114
114
|
AgentConfigGenerator,
|
|
115
115
|
DeploymentEngine,
|
|
@@ -148,7 +148,7 @@ import {
|
|
|
148
148
|
generateToolPolicy,
|
|
149
149
|
getToolsBySkill,
|
|
150
150
|
init_tool_catalog
|
|
151
|
-
} from "./chunk-
|
|
151
|
+
} from "./chunk-5WDYN4UV.js";
|
|
152
152
|
import {
|
|
153
153
|
VALID_CATEGORIES,
|
|
154
154
|
VALID_RISK_LEVELS,
|
|
@@ -35,7 +35,7 @@ import {
|
|
|
35
35
|
tenants,
|
|
36
36
|
vault,
|
|
37
37
|
workforce
|
|
38
|
-
} from "./chunk-
|
|
38
|
+
} from "./chunk-RCCWFEZI.js";
|
|
39
39
|
import "./chunk-3UAFHUEC.js";
|
|
40
40
|
import "./chunk-Z7NVD3OQ.js";
|
|
41
41
|
import "./chunk-VSBC4SWO.js";
|
|
@@ -44,12 +44,12 @@ import "./chunk-74ZCQKYU.js";
|
|
|
44
44
|
import "./chunk-Z6K5FKAB.js";
|
|
45
45
|
import "./chunk-C6JP5NR6.js";
|
|
46
46
|
import "./chunk-WYDVMFGJ.js";
|
|
47
|
-
import "./chunk-
|
|
47
|
+
import "./chunk-HIQY73V2.js";
|
|
48
48
|
import "./chunk-3IEMACO4.js";
|
|
49
49
|
import "./chunk-YDD5TC5Q.js";
|
|
50
50
|
import "./chunk-FLQ5FLHW.js";
|
|
51
51
|
import "./chunk-WUAWWKTN.js";
|
|
52
|
-
import "./chunk-
|
|
52
|
+
import "./chunk-5WDYN4UV.js";
|
|
53
53
|
import "./chunk-22U7TZPN.js";
|
|
54
54
|
import "./chunk-KFQGP6VL.js";
|
|
55
55
|
init_routes();
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
createServer
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-3VZOFEQF.js";
|
|
4
4
|
import "./chunk-DJBCRQTD.js";
|
|
5
5
|
import "./chunk-UF3ZJMJO.js";
|
|
6
|
-
import "./chunk-
|
|
6
|
+
import "./chunk-RCCWFEZI.js";
|
|
7
7
|
import "./chunk-3UAFHUEC.js";
|
|
8
8
|
import "./chunk-Z7NVD3OQ.js";
|
|
9
9
|
import "./chunk-VSBC4SWO.js";
|
|
@@ -12,7 +12,7 @@ import "./chunk-74ZCQKYU.js";
|
|
|
12
12
|
import "./chunk-Z6K5FKAB.js";
|
|
13
13
|
import "./chunk-C6JP5NR6.js";
|
|
14
14
|
import "./chunk-WYDVMFGJ.js";
|
|
15
|
-
import "./chunk-
|
|
15
|
+
import "./chunk-HIQY73V2.js";
|
|
16
16
|
import "./chunk-3IEMACO4.js";
|
|
17
17
|
import "./chunk-YDD5TC5Q.js";
|
|
18
18
|
import "./chunk-37ABTUFU.js";
|
|
@@ -20,7 +20,7 @@ import "./chunk-NU657BBQ.js";
|
|
|
20
20
|
import "./chunk-PGAU3W3M.js";
|
|
21
21
|
import "./chunk-FLQ5FLHW.js";
|
|
22
22
|
import "./chunk-WUAWWKTN.js";
|
|
23
|
-
import "./chunk-
|
|
23
|
+
import "./chunk-5WDYN4UV.js";
|
|
24
24
|
import "./chunk-22U7TZPN.js";
|
|
25
25
|
import "./chunk-KFQGP6VL.js";
|
|
26
26
|
export {
|