moai-ref-secops

Provides defensive hardening reference for CI/CD pipelines, containers, Kubernetes, and production APIs.

Updated Mar 22, 2026
One-click install
npx skills add https://github.com/taewook486/Masters_degree --skill moai-ref-secops-taewook486
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: moai-ref-secops
Source: https://github.com/taewook486/Masters_degree/tree/main/.claude/skills/moai-ref-secops
Command: npx skills add https://github.com/taewook486/Masters_degree --skill moai-ref-secops-taewook486

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Engineers hardening pipelines, containers, and live APIs often lack a consolidated, defense-focused reference covering misconfiguration detection and prevention across the operational stack, leading to gaps like privileged containers, over-broad RBAC, and missing BOLA checks. ## Core Features & Use Cases - DevSecOps Hardening: Covers CI/CD pipeline pinning, secret scanning, IaC misconfiguration detection (Terraform/CloudFormation), and SAST/DAST integration. - Container & Kubernetes Defense: Details image scanning, admission control, least-privilege RBAC, container-escape hardening (seccomp, non-root, read-only root), and runtime threat detection. - API Operational Defense: Maps the OWASP API Top 10 to runtime controls including BOLA detection, rate limiting, WAF tuning, and GraphQL/REST depth and complexity limits. - Use Case: When reviewing a Kubernetes deployment before release, load this reference to verify the pod security context, ServiceAccount scoping, and admission policies against the hardened baseline checklist. ## Quick Start Ask the agent to review your Kubernetes manifests and CI/CD pipeline configuration against the DevSecOps and container hardening checklists in this reference.

Frequently Asked Questions about moai-ref-secops

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

FAQPage Schema
How do I harden a Kubernetes pod against container escape?▼

Apply the hardened-pod baseline: run as non-root, use a read-only root filesystem, drop all Linux capabilities, enable a seccomp profile, disable privileged mode and privilege escalation, and avoid host path mounts. Enforce this baseline at admission using PodSecurity restricted profile or a policy engine.

How to detect Broken Object Level Authorization in production APIs?▼

BOLA detection requires monitoring production traffic for one identity accessing object IDs outside its expected set. Enforcement demands a server-side ownership check on every object access, since client-side checks are never a trust boundary.

What is the difference between this skill and moai-ref-owasp-checklist?▼

This skill covers the operational and runtime half of security: live traffic detection, gateway rate limiting, WAF tuning, and cluster hardening. moai-ref-owasp-checklist covers dev-time secure coding patterns like input validation, parameterized queries, and security headers.

When should IaC scanning run in a CI/CD pipeline?▼

IaC scanning must run before the apply stage, between plan and apply, failing closed on high-severity findings like public buckets or wildcard IAM policies. Scanning after apply is detection only, not prevention.

Does this skill provide offensive security or exploitation techniques?▼

No. The reference is strictly defensive, framing every topic as misconfiguration, detection, and prevention. MITRE ATT&CK technique IDs are cited only to correlate defenses with the techniques they counter, never with exploitation procedures.