Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
daemon-blockint-tech avatar

Devsecops

  • 30 installs
  • 7 repo stars
  • Updated May 20, 2026
  • daemon-blockint-tech/agentic-enteprises-skill

Embeds security into delivery pipelines with SAST/SCA/secrets/IaC/container scanning, CI/CD security gates, SBOMs, artifact signing, and vulnerability triage.

About

Guides DevSecOps practices that shift security left into CI/CD with scan gates, supply-chain integrity, container/runtime controls, threat modeling, and compliance evidence. A developer uses it when hardening pipelines, adding scans, signing artifacts, or mapping controls to SOC 2/ISO 27001/SSDF.

  • Shift-left scan baseline with a block/warn gate policy table
  • Non-skippable pipeline security stages plus SBOM and image signing

Devsecops by the numbers

  • 30 all-time installs (skills.sh)
  • Ranked #1,493 of 2,203 Security skills by installs in the Skillselion catalog
  • Data as of Jul 29, 2026 (Skillselion catalog sync)
npx skills add https://github.com/daemon-blockint-tech/agentic-enteprises-skill --skill devsecops

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs30
repo stars7
Last updatedMay 20, 2026
Repositorydaemon-blockint-tech/agentic-enteprises-skill

What it does

Embeds security into delivery pipelines with SAST/SCA/secrets/IaC/container scanning, CI/CD security gates, SBOMs, artifact signing, and vulnerability triage.

Files

SKILL.mdMarkdownGitHub ↗

DevSecOps

When to Use

  • Add or harden SAST, SCA, secrets, IaC, DAST, or container scans in CI/CD
  • Configure protected-branch security gates, artifact signing, SBOMs, provenance, or OIDC federation
  • Triage pipeline security findings and define remediation SLAs or exception workflows
  • Secure GitHub Actions, GitLab CI, build containers, registries, and deployment credentials
  • Map delivery artifacts to SOC 2, ISO 27001, SSDF, or supply-chain evidence requirements

When NOT to Use

  • Provision general cloud infrastructure without a security gate focus → infrastructure-engineer
  • Operate build/deploy pipelines without security requirements → devops
  • Implement corporate IdP, KMS, PAM, SIEM, or EDR controls → information-security-engineer
  • IAM entitlement design, access reviews, federation (non-pipeline) → iam-specialist
  • Triage live SOC alerts or run SOAR playbooks → soc-analyst
  • Threat hunts or SIEM detection authoring → defensive-security-analyst
  • Define company-wide security strategy or GRC roadmap → cybersecurity
  • Bootstrap clusters, Helm releases, ingress, routine pod debug → cluster-deployment-engineer
  • Execute authorized penetration tests or exploit PoCs → penetration-tester
  • Manual web/API OWASP testing and retest → web-pentester
  • Disassembly, decompilation, patch diff, or malware RE lab work → reverse-engineer

Related skills

NeedSkill
VPC, K8s platform, IaC provisioning, generic CI/CDinfrastructure-engineer
AI agent workflows in CI (Codex, Claude Action, prompt injection)agentic-actions-auditor (if installed)
Application threat models from repo structuresecurity-threat-model (if installed)
Data governance, PII in warehousesdata-architect
Security runbooks and customer-facing docstech-writer-researcher
Platform IAM, KMS, SIEM/EDR operationsinformation-security-engineer
Workforce IAM, reviews, federation, PAM policyiam-specialist
Cloud org guardrails, CSPM, multi-account posturecloud-security-engineer
Product tenancy, service authZ, customer data isolationproduct-infrastructure-security-engineer
Audit evidence pipelines and control mappingcompliance-engineer
Pipeline compromise incident responseincident-responder
Binary RE, patch diff, defensive malware analysisreverse-engineer
K8s workload deploy and cluster day-2 opscluster-deployment-engineer
External researcher disclosure programtechnical-program-manager-security-cvd
Authorized pentest and retestpenetration-tester
Manual web/API OWASP testingweb-pentester

Core Workflows

1. Shift-left security baseline

Apply on every repo before merge to default branch:

