@agenticmail/enterprise 0.5.201 → 0.5.203
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/package.json
CHANGED
|
@@ -4,6 +4,7 @@ import { E } from '../../assets/icons/emoji-icons.js';
|
|
|
4
4
|
import { TimezoneSelect } from '../../components/timezones.js';
|
|
5
5
|
import { Badge, StatCard, EmptyState, formatTime } from './shared.js?v=4';
|
|
6
6
|
import { HelpButton } from '../../components/help-button.js';
|
|
7
|
+
import { AgentTaskPipeline } from '../task-pipeline.js';
|
|
7
8
|
|
|
8
9
|
// ════════════════════════════════════════════════════════════
|
|
9
10
|
// WORKFORCE SECTION
|
|
@@ -447,6 +448,19 @@ export function WorkforceSection(props) {
|
|
|
447
448
|
)
|
|
448
449
|
),
|
|
449
450
|
|
|
451
|
+
// ─── Centralized Task Pipeline ─────────────────────
|
|
452
|
+
h('div', { className: 'card', style: { marginBottom: 20 } },
|
|
453
|
+
h('div', { className: 'card-header', style: { display: 'flex', justifyContent: 'space-between', alignItems: 'center' } },
|
|
454
|
+
h('span', { style: { display: 'flex', alignItems: 'center' } }, 'Task Pipeline', h(HelpButton, { label: 'Task Pipeline' },
|
|
455
|
+
h('p', null, 'Centralized task pipeline for this agent. Shows all tasks automatically recorded when the agent is spawned for work — including status, duration, model used, and results.'),
|
|
456
|
+
h('div', { style: { marginTop: 12, padding: 12, background: 'var(--bg-secondary, #1e293b)', borderRadius: 'var(--radius, 8px)', fontSize: 13 } }, h('strong', null, 'Tip: '), 'Tasks update in real-time via SSE. Click any task for full details. This is separate from the manual Task Queue above — pipeline tasks are created automatically by the system.')
|
|
457
|
+
))
|
|
458
|
+
),
|
|
459
|
+
h('div', { className: 'card-body' },
|
|
460
|
+
h(AgentTaskPipeline, { agentId: agentId })
|
|
461
|
+
)
|
|
462
|
+
),
|
|
463
|
+
|
|
450
464
|
// ─── Clock History ──────────────────────────────────
|
|
451
465
|
(function() {
|
|
452
466
|
// Filter + search
|