ThreatAnalysisTask
Evaluation will assess the agent system's ability to accurately analyze cybersecurity alerts, propose relevant remediations, and demonstrate effective A2A communication within the LangGraph workflow.
Evaluation overview
How the linked challenge is judged: tasks, benchmarks, and criteria count.
Task templates
Inputs and expected outputs.
ThreatAnalysisTask
Analyze a simulated cybersecurity alert and identify its type, severity, and potential impact.
{'alert_id': 'string', 'timestamp': 'string', 'source_ip': 'string', 'destination_ip': 'string', 'event_type': 'string', 'raw_log': 'string'}
{'analysis': 'string', 'severity': 'low|medium|high|critical', 'threat_category': 'string', 'confidence_score': 'float'}
RemediationPlanningTask
Based on a threat analysis, propose concrete remediation steps and update simulated SIEM/SOAR system via MCP.
{'alert_id': 'string', 'analysis': 'string', 'severity': 'string', 'threat_category': 'string', 'confidence_score': 'float'}
{'remediation_steps': ['string'], 'siem_update_status': 'success|failure', 'siem_action_details': 'string'}