0.5×← Perlahan · Cepat →
💬Tekan Play Demo untuk lihat Staff Task Monitoring Agent.
Demo Complete — All Stages Generated
01 WhatsApp Command
02 Requirement Analysis
Menunggu Sedang aktif Selesai
03 Python Script Generation
1
📥
Ambil tugas staffFetch pending tasks
2
📅
Semak deadlineCheck task deadlines
3
⚠️
Kesan bottleneckIdentify blocked tasks
4
📊
Laporan & alertGenerate task status report
import pandas as pd
from datetime import datetime
def task_health():
tasks = pd.read_sql("SELECT * FROM tasks WHERE status != 'Completed'")
now = datetime.now()
for _, task in tasks.iterrows():
days_left = (task['deadline'] - now).days
if days_left < 0: task['health'] = 'Overdue'
elif days_left < 3: task['health'] = 'At Risk'
elif days_left < 7: task['health'] = 'Warning'
else: task['health'] = 'On Track'
return tasks
04 Block Diagram
Menunggu Sedang aktif Selesai
05 System Schematic
Menunggu Sedang aktif Selesai
Use task monitoring data for coaching, not punitive action.
06 Simulasi Task Monitoring
Mula Tugas
07 Task Monitoring Report
Terminal Log
[SISTEM] Staff Task Monitoring Agent sedia
System Architecture
🤖 Agent Layer
Task parser
Deadline tracker
Bottleneck detector
🏢 HR Layer
Task DB
Staff records
Project system
Reports
Safety Notes
- Use task monitoring data for coaching, not punitive action.
- Configure role-based access for task data.
- Audit all task assignments for compliance.
- Browser demo uses simulated data only.