用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/bdfinst/agentic-dev-team --skill deploy命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Validate test suite quality by running a real mutation testing tool and triaging surviving mutants. Use after writing tests to verify assertions catch behavioral changes, when evaluating test coverage quality, or as a CI quality gate on critical modules. The AI value here is triage — classifying survivors, writing fix tests — not generating or estimating mutations.
Execute an approved implementation plan in small per-behavior batches. Reads the plan, implements each step one behavior at a time in the Code-First Small Batches cadence with a refactor on every green, runs inline review checkpoints, and produces verification evidence. Use when the user says "build this", "implement the plan", "start building", or after /plan has been approved.
Run all enabled review agents against target files. Use this whenever the user asks for a code review, wants feedback on their code, says "review my code", "check this before I PR", "what's wrong with this", "run the agents", or has just finished implementing a feature. Use proactively before commits and pull requests.
基于 SOC 职业分类
正在显示 SKILL.md
| name | deploy |
| description | Deploy the application to staging or production. |
| argument-hint | [staging | production] |
| user-invocable | true |
Arguments: $ARGUMENTS
staging (default): deploy to staging environmentproduction: deploy to production (requires staging green)Run npm test and npm run lint. Abort if either fails.
Run npm run build. Verify the dist/ directory is created.
Run docker build -t app:$(git rev-parse --short HEAD) .
Run docker push $ECR_REPO:$(git rev-parse --short HEAD)
Run aws ecs update-service --cluster $CLUSTER --service $SERVICE --force-new-deployment
Hit the /health endpoint. If it returns non-200 after 60 seconds, trigger rollback.
Print deployment status: image tag, environment, timestamp, health check result.