Agent Skills: Hardened Deployment Workflow

>-

UncategorizedID: adaptive-enforcement-lab/claude-skills/hardened-deployment-workflow

Install this agent skill to your local

pnpm dlx add-skill https://github.com/adaptive-enforcement-lab/claude-skills/tree/HEAD/plugins/secure/skills/hardened-deployment-workflow

Skill Files

Browse the full folder contents for hardened-deployment-workflow.

Download Skill

Loading file tree…

plugins/secure/skills/hardened-deployment-workflow/SKILL.md

Skill Metadata

Name
hardened-deployment-workflow
Description
>-

Hardened Deployment Workflow

When to Use This Skill

Copy-paste ready deployment workflow templates with comprehensive security hardening. Each example demonstrates OIDC authentication, environment protection, approval gates, zero-downtime deployments, and automated rollback patterns.

Complete Security Patterns

These workflows integrate all security patterns from the hub: OIDC federation (no stored secrets), environment protection with approval gates, SHA-pinned actions, minimal GITHUB_TOKEN permissions, deployment verification, and automated rollback. Use as production templates for secure deployments.

Implementation

See the full implementation guide in the source documentation.

Key Principles

Every deployment workflow in this guide implements these controls:

  1. OIDC Authentication: Secretless cloud authentication with short-lived tokens
  2. Environment Protection: Required reviewers and wait timers for production
  3. Minimal Permissions: id-token: write for OIDC, contents: read by default
  4. Approval Gates: Human review before production deployment
  5. Deployment Verification: Health checks after deployment
  6. Rollback Automation: Automatic rollback on failure
  7. Audit Trail: Deployment tracking and change logs

Full Reference

See reference.md for complete documentation.

References