@agenticmail/enterprise 0.5.46 → 0.5.48
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/chunk-2CVPFHJD.js +898 -0
- package/dist/chunk-4SAHG5E7.js +593 -0
- package/dist/chunk-MINPSFLF.js +3563 -0
- package/dist/chunk-NU56PI3D.js +2115 -0
- package/dist/chunk-QRFUGV66.js +9085 -0
- package/dist/chunk-WG3RK3S2.js +12676 -0
- package/dist/cli-validate-QVUQDNGI.js +148 -0
- package/dist/cli.js +2 -2
- package/dist/dashboard/components/timezones.js +352 -0
- package/dist/dashboard/pages/workforce.js +20 -6
- package/dist/index.js +6 -6
- package/dist/routes-RVD5BOHP.js +5783 -0
- package/dist/runtime-JH4SPNAH.js +47 -0
- package/dist/server-KJ2IHVRS.js +12 -0
- package/dist/setup-DRJP24W7.js +20 -0
- package/dist/skills-PGWWON4J.js +14 -0
- package/package.json +1 -1
- package/src/dashboard/components/timezones.js +352 -0
- package/src/dashboard/pages/workforce.js +20 -6
- package/src/engine/skills/agenticmail.ts +115 -0
- package/src/engine/skills/index.ts +9 -0
- package/src/engine/skills.ts +4 -2
- package/src/engine/tool-catalog.ts +1 -1
package/src/engine/skills.ts
CHANGED
|
@@ -95,7 +95,7 @@ export type SideEffect =
|
|
|
95
95
|
| 'financial';
|
|
96
96
|
|
|
97
97
|
// ─── Individual Skill File Imports ──────────────────────
|
|
98
|
-
import { M365_SKILL_DEFS, GWS_SKILL_DEFS, ENTERPRISE_SKILL_DEFS } from './skills/index.js';
|
|
98
|
+
import { M365_SKILL_DEFS, GWS_SKILL_DEFS, ENTERPRISE_SKILL_DEFS, AGENTICMAIL_SKILL_DEFS } from './skills/index.js';
|
|
99
99
|
|
|
100
100
|
// ─── Agent Permission Profile ───────────────────────────
|
|
101
101
|
|
|
@@ -313,8 +313,10 @@ export const PRESET_PROFILES: Omit<AgentPermissionProfile, 'id' | 'createdAt' |
|
|
|
313
313
|
// ─── Built-in Skill Catalog ─────────────────────────────
|
|
314
314
|
|
|
315
315
|
export const BUILTIN_SKILLS: Omit<SkillDefinition, 'tools'>[] = [
|
|
316
|
+
// AgenticMail — Core Product
|
|
317
|
+
...AGENTICMAIL_SKILL_DEFS,
|
|
318
|
+
|
|
316
319
|
// Communication
|
|
317
|
-
{ id: 'agenticmail', name: 'AgenticMail', description: 'Full email system — send, receive, organize, search, forward, reply. Agent-to-agent messaging and task delegation.', category: 'communication', risk: 'medium', icon: '📧', source: 'builtin' },
|
|
318
320
|
{ id: 'imsg', name: 'iMessage', description: 'Send and receive iMessages and SMS via macOS.', category: 'communication', risk: 'high', icon: '💬', source: 'builtin', requires: ['macos'] },
|
|
319
321
|
{ id: 'wacli', name: 'WhatsApp', description: 'Send WhatsApp messages and search chat history.', category: 'communication', risk: 'high', icon: '📱', source: 'builtin' },
|
|
320
322
|
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
*/
|
|
12
12
|
|
|
13
13
|
import type { ToolDefinition, SkillCategory, RiskLevel, SideEffect } from './skills.js';
|
|
14
|
-
import { M365_TOOLS as M365_SKILL_TOOLS, GWS_TOOLS as GWS_SKILL_TOOLS, ENTERPRISE_UTILITY_TOOLS } from './skills/index.js';
|
|
14
|
+
import { M365_TOOLS as M365_SKILL_TOOLS, GWS_TOOLS as GWS_SKILL_TOOLS, ENTERPRISE_UTILITY_TOOLS, AGENTICMAIL_TOOLS } from './skills/index.js';
|
|
15
15
|
|
|
16
16
|
// ─── Core Platform Tools ────────────────────────────────
|
|
17
17
|
|