在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用cicd-skill
CI/CD pipelines with Git, GitHub Actions, GitLab CI, Jenkins, and deployment strategies.
星标3
分支0
更新时间2025年12月30日 11:44
文件资源管理器
7 个文件SKILL.md
readonly菜单
CI/CD pipelines with Git, GitHub Actions, GitLab CI, Jenkins, and deployment strategies.
DevOps scripting with Bash, Python, and Go for automation, tooling, and infrastructure management
Cloud infrastructure with AWS, Azure, GCP - architecture, services, security, and cost optimization.
Docker and Kubernetes - containerization, orchestration, and production deployment.
Infrastructure as Code with Terraform, Ansible, and CloudFormation.
Complete Linux administration skill covering process management, filesystem, permissions, package management, users, bash scripting, and system monitoring.
Monitoring and observability with Prometheus, Grafana, ELK Stack, and distributed tracing.
| 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"} |
Master CI/CD pipelines for automated software delivery.
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
| platform | string | No | github-actions | CI/CD platform |
| operation | string | Yes | - | Pipeline operation |
# 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
| Strategy | Rollback | Use Case |
|---|---|---|
| Rolling | Slow | Low-risk |
| Blue-Green | Instant | Zero-downtime |
| Canary | Fast | High-risk |
| Symptom | Root Cause | Solution |
|---|---|---|
| Timeout | Slow build | Add caching |
| Test flaky | Unreliable test | Fix isolation |
| Secret missing | Not configured | Add in settings |
| Deploy failed | Auth issue | Check credentials |
kubectl rollout undo