@agenticmail/enterprise 0.5.390 → 0.5.392
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-VKF257FY.js → agent-heartbeat-4ANIPGGS.js} +1 -1
- package/dist/{agent-tools-2XUSIG4S.js → agent-tools-HLCHRVEV.js} +583 -46
- package/dist/{chunk-A2XPEZ7L.js → chunk-7E7MVJI7.js} +203 -21
- package/dist/{chunk-QIDDLWRL.js → chunk-CJ6NJPJ6.js} +16 -16
- package/dist/{chunk-FP4QC3T5.js → chunk-GF6IRQOC.js} +9 -8
- package/dist/{chunk-TCDRCMJJ.js → chunk-GRWV7MDT.js} +1 -1
- package/dist/{chunk-ACP7QSXU.js → chunk-VYP6FF3B.js} +6 -6
- package/dist/{chunk-CCYSUKRG.js → chunk-X54GHR4W.js} +34 -19
- package/dist/{cli-agent-3MGMIL4H.js → cli-agent-WWDX3RIJ.js} +6 -6
- package/dist/{cli-recover-4ENZIKE2.js → cli-recover-HGWHKH6N.js} +2 -1
- package/dist/{cli-serve-GA5EXFOE.js → cli-serve-KNEKNOJT.js} +2 -2
- package/dist/{cli-update-UM7XCICB.js → cli-update-P3TAXEW7.js} +9 -3
- package/dist/{cli-validate-M5OAL2WX.js → cli-validate-5OWQCA4S.js} +1 -1
- package/dist/cli.js +6 -6
- package/dist/{deployer-HN7HPTZU.js → deployer-MCISTNBP.js} +1 -1
- package/dist/index.js +7 -7
- package/dist/{routes-K2GAVUXI.js → routes-DONZ5NBL.js} +4 -4
- package/dist/{runtime-5OKJ5DT6.js → runtime-U3YSWLFD.js} +1 -1
- package/dist/{server-WX52FFA4.js → server-K5QLSS55.js} +5 -5
- package/dist/{setup-KK3N57HP.js → setup-5XWBZMTT.js} +1 -1
- package/dist/{skills-SYCLOBYM.js → skills-OKZFMTQT.js} +2 -2
- package/package.json +1 -1
- /package/dist/{chunk-FT5MAYTU.js → chunk-E6B4W3WG.js} +0 -0
|
@@ -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-DONZ5NBL.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-DONZ5NBL.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-DONZ5NBL.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-DONZ5NBL.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-DONZ5NBL.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-DONZ5NBL.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-DONZ5NBL.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-DONZ5NBL.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-DONZ5NBL.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-DONZ5NBL.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-DONZ5NBL.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-DONZ5NBL.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-DONZ5NBL.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-DONZ5NBL.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-DONZ5NBL.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-DONZ5NBL.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-DONZ5NBL.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-DONZ5NBL.js");
|
|
2522
2522
|
activity.recordToolCallCompact({
|
|
2523
2523
|
agentId: config.agentId,
|
|
2524
2524
|
orgId: config.orgId,
|
|
@@ -2754,6 +2754,7 @@ var TIER_MAP = {
|
|
|
2754
2754
|
ent_security: 3,
|
|
2755
2755
|
ent_code: 3,
|
|
2756
2756
|
ent_diff: 3,
|
|
2757
|
+
remotion_video: 3,
|
|
2757
2758
|
ent_knowledge: 2,
|
|
2758
2759
|
local_filesystem: 2,
|
|
2759
2760
|
local_shell: 2,
|
|
@@ -2974,6 +2975,15 @@ var TOOL_REGISTRY = {
|
|
|
2974
2975
|
ent_diff_json: "ent_diff",
|
|
2975
2976
|
ent_diff_spreadsheet: "ent_diff",
|
|
2976
2977
|
ent_diff_summary: "ent_diff",
|
|
2978
|
+
// ── Remotion Video (8) ──
|
|
2979
|
+
remotion_create_project: "remotion_video",
|
|
2980
|
+
remotion_create_composition: "remotion_video",
|
|
2981
|
+
remotion_render: "remotion_video",
|
|
2982
|
+
remotion_render_still: "remotion_video",
|
|
2983
|
+
remotion_list_compositions: "remotion_video",
|
|
2984
|
+
remotion_preview_url: "remotion_video",
|
|
2985
|
+
remotion_add_asset: "remotion_video",
|
|
2986
|
+
remotion_install_package: "remotion_video",
|
|
2977
2987
|
// ── Knowledge Search (3) ──
|
|
2978
2988
|
knowledge_base_search: "ent_knowledge",
|
|
2979
2989
|
knowledge_hub_search: "ent_knowledge",
|
|
@@ -3206,6 +3216,11 @@ var SIGNAL_RULES = [
|
|
|
3206
3216
|
{
|
|
3207
3217
|
patterns: [/\bsend.*email\b/i, /\bwrite.*email\b/i, /\bdraft\b/i, /\binbox\b/i, /\bcheck.*mail\b/i],
|
|
3208
3218
|
sets: ["agenticmail"]
|
|
3219
|
+
},
|
|
3220
|
+
// Remotion Video
|
|
3221
|
+
{
|
|
3222
|
+
patterns: [/\bremotion\b/i, /\bcreate.*video\b/i, /\brender.*video\b/i, /\bvideo\s*project\b/i, /\bmarketing\s*video\b/i, /\bsocial\s*reel\b/i, /\banimation\b/i, /\bmotion\s*graphics?\b/i],
|
|
3223
|
+
sets: ["remotion_video"]
|
|
3209
3224
|
}
|
|
3210
3225
|
];
|
|
3211
3226
|
function detectSignals(text) {
|
|
@@ -3403,7 +3418,7 @@ function createRequestToolsTool(allTools, activeSets, _context) {
|
|
|
3403
3418
|
};
|
|
3404
3419
|
}
|
|
3405
3420
|
async function createToolsForContext(options, context, opts) {
|
|
3406
|
-
const { createAllTools } = await import("./agent-tools-
|
|
3421
|
+
const { createAllTools } = await import("./agent-tools-HLCHRVEV.js");
|
|
3407
3422
|
if (context === "full") {
|
|
3408
3423
|
return createAllTools(options);
|
|
3409
3424
|
}
|
|
@@ -776,7 +776,7 @@ async function runAgent(_args) {
|
|
|
776
776
|
const agent = agentRow[0];
|
|
777
777
|
console.log(` Agent: ${agent.display_name || agent.name}`);
|
|
778
778
|
console.log(` State: ${agent.state}`);
|
|
779
|
-
const routes = await import("./routes-
|
|
779
|
+
const routes = await import("./routes-DONZ5NBL.js");
|
|
780
780
|
await routes.lifecycle.setDb(engineDb);
|
|
781
781
|
await routes.lifecycle.loadFromDb();
|
|
782
782
|
routes.lifecycle.standaloneMode = true;
|
|
@@ -834,10 +834,10 @@ async function runAgent(_args) {
|
|
|
834
834
|
}
|
|
835
835
|
} catch {
|
|
836
836
|
}
|
|
837
|
-
const { createAgentRuntime } = await import("./runtime-
|
|
837
|
+
const { createAgentRuntime } = await import("./runtime-U3YSWLFD.js");
|
|
838
838
|
let orgIntMgr = null;
|
|
839
839
|
try {
|
|
840
|
-
const { orgIntegrations: oi } = await import("./routes-
|
|
840
|
+
const { orgIntegrations: oi } = await import("./routes-DONZ5NBL.js");
|
|
841
841
|
orgIntMgr = oi;
|
|
842
842
|
} catch {
|
|
843
843
|
}
|
|
@@ -1236,7 +1236,7 @@ Please complete this task now.`,
|
|
|
1236
1236
|
}
|
|
1237
1237
|
if (scope === "all" || scope === "permissions") {
|
|
1238
1238
|
try {
|
|
1239
|
-
const { permissionEngine } = await import("./routes-
|
|
1239
|
+
const { permissionEngine } = await import("./routes-DONZ5NBL.js");
|
|
1240
1240
|
await permissionEngine.setDb(engineDb);
|
|
1241
1241
|
reloaded.push("permissions");
|
|
1242
1242
|
} catch {
|
|
@@ -1276,7 +1276,7 @@ Please complete this task now.`,
|
|
|
1276
1276
|
}
|
|
1277
1277
|
if (scope === "all" || scope === "guardrails") {
|
|
1278
1278
|
try {
|
|
1279
|
-
const { guardrails } = await import("./routes-
|
|
1279
|
+
const { guardrails } = await import("./routes-DONZ5NBL.js");
|
|
1280
1280
|
await guardrails.loadFromDb?.();
|
|
1281
1281
|
reloaded.push("guardrails");
|
|
1282
1282
|
} catch {
|
|
@@ -2216,7 +2216,7 @@ Available tools: ${providerType === "imap" ? "email_send (to, subject, body)" :
|
|
|
2216
2216
|
console.log("[guardrails] Disabled via autonomy settings");
|
|
2217
2217
|
}
|
|
2218
2218
|
try {
|
|
2219
|
-
const { AgentHeartbeatManager } = await import("./agent-heartbeat-
|
|
2219
|
+
const { AgentHeartbeatManager } = await import("./agent-heartbeat-4ANIPGGS.js");
|
|
2220
2220
|
const hbOrgRows = await engineDb.query(`SELECT org_id FROM managed_agents WHERE id = $1`, [AGENT_ID]);
|
|
2221
2221
|
const hbOrgId = hbOrgRows?.[0]?.org_id || "";
|
|
2222
2222
|
const hbManagerEmail = config.managerEmail || (config.manager?.type === "external" ? config.manager.email : null);
|
|
@@ -448,7 +448,8 @@ async function runCloudRecover(args, inquirer, chalk, ora) {
|
|
|
448
448
|
ex("pm2 delete cloudflared 2>/dev/null", { timeout: 5e3 });
|
|
449
449
|
} catch {
|
|
450
450
|
}
|
|
451
|
-
const safeToken = String(data.tunnelToken).replace(/[^a-zA-Z0-9_
|
|
451
|
+
const safeToken = String(data.tunnelToken).replace(/[^a-zA-Z0-9_.\-]/g, "");
|
|
452
|
+
if (!safeToken || safeToken.length < 10) throw new Error("Invalid tunnel token");
|
|
452
453
|
ex(`pm2 start cloudflared --name cloudflared -- tunnel --no-autoupdate run --token ${safeToken}`, { timeout: 15e3 });
|
|
453
454
|
try {
|
|
454
455
|
ex("pm2 save 2>/dev/null", { timeout: 5e3 });
|
|
@@ -94,7 +94,7 @@ async function runServe(_args) {
|
|
|
94
94
|
process.exit(1);
|
|
95
95
|
}
|
|
96
96
|
const { createAdapter, smartDbConfig } = await import("./factory-XRYYBBCW.js");
|
|
97
|
-
const { createServer } = await import("./server-
|
|
97
|
+
const { createServer } = await import("./server-K5QLSS55.js");
|
|
98
98
|
const db = await createAdapter(smartDbConfig(DATABASE_URL));
|
|
99
99
|
await db.migrate();
|
|
100
100
|
const server = createServer({
|
|
@@ -106,7 +106,7 @@ async function runServe(_args) {
|
|
|
106
106
|
await server.start();
|
|
107
107
|
console.log(`AgenticMail Enterprise server running on :${PORT}`);
|
|
108
108
|
try {
|
|
109
|
-
const { startBackgroundUpdateCheck } = await import("./cli-update-
|
|
109
|
+
const { startBackgroundUpdateCheck } = await import("./cli-update-P3TAXEW7.js");
|
|
110
110
|
startBackgroundUpdateCheck();
|
|
111
111
|
} catch {
|
|
112
112
|
}
|
|
@@ -70,7 +70,8 @@ async function checkForUpdate() {
|
|
|
70
70
|
try {
|
|
71
71
|
const cacheDir = join(homedir(), ".agenticmail");
|
|
72
72
|
const cachePath = join(cacheDir, "update-check.json");
|
|
73
|
-
|
|
73
|
+
const safeInfo = { current: String(info.current), latest: String(info.latest), updateAvailable: Boolean(info.updateAvailable), checkedAt: String(info.checkedAt), releaseNotes: info.releaseNotes ? String(info.releaseNotes).slice(0, 1e4) : void 0, releaseUrl: info.releaseUrl ? String(info.releaseUrl).slice(0, 500) : void 0 };
|
|
74
|
+
writeFileSync(cachePath, JSON.stringify(safeInfo, null, 2));
|
|
74
75
|
} catch {
|
|
75
76
|
}
|
|
76
77
|
return info;
|
|
@@ -105,6 +106,9 @@ async function performUpdate(options) {
|
|
|
105
106
|
`);
|
|
106
107
|
return { success: false, from: current, to: "unknown", message: "Could not determine latest version" };
|
|
107
108
|
}
|
|
109
|
+
if (!/^\d+\.\d+\.\d+(-[\w.]+)?$/.test(latest)) {
|
|
110
|
+
return { success: false, from: current, to: latest, message: `Invalid version format: ${latest}` };
|
|
111
|
+
}
|
|
108
112
|
console.log(`
|
|
109
113
|
\u{1F4E6} Installing ${PKG_NAME}@${latest}...`);
|
|
110
114
|
try {
|
|
@@ -137,9 +141,11 @@ async function performUpdate(options) {
|
|
|
137
141
|
return aIsServer ? 1 : bIsServer ? -1 : 0;
|
|
138
142
|
});
|
|
139
143
|
for (const proc of sorted) {
|
|
140
|
-
|
|
144
|
+
const safeName = String(proc.name).replace(/[^a-zA-Z0-9_-]/g, "");
|
|
145
|
+
if (!safeName) continue;
|
|
146
|
+
console.log(` Restarting: ${safeName}`);
|
|
141
147
|
try {
|
|
142
|
-
execSync(`pm2 restart ${
|
|
148
|
+
execSync(`pm2 restart ${safeName}`, { stdio: "inherit", timeout: 15e3 });
|
|
143
149
|
} catch {
|
|
144
150
|
}
|
|
145
151
|
}
|
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-5OWQCA4S.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);
|
|
@@ -14,7 +14,7 @@ switch (command) {
|
|
|
14
14
|
import("./cli-submit-skill-SNGAHVB7.js").then((m) => m.runSubmitSkill(args.slice(1))).catch(fatal);
|
|
15
15
|
break;
|
|
16
16
|
case "recover":
|
|
17
|
-
import("./cli-recover-
|
|
17
|
+
import("./cli-recover-HGWHKH6N.js").then((m) => m.runRecover(args.slice(1))).catch(fatal);
|
|
18
18
|
break;
|
|
19
19
|
case "verify-domain":
|
|
20
20
|
import("./cli-verify-Q3NO5XBI.js").then((m) => m.runVerifyDomain(args.slice(1))).catch(fatal);
|
|
@@ -61,18 +61,18 @@ Skill Development:
|
|
|
61
61
|
break;
|
|
62
62
|
case "update":
|
|
63
63
|
case "upgrade":
|
|
64
|
-
import("./cli-update-
|
|
64
|
+
import("./cli-update-P3TAXEW7.js").then((m) => m.runUpdate(args.slice(1))).catch(fatal);
|
|
65
65
|
break;
|
|
66
66
|
case "serve":
|
|
67
67
|
case "start":
|
|
68
|
-
import("./cli-serve-
|
|
68
|
+
import("./cli-serve-KNEKNOJT.js").then((m) => m.runServe(args.slice(1))).catch(fatal);
|
|
69
69
|
break;
|
|
70
70
|
case "agent":
|
|
71
|
-
import("./cli-agent-
|
|
71
|
+
import("./cli-agent-WWDX3RIJ.js").then((m) => m.runAgent(args.slice(1))).catch(fatal);
|
|
72
72
|
break;
|
|
73
73
|
case "setup":
|
|
74
74
|
default:
|
|
75
|
-
import("./setup-
|
|
75
|
+
import("./setup-5XWBZMTT.js").then((m) => m.runSetupWizard()).catch(fatal);
|
|
76
76
|
break;
|
|
77
77
|
}
|
|
78
78
|
function fatal(err) {
|
package/dist/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import {
|
|
2
2
|
provision,
|
|
3
3
|
runSetupWizard
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-GF6IRQOC.js";
|
|
5
5
|
import {
|
|
6
6
|
AgenticMailManager,
|
|
7
7
|
GoogleEmailProvider,
|
|
@@ -28,7 +28,7 @@ import {
|
|
|
28
28
|
executeTool,
|
|
29
29
|
runAgentLoop,
|
|
30
30
|
toolsToDefinitions
|
|
31
|
-
} from "./chunk-
|
|
31
|
+
} from "./chunk-X54GHR4W.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-CJ6NJPJ6.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-VYP6FF3B.js";
|
|
86
86
|
import "./chunk-WYDVMFGJ.js";
|
|
87
87
|
import "./chunk-3UAFHUEC.js";
|
|
88
88
|
import {
|
|
@@ -100,7 +100,7 @@ import {
|
|
|
100
100
|
DeploymentEngine,
|
|
101
101
|
init_agent_config,
|
|
102
102
|
init_deployer
|
|
103
|
-
} from "./chunk-
|
|
103
|
+
} from "./chunk-E6B4W3WG.js";
|
|
104
104
|
import "./chunk-Z7NVD3OQ.js";
|
|
105
105
|
import {
|
|
106
106
|
AgentMemoryManager,
|
|
@@ -119,7 +119,7 @@ import {
|
|
|
119
119
|
PRESET_PROFILES,
|
|
120
120
|
PermissionEngine,
|
|
121
121
|
init_skills
|
|
122
|
-
} from "./chunk-
|
|
122
|
+
} from "./chunk-GRWV7MDT.js";
|
|
123
123
|
import {
|
|
124
124
|
CircuitBreaker,
|
|
125
125
|
CircuitOpenError,
|
|
@@ -148,7 +148,7 @@ import {
|
|
|
148
148
|
generateToolPolicy,
|
|
149
149
|
getToolsBySkill,
|
|
150
150
|
init_tool_catalog
|
|
151
|
-
} from "./chunk-
|
|
151
|
+
} from "./chunk-7E7MVJI7.js";
|
|
152
152
|
import {
|
|
153
153
|
VALID_CATEGORIES,
|
|
154
154
|
VALID_RISK_LEVELS,
|
|
@@ -35,10 +35,10 @@ import {
|
|
|
35
35
|
tenants,
|
|
36
36
|
vault,
|
|
37
37
|
workforce
|
|
38
|
-
} from "./chunk-
|
|
38
|
+
} from "./chunk-VYP6FF3B.js";
|
|
39
39
|
import "./chunk-WYDVMFGJ.js";
|
|
40
40
|
import "./chunk-3UAFHUEC.js";
|
|
41
|
-
import "./chunk-
|
|
41
|
+
import "./chunk-E6B4W3WG.js";
|
|
42
42
|
import "./chunk-Z7NVD3OQ.js";
|
|
43
43
|
import "./chunk-VSBC4SWO.js";
|
|
44
44
|
import "./chunk-AF3WSNVX.js";
|
|
@@ -46,10 +46,10 @@ import "./chunk-74ZCQKYU.js";
|
|
|
46
46
|
import "./chunk-Z6K5FKAB.js";
|
|
47
47
|
import "./chunk-C6JP5NR6.js";
|
|
48
48
|
import "./chunk-WUAWWKTN.js";
|
|
49
|
-
import "./chunk-
|
|
49
|
+
import "./chunk-GRWV7MDT.js";
|
|
50
50
|
import "./chunk-YDD5TC5Q.js";
|
|
51
51
|
import "./chunk-FLQ5FLHW.js";
|
|
52
|
-
import "./chunk-
|
|
52
|
+
import "./chunk-7E7MVJI7.js";
|
|
53
53
|
import "./chunk-22U7TZPN.js";
|
|
54
54
|
import "./chunk-KFQGP6VL.js";
|
|
55
55
|
init_routes();
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import {
|
|
2
2
|
createServer
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-CJ6NJPJ6.js";
|
|
4
4
|
import "./chunk-DJBCRQTD.js";
|
|
5
5
|
import "./chunk-UF3ZJMJO.js";
|
|
6
|
-
import "./chunk-
|
|
6
|
+
import "./chunk-VYP6FF3B.js";
|
|
7
7
|
import "./chunk-WYDVMFGJ.js";
|
|
8
8
|
import "./chunk-3UAFHUEC.js";
|
|
9
|
-
import "./chunk-
|
|
9
|
+
import "./chunk-E6B4W3WG.js";
|
|
10
10
|
import "./chunk-Z7NVD3OQ.js";
|
|
11
11
|
import "./chunk-VSBC4SWO.js";
|
|
12
12
|
import "./chunk-AF3WSNVX.js";
|
|
@@ -14,13 +14,13 @@ import "./chunk-74ZCQKYU.js";
|
|
|
14
14
|
import "./chunk-Z6K5FKAB.js";
|
|
15
15
|
import "./chunk-C6JP5NR6.js";
|
|
16
16
|
import "./chunk-WUAWWKTN.js";
|
|
17
|
-
import "./chunk-
|
|
17
|
+
import "./chunk-GRWV7MDT.js";
|
|
18
18
|
import "./chunk-YDD5TC5Q.js";
|
|
19
19
|
import "./chunk-37ABTUFU.js";
|
|
20
20
|
import "./chunk-NU657BBQ.js";
|
|
21
21
|
import "./chunk-PGAU3W3M.js";
|
|
22
22
|
import "./chunk-FLQ5FLHW.js";
|
|
23
|
-
import "./chunk-
|
|
23
|
+
import "./chunk-7E7MVJI7.js";
|
|
24
24
|
import "./chunk-22U7TZPN.js";
|
|
25
25
|
import "./chunk-KFQGP6VL.js";
|
|
26
26
|
export {
|
package/package.json
CHANGED
|
File without changes
|