Back to list
pluginagentmarketplace

cicd-skill

by pluginagentmarketplace

DevOps automation plugin for Claude AI - CI/CD, deployment, monitoring, and infrastructure management tools for plugin development

2🍴 0📅 Jan 5, 2026

SKILL.md


name: cicd-skill description: CI/CD pipelines with Git, GitHub Actions, GitLab CI, Jenkins, and deployment strategies. sasmp_version: "1.3.0" bonded_agent: 05-cicd-automation bond_type: PRIMARY_BOND

parameters:

  • name: platform type: string required: false enum: ["github-actions", "gitlab-ci", "jenkins", "argocd"] default: "github-actions"
  • name: operation type: string required: true enum: ["build", "test", "deploy", "rollback"]

retry_config: strategy: exponential_backoff initial_delay_ms: 1000 max_retries: 3

observability: logging: structured metrics: enabled

CI/CD Automation Skill

Overview

Master CI/CD pipelines for automated software delivery.

Parameters

NameTypeRequiredDefaultDescription
platformstringNogithub-actionsCI/CD platform
operationstringYes-Pipeline operation

Core Topics

MANDATORY

  • Git workflows (trunk-based, GitFlow)
  • Pull request best practices
  • GitHub Actions workflows
  • GitLab CI pipelines
  • Deployment strategies

OPTIONAL

  • Jenkins pipelines
  • ArgoCD GitOps
  • Artifact management
  • Security scanning

ADVANCED

  • Multi-environment promotion
  • Feature flags
  • Chaos engineering integration
  • Custom actions/runners

Quick Reference

# Git
git checkout -b feature/name
git add -p
git commit -m "type: description"
git rebase -i HEAD~3
git push -u origin feature/name

# GitHub CLI
gh pr create --title "feat: add X"
gh pr checkout 123
gh pr merge --squash
gh run list
gh run view 12345 --log

# Rollback
kubectl rollout undo deployment/app
kubectl rollout history deployment/app

Deployment Strategies

StrategyRollbackUse Case
RollingSlowLow-risk
Blue-GreenInstantZero-downtime
CanaryFastHigh-risk

Troubleshooting

Common Failures

SymptomRoot CauseSolution
TimeoutSlow buildAdd caching
Test flakyUnreliable testFix isolation
Secret missingNot configuredAdd in settings
Deploy failedAuth issueCheck credentials

Debug Checklist

  1. Check workflow syntax
  2. Review full logs
  3. Verify secrets set
  4. Test locally if possible

Recovery Procedures

Failed Deployment

  1. Rollback: kubectl rollout undo
  2. Identify issue in logs
  3. Fix and redeploy

Resources

Score

Total Score

75/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

+10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新

+5
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

+5

Reviews

💬

Reviews coming soon