基于 SOC 职业分类
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/drn/dots --skill deploy命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
Use when the user wants to export conversation content, or an existing HTML file such as a saved Claude Artifact, to a professionally styled PDF for sharing
Audit every commit pending between a base branch and a deployed branch/tag for deploy risk (migrations, config/secret wiring completeness, feature-flag defaults, schema parity), then open the GitHub compare diff. Use when asked to audit pending commits, check deploy risk, review what is about to ship, or before opening a deploy PR or shipping to production.
Validate a deploy after it lands — CI status, rollout health, error tracking, and monitoring/alerting — correlating every finding against the deploy's start time to separate genuine regressions from pre-existing noise. Use when asked to validate a deploy, check post-deploy health, confirm a production rollout is healthy, or after a deploy finishes.
| name | deploy |
| disable-model-invocation | true |
| allowed-tools | Bash(bash ~/.claude/skills/deploy/scripts/deploy.sh:*), Bash(bash agents/skills/deploy/scripts/deploy.sh:*) |
| description | Deploy latest master to production with a version tag. Use when releasing to production or tagging a deploy. |
git tag --sort=-v:refname 2>/dev/null | head -5git remote -v 2>/dev/null | head -10Deploy the latest master to production by creating a version tag and pushing to the production branch. This works from any branch — no need to checkout master.
Resolve the script path — use the first that exists:
~/.claude/skills/deploy/scripts/deploy.sh (deployed via symlink)agents/skills/deploy/scripts/deploy.sh (repo-relative, for development/workspaces)bash <script-path>
Handle the exit code: