@agenticmail/enterprise 0.5.202 → 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.
|
@@ -414,7 +414,27 @@ export function TaskPipelinePage() {
|
|
|
414
414
|
if (positioned.length === 0) return h('div', { style: { height: '100%', display: 'flex', flexDirection: 'column', background: BG, borderRadius: 'var(--radius-lg)', overflow: 'hidden' } },
|
|
415
415
|
// Toolbar even when empty
|
|
416
416
|
h('div', { style: { display: 'flex', alignItems: 'center', gap: 12, padding: '12px 20px', borderBottom: '1px solid rgba(255,255,255,0.08)', background: 'rgba(0,0,0,0.3)' } },
|
|
417
|
-
h('div', { style: { fontWeight: 700, fontSize: 16, color: '#fff', display: 'flex', alignItems: 'center', gap: 8 } }, I.workflow(), ' Task Pipeline'
|
|
417
|
+
h('div', { style: { fontWeight: 700, fontSize: 16, color: '#fff', display: 'flex', alignItems: 'center', gap: 8 } }, I.workflow(), ' Task Pipeline',
|
|
418
|
+
h(HelpButton, { label: 'Task Pipeline' },
|
|
419
|
+
h('p', null, 'Visual hierarchy of all agent tasks in your organization. Tasks flow from agents (top) to individual tasks and sub-tasks (below), connected by arrows.'),
|
|
420
|
+
h('h4', { style: _h4 }, 'How It Works'),
|
|
421
|
+
h('ul', { style: _ul },
|
|
422
|
+
h('li', null, 'Tasks are automatically recorded when agents are spawned for work'),
|
|
423
|
+
h('li', null, 'The pipeline tracks task status from creation through completion'),
|
|
424
|
+
h('li', null, 'Real-time updates via SSE — no need to refresh'),
|
|
425
|
+
h('li', null, 'Smart metadata extraction categorizes tasks automatically')
|
|
426
|
+
),
|
|
427
|
+
h('h4', { style: _h4 }, 'Task Lifecycle'),
|
|
428
|
+
h('ul', { style: _ul },
|
|
429
|
+
h('li', null, h('strong', null, 'Queued'), ' — Waiting to be picked up'),
|
|
430
|
+
h('li', null, h('strong', null, 'Assigned'), ' — Agent selected, about to start'),
|
|
431
|
+
h('li', null, h('strong', null, 'In Progress'), ' — Actively executing'),
|
|
432
|
+
h('li', null, h('strong', null, 'Completed'), ' — Finished successfully'),
|
|
433
|
+
h('li', null, h('strong', null, 'Failed'), ' — Encountered an error')
|
|
434
|
+
),
|
|
435
|
+
h('div', { style: _tip }, 'Tip: Tasks will appear here as agents are assigned work. Sub-tasks show as children connected by arrows.')
|
|
436
|
+
)
|
|
437
|
+
),
|
|
418
438
|
),
|
|
419
439
|
h('div', { style: { flex: 1, display: 'flex', alignItems: 'center', justifyContent: 'center', flexDirection: 'column' } },
|
|
420
440
|
h('div', { style: { fontSize: 48, marginBottom: 16 } }, '\uD83D\uDCCB'),
|
package/package.json
CHANGED
|
@@ -414,7 +414,27 @@ export function TaskPipelinePage() {
|
|
|
414
414
|
if (positioned.length === 0) return h('div', { style: { height: '100%', display: 'flex', flexDirection: 'column', background: BG, borderRadius: 'var(--radius-lg)', overflow: 'hidden' } },
|
|
415
415
|
// Toolbar even when empty
|
|
416
416
|
h('div', { style: { display: 'flex', alignItems: 'center', gap: 12, padding: '12px 20px', borderBottom: '1px solid rgba(255,255,255,0.08)', background: 'rgba(0,0,0,0.3)' } },
|
|
417
|
-
h('div', { style: { fontWeight: 700, fontSize: 16, color: '#fff', display: 'flex', alignItems: 'center', gap: 8 } }, I.workflow(), ' Task Pipeline'
|
|
417
|
+
h('div', { style: { fontWeight: 700, fontSize: 16, color: '#fff', display: 'flex', alignItems: 'center', gap: 8 } }, I.workflow(), ' Task Pipeline',
|
|
418
|
+
h(HelpButton, { label: 'Task Pipeline' },
|
|
419
|
+
h('p', null, 'Visual hierarchy of all agent tasks in your organization. Tasks flow from agents (top) to individual tasks and sub-tasks (below), connected by arrows.'),
|
|
420
|
+
h('h4', { style: _h4 }, 'How It Works'),
|
|
421
|
+
h('ul', { style: _ul },
|
|
422
|
+
h('li', null, 'Tasks are automatically recorded when agents are spawned for work'),
|
|
423
|
+
h('li', null, 'The pipeline tracks task status from creation through completion'),
|
|
424
|
+
h('li', null, 'Real-time updates via SSE — no need to refresh'),
|
|
425
|
+
h('li', null, 'Smart metadata extraction categorizes tasks automatically')
|
|
426
|
+
),
|
|
427
|
+
h('h4', { style: _h4 }, 'Task Lifecycle'),
|
|
428
|
+
h('ul', { style: _ul },
|
|
429
|
+
h('li', null, h('strong', null, 'Queued'), ' — Waiting to be picked up'),
|
|
430
|
+
h('li', null, h('strong', null, 'Assigned'), ' — Agent selected, about to start'),
|
|
431
|
+
h('li', null, h('strong', null, 'In Progress'), ' — Actively executing'),
|
|
432
|
+
h('li', null, h('strong', null, 'Completed'), ' — Finished successfully'),
|
|
433
|
+
h('li', null, h('strong', null, 'Failed'), ' — Encountered an error')
|
|
434
|
+
),
|
|
435
|
+
h('div', { style: _tip }, 'Tip: Tasks will appear here as agents are assigned work. Sub-tasks show as children connected by arrows.')
|
|
436
|
+
)
|
|
437
|
+
),
|
|
418
438
|
),
|
|
419
439
|
h('div', { style: { flex: 1, display: 'flex', alignItems: 'center', justifyContent: 'center', flexDirection: 'column' } },
|
|
420
440
|
h('div', { style: { fontSize: 48, marginBottom: 16 } }, '\uD83D\uDCCB'),
|