Claude Code Plugins

Community-maintained marketplace

Feedback

>-

Install Skill

1Download skill
2Enable skills in Claude

Open claude.ai/settings/capabilities and find the "Skills" section

3Upload to Claude

Click "Upload skill" and select the downloaded ZIP file

Note: Please verify skill by going through its instructions before using it.

SKILL.md

name runtime-security
description Pod Security Standards and admission controllers for GKE. Runtime monitoring with Falco and behavioral analysis to detect anomalous workload activity.

Runtime Security

When to Use This Skill

This section covers runtime security for GKE clusters:

  • Pod Security Standards: Namespace-level security policies (baseline, restricted)
  • Admission Controllers: Pre-deployment validation and policy enforcement
  • Runtime Monitoring: Behavioral detection with Falco or GKE Cloud Logging

Prerequisites

  • GCP project with billing enabled
  • Terraform 1.0+
  • kubectl configured for cluster access

Implementation

Key Principles

Defense in Depth

Multiple layers of runtime security controls:

  • Pod Security Standards enforce secure defaults
  • Admission controllers block invalid configurations
  • Runtime monitoring detects anomalous behavior
  • Audit logging captures all activity

Secure by Default

Production workloads must meet strict security requirements:

  • Run as non-root user
  • Read-only root filesystem
  • Drop all Linux capabilities
  • No privilege escalation
  • Resource limits defined

Continuous Monitoring

Runtime monitoring provides visibility into pod behavior:

  • Process execution tracking
  • File access monitoring
  • Network connection detection
  • System call auditing

Related Patterns

  • Cluster Configuration
  • Network Security
  • IAM Configuration

References