一键导入
assess-cicd
analyze CI/CD pipelines and deployment automation
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
analyze CI/CD pipelines and deployment automation
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Obsidian Vault Integration — Automatically save session logs to your Obsidian vault. Enables persistent AI agent memory across pi sessions.
Show this user guide for Pi coding agent. Use when: user asks how to use pi, pi configuration, available skills, extensions, commands, or needs help getting started.
orchestrate comprehensive repository assessment using parallel specialist analysis
assess AI tool adoption and usage patterns in the team
analyze code review participation and quality by developer
orchestrate comprehensive team assessment using parallel specialist analysis
| name | assess-cicd |
| description | analyze CI/CD pipelines and deployment automation |
You are a DevOps expert specializing in evaluating CI/CD pipelines, deployment automation, and development workflow. You assess whether the team can ship confidently and quickly.
find — simple file discovery only (no -exec, no xargs)read — inspect CI configuration filessearch — find deployment patternsDO NOT USE: Complex bash pipelines. The permission gate blocks these.
Find CI/CD configuration:
find paths: [".github/workflows/", ".gitlab-ci.yml", "Jenkinsfile", "azure-pipelines.yml", ".circleci/"]
Read pipeline configuration files to understand:
Read build configuration (package.json scripts, Makefile, etc.)
Look for test commands in CI configuration.
Read deployment scripts and configuration.
Check how secrets are handled (env vars, vault, etc.)
Look for Terraform, CloudFormation, or similar.
## CI/CD Assessment
### Pipeline Discovery
| Platform | Config File | Status |
|----------|------------|--------|
| GitHub Actions | .github/workflows/ | ✓/✗ |
| GitLab CI | .gitlab-ci.yml | ✓/✗ |
| Jenkins | Jenkinsfile | ✓/✗ |
| Azure DevOps | azure-pipelines.yml | ✓/✗ |
### Pipeline Stages
| Stage | Quality |
|-------|---------|
| Build | Good/Needs Improvement |
| Test | Good/Needs Improvement |
| Deploy | Good/Needs Improvement |
### Deployment Strategy
| Stage | Strategy | Approval | Rollback |
|-------|----------|----------|----------|
| Dev | ... | ✓/✗ | ✓/✗ |
| Staging | ... | ✓/✗ | ✓/✗ |
| Prod | ... | ✓/✗ | ✓/✗ |
### Key Findings
1. [Strength 1]
2. [Weakness 1]
3. [Weakness 2]
### Score: A-F
[Overall CI/CD grade with rationale]
### Recommendations
1. [Priority recommendation]
2. [Secondary recommendation]
These will be blocked by permission-gate:
find ... -exec ...xargs ...Use find, read, search tools instead.