Skip to content
Skillv1.0.0

devops-workflow-engineer

Generate and optimize GitHub Actions CI/CD workflows. Use when designing workflows, planning multi-environment deployments, optimizing pipeline cost and runtime, or implementing blue- green, canary, o

by borghei(0) 0 installs
Free
Sign in to install

Free account. Installing gives you the manifest plus copy-paste snippets.

See reviews

About

Imported from borghei/claude-skills (engineering/devops-workflow-engineer/SKILL.md). Install upstream with npx skills add borghei/claude-skills --skill devops-workflow-engineer. Copyright stays with the author (MIT + Commons Clause).

DevOps Workflow Engineer

Generate GitHub Actions workflow YAML, analyze existing pipelines for optimization opportunities, and create deployment plans with strategy selection, health checks, and rollback procedures.

Core Capabilities

  • CI pipeline design — fail-fast job ordering (lint → unit → build → integration → security) with matrix testing and CI time/flake/cache targets.
  • CD & multi-environment — dev/staging/prod promotion flows, build-once-deploy-everywhere, environment protection rules, and rollback at every stage.
  • Pipeline optimization — detect missing caching, missing timeouts, serial chains, deprecated actions, leaked secrets, and oversized runners; apply path filtering and concurrency cancellation.
  • Deployment strategies — choose blue-green, canary, or rolling via decision tree; canary traffic-split schedule with promotion gates.
  • GitHub Actions patterns — reusable workflows, OIDC auth, secrets hierarchy, and runner cost estimation.

When to Use

  • Designing a new CI or CD workflow from scratch.
  • Planning a multi-environment (dev/staging/prod) deployment.
  • Optimizing an existing pipeline's cost or runtime.
  • Implementing a blue-green, canary, or rolling deployment strategy.

Clarify First

Before generating the workflow, confirm these inputs. If any is unknown or vague, ASK — do not assume:

  • Workflow type — CI, CD, release, or security-scan (sets workflow_generator.py --type)
  • Stack — language and test framework (e.g. python/pytest) (drives the generated YAML steps via --language/--test-framework)
  • Deployment strategy & environments — blue-green, canary, or rolling, and which of dev/staging/prod (drives the deployment_planner.py plan)

Stop rule: ask only the 2-3 that most change the output. If the user says "just draft it," proceed and list your assumptions at the top of the artifact.

Tools

Tool Purpose Command
workflow_generator.py Generate GitHub Actions YAML (ci, cd, release, security-scan, docs-check) python scripts/workflow_generator.py --type ci --language python --test-framework pytest
pipeline_analyzer.py Analyze workflows for optimization findings, cost estimates, severity ratings python scripts/pipeline_analyzer.py .github/workflows/ --format json
deployment_planner.py Generate a deployment plan with strategy, health checks, rollback python scripts/deployment_planner.py --type webapp --environments dev,staging,prod --strategy canary

All tools support --format json and --output/-o for file writing.

References

Load the reference that matches the task — keep this file lean and pull detail on demand:

Integration Points

Skill Integration
release-orchestrator Release workflows align with versioning and changelog
senior-devops Deployment strategies complement infra automation
senior-secops Security scanning steps feed SecOps dashboards
senior-qa CI quality gates map to QA acceptance criteria
incident-commander Rollback procedures connect to incident playbooks

Use it

Copy one of these into your project. Installing also returns the manifest and these snippets.

yaml
targets:
  - https://api.opensmartroute.ai/api/v1/registry/borghei-claude-skills-devops-workflow-engineer/manifest   # or paste the manifest below

Manifest

An Open Capability Manifest: the router reads it to know what this does, what it costs and when to pick it.

borghei-claude-skills-devops-workflow-engineer.ocm.jsonjson
{
  "ocm": "1",
  "id": "borghei-claude-skills-devops-workflow-engineer",
  "kind": "skill",
  "name": "devops-workflow-engineer",
  "description": "Generate and optimize GitHub Actions CI/CD workflows. Use when designing workflows, planning multi-environment deployments, optimizing pipeline cost and runtime, or implementing blue- green, canary, or rolling deployment strategies.",
  "publisher": "borghei",
  "version": "1.0.0",
  "capabilities": {
    "domains": [
      "general"
    ],
    "tags": [
      "skill-md",
      "github-actions",
      "ci-cd",
      "deployment",
      "workflows",
      "skills-sh"
    ],
    "languages": [
      "en"
    ]
  },
  "quality_prior": 0.6,
  "examples": [
    "Generate and optimize GitHub Actions CI/CD workflows. Use when designing workflows, planning multi-environment deployments, optimizing pipeline cost and runtime, or implementing blue- green, canary, or rolling deployment strategies."
  ],
  "primary": false,
  "metadata": {
    "source": {
      "provider": "skills.sh",
      "repository": "https://github.com/borghei/claude-skills",
      "path": "engineering/devops-workflow-engineer/SKILL.md",
      "ref": "HEAD",
      "url": "https://github.com/borghei/claude-skills/blob/HEAD/engineering/devops-workflow-engineer/SKILL.md",
      "key": "borghei/claude-skills/engineering/devops-workflow-engineer/SKILL.md"
    },
    "license": "MIT + Commons Clause"
  },
  "instructions": "# DevOps Workflow Engineer\n\nGenerate GitHub Actions workflow YAML, analyze existing pipelines for optimization opportunities, and create deployment plans with strategy selection, health checks, and rollback procedures.\n\n## Core Capabilities\n\n- **CI pipeline design** — fail-fast job ordering (lint → unit → build → integration → security) with matrix testing and CI time/flake/cache targets.\n- **CD & multi-environment** — dev/staging/prod promotion flows, build-once-deploy-everywhere, environment protection rules, and rollback at every stage.\n- **Pipeline optimization** — detect missing caching, ",
  "cost": {
    "context_tokens": 1006
  }
}

Fetch it by URL: GET /api/v1/registry/borghei-claude-skills-devops-workflow-engineer/manifest?version=1.0.0

Reviews

Star ratings from people who tried it. One review per account; edit yours any time.

No reviews yet. Install it, try it, and be the first to rate it.

devops-workflow-engineer - Skill - OpenSmartRoute