devops/deployment-process

SkillCloud & infra

Deployment process and CI/CD configuration to ensure safe and reliable deployments

Available today. Use it from your connected AI after setup.

Connect ahel once, and every AI you use reads what you have installed.

Then ask your AI: use the devops/deployment-process skill

What this skill tells your AI

The instructions your AI receives, as published by echovic/boss-skill in skill/skills/devops/deployment-process/SKILL.md and read by ahel’s review.

部署策略

策略说明适用场景
蓝绿部署两套环境切换需要快速回滚
滚动部署逐步替换实例零停机部署
金丝雀部署小流量验证风险较高的更新

CI/CD流程

代码提交 → 自动构建 → 自动测试 → 部署到测试环境 → 部署到生产环境

GitHub Actions示例

name: CI/CD
on: [push]
jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - name: Install
        run: npm install
      - name: Test
        run: npm test
      - name: Build
        run: npm run build
      - name: Deploy
        run: npm run deploy

环境配置

环境用途数据
local本地开发测试数据
dev开发测试测试数据
staging预发布生产数据副本
prod生产环境真实数据

Signals

GitHub stars
556
Forks
50
Last commit
Sep 2026
Advanced
Catalog kind
skill
Gateway key
devops-deployment-process
Source
github.com/echovic/boss-skill