1. Inventory languages, build tool, deploy target, and compliance scope 2. Enable secret scanning and push protection on the org/repo 3. Add SAST + SCA in CI on pull requests (fail on new critical/high) 4. Scan IaC on terraform plan / manifest changes (Checkov, tfsec, KICS) 5. Scan container images before registry push (Trivy, Grype) 6. Document exceptions with owner, expiry, and compensating control

Gate policy (default):

FindingPRDefault branchProduction deploy
Secret in codeBlockBlockBlock
Critical CVE (exploitable)BlockBlockBlock
High CVEWarn or blockBlockBlock with exception
Medium/lowWarnTrackTrack

See `references/shift_left_scanning.md` for tool matrices, baseline configs, and false-positive handling.

2. CI/CD security gates

Pipeline order (security stages must not be skippable on protected branches):

lint → unit test → SAST/SCA → build → image scan → sign/SBOM → deploy staging → DAST (if applicable) → promote prod

Checklist:

  • [ ] Use OIDC federation to cloud/K8s—no long-lived cloud keys in CI secrets
  • [ ] Pin actions/images by digest or immutable version; allowlist third-party actions
  • [ ] Separate build (untrusted) from deploy (trusted) jobs with environment protection rules
  • [ ] Require code review + passing checks on default branch
  • [ ] Store artifacts in immutable registry; verify signatures at deploy
  • [ ] Log retention for audit (who deployed what, from which commit)

See `references/cicd_security_gates.md` for GitHub Actions/GitLab patterns, OIDC, and deployment controls.

3. Supply chain integrity

Minimum viable supply chain for production services:

1. Generate SBOM (CycloneDX or SPDX) on each release build 2. Sign container images and/or provenance (Sigstore/cosign, SLSA-oriented attestations where required) 3. Block dependencies with known critical CVEs unless documented exception 4. Prefer pinned lockfiles; review major dependency upgrades in PR 5. Vet new third-party actions, Helm charts, and base images

See `references/supply_chain.md` for SBOM fields, signing flows, and dependency update policy.

4. Cloud, container, and runtime security

Pre-production checklist:

  • [ ] Workloads in private subnets; ingress only via LB/WAF
  • [ ] Non-root containers, read-only root FS, dropped capabilities, no privileged pods
  • [ ] Network policies or service mesh mTLS for east-west traffic
  • [ ] Secrets from Vault/Secrets Manager/External Secrets—not in manifests or env in git
  • [ ] CSPM/posture alerts wired to on-call for critical misconfigurations
  • [ ] Runtime detection (Falco, cloud-native threat detection) for production clusters

See `references/cloud_runtime_security.md` for K8s admission policies, WAF, and CSPM triage.

5. Threat modeling and security review

Lightweight review (every feature with auth, payments, PII, or external input):

1. Draw data flow: actors, trust boundaries, stores, external APIs 2. List assets and STRIDE threats per boundary 3. Map mitigations to existing controls or new tickets 4. Record accepted risks with approver and review date

Deeper review triggers: new public API, auth model change, multi-tenant isolation change, crypto design, admin tooling, agent/LLM in production path.

See `references/threat_modeling.md` for STRIDE prompts, abuse-case templates, and review cadence.

6. Vulnerability management and compliance evidence

Triage workflow:

1. Normalize findings (tool, CVE, asset, environment, exploitability) 2. Score with CVSS + business context (internet-facing, data class, compensating controls) 3. Assign owner and remediation SLA (see reference SLAs) 4. Verify fix in CI rescan before closing 5. Aggregate metrics: MTTR, open critical count, recurring classes

Compliance: map controls to delivery artifacts (pipeline configs, scan reports, access reviews, change tickets).

See `references/compliance_evidence.md` for SOC 2 / ISO 27001 / SSDF mapping and audit artifact list.

When to load references

  • SAST, SCA, secrets, IaC scansreferences/shift_left_scanning.md
  • Pipeline gates, OIDC, GitHub/GitLab hardeningreferences/cicd_security_gates.md
  • SBOM, signing, dependenciesreferences/supply_chain.md
  • K8s, CSPM, WAF, runtimereferences/cloud_runtime_security.md
  • STRIDE, abuse cases, review templatesreferences/threat_modeling.md
  • SLAs, SOC 2/ISO evidencereferences/compliance_evidence.md

Related skills

Securityappseccompliance

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.