security-automation

Orchestrates DevSecOps pipelines, SOAR playbooks, and LLM-driven security operations automation.

1|Updated Jul 17, 2026
One-click install
npx skills add https://github.com/anonymous99-Rise/multi-CyberSecurity --skill security-automation-anonymous99-rise
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: security-automation
Source: https://github.com/anonymous99-Rise/multi-CyberSecurity/tree/main/Skills20260809/security-automation
Command: npx skills add https://github.com/anonymous99-Rise/multi-CyberSecurity --skill security-automation-anonymous99-rise

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Security teams drown in scanner noise, manual triage, and disconnected tools across CI/CD and SOC workflows. This Skill provides a complete operational playbook for embedding automated security testing into pipelines, orchestrating detection and response, and applying LLM agents to alert triage and playbook generation. ## Core Features & Use Cases - DevSecOps Pipeline Automation: Integrates SAST (Semgrep, CodeQL), DAST (ZAP, Nuclei), SCA (Trivy, Grype), container/IaC scanning (Checkov, kube-bench), and secret detection (Gitleaks) into CI/CD with hard/soft quality gates. - SOAR & Agentic AI Operations: Covers playbook orchestration, case management, three-layer alert pipelines (rule filtering, LLM triage, graded response), and human-in-the-loop guardrails for autonomous agents. - Dual-Perspective Red/Blue Automation: Automates authorized red-team reconnaissance chains (subfinder, httpx, nuclei) and blue-team detection validation with Atomic Red Team and CALDERA mapped to MITRE ATT&CK. - Use Case: A security engineer needs to wire Trivy and Semgrep results into DefectDojo, enforce CRITICAL/HIGH build gates, and build an LLM triage flow that auto-closes low-severity alerts with confidence thresholds. ## Quick Start Ask the AI to load the security-automation skill and design a CI/CD security pipeline with SAST, dependency scanning, and quality gates for your repository.

Frequently Asked Questions about security-automation

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I integrate SAST and DAST scanning into a CI/CD pipeline?

Add dedicated pipeline stages running Semgrep for SAST, Trivy for dependency and container scanning, and ZAP or Nuclei for DAST, exporting JSON results as artifacts. Enforce quality gates by failing the build on CRITICAL or HIGH severity findings, for example with trivy --exit-code 1 --severity CRITICAL,HIGH.

What tools should I use for container and IaC security scanning?

Use Trivy or Grype for container image and dependency scanning, Checkov or tfsec for Terraform, and kube-bench for Kubernetes CIS benchmarks. For policy enforcement, OPA/Gatekeeper or Kyverno provide admission control, while Conftest tests arbitrary configuration files.

How can LLMs reduce security alert fatigue in a SOC?

Apply a three-layer pipeline: deterministic rules filter 90-95% of benign events, then an LLM triages enriched alerts with structured output including severity, disposition, and confidence scores. Source-specific triage agents with confidence thresholds outperform a single general-purpose agent, cutting escalation rates to around 3%.

Does this approach support importing scan results into DefectDojo?

Yes, scan outputs from Trivy, Semgrep, Nuclei, and ZAP can be posted to the DefectDojo import-scan API endpoint with the appropriate scan_type parameter. Results are normalized, deduplicated by CWE/CVE and asset fingerprints, and tracked through SLA-based remediation workflows.

What guardrails are needed for agentic AI security automation?

Agents must run under least-privilege service accounts with action whitelists, human-in-the-loop approval for high-impact actions like host isolation, and full audit logging of reasoning and tool calls. Prefer reversible actions, validate findings with exploit proof-of-concepts, and sanitize tool inputs against prompt injection.

When should I use SOAR playbooks versus LLM agents for incident response?

Use deterministic SOAR playbooks for high-frequency, well-understood scenarios like brute-force investigation where steps are predictable. Reserve LLM agents for novel or ambiguous alerts requiring dynamic investigation, always within rule boundaries, action whitelists, and approval gates.