用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/AsiaOstrich/universal-dev-standards --skill release命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
[UDS] 以 Claude 原生 Agent tool 编排多任务执行计划(DAG-based,无外部引擎)。 Use when: executing a plan.json file with parallel/sequential task dependencies. Keywords: orchestrate, plan, execute, DAG, task plan, 编排, 执行计划, 并行.
[UDS] 从 Spec 文档、OpenSpec 变更或自由文本需求生成 plan.json。 Use when: converting specifications into executable task plans for /orchestrate. Keywords: plan, spec, task plan, 计划, 规格, 任务, plan.json, DAG.
[UDS] AI 辅助 git push 安全层:质量门禁 + 协作护栏。 Use when: pushing commits, force pushing, pushing to protected branches, pushing feature branches. Keywords: git push, force push, protected branch, quality gate, push receipt, PR automation, 推送, 保护分支, 质量门禁.
正在显示 SKILL.md
基于 SOC 职业分类
| name | release |
| scope | universal |
| description | [UDS] Guide release process and changelogs |
| allowed-tools | Read, Write, Grep, Bash(git:*), Bash(npm version:*) |
| argument-hint | [version] |
| prerequisites | ["release-check"] |
| disable-model-invocation | true |
Guide the release process following Semantic Versioning and changelog best practices.
引導遵循語義化版本和變更日誌最佳實踐的發布流程。
| Subcommand | Mode | Description | 說明 |
|---|---|---|---|
start | All | Start a release branch/process | 開始發布流程 |
finish | CI/CD | Finalize release (tag, merge) | 完成發布(標籤、合併) |
promote | Manual/Hybrid | Promote RC to Stable | RC → Stable 晉升 |
deploy | Manual/Hybrid | Record deployment to environment | 記錄部署紀錄 |
manifest | Manual/Hybrid | Generate build-manifest.json | 產生打包資訊清單 |
verify | Manual/Hybrid | Verify manifest consistency | 驗證清單一致性 |
changelog | All | Generate or update CHANGELOG.md | 產生或更新變更日誌 |
check | All | Run pre-release verification | 執行發布前檢查 |
Configure via uds init or uds config --type release_mode:
| Mode | Description | 說明 |
|---|---|---|
ci-cd | Automatic publishing via CI/CD pipeline (default) | CI/CD 自動發布(預設) |
manual | Manual packaging + RC workflow | 手動打包 + RC 工作流程 |
hybrid | CI builds artifact + manual deployment | CI 建置 + 手動部署 |
| Type | Pattern | npm Tag | 用途 |
|---|---|---|---|
| Stable | X.Y.Z | @latest | Production release |
| Beta | X.Y.Z-beta.N | @beta | Public testing |
| Alpha | X.Y.Z-alpha.N | @alpha | Internal testing |
| RC | X.Y.Z-rc.N | @rc | Release candidate |
gh pr list + gh issue list; classify each bring-in vs defer (XSPEC-265) / 掃描 issue/PR、每項二分(帶上 vs backlog)vX.Y.Z formatBefore bumping, scan open issues/PRs and make a conscious decision per item — do not rely on memory:
| Class | Action |
|---|---|
| Bring-in | patch dependabot PR / release-blocking bug / fix relevant to this version's theme → merge before bump |
| Defer | major PR, audit/enhancement issue, needs separate evaluation → record in signoff "deferred" + release-notes Known Issues |
cross-project/sub-project-triage.md snapshot is recent (≤7 days); refresh if stale.Pre-release issue/PR triage | PASS | N PRs / M issues: X merged / Y deferred.| Change Type | Increment | Example |
|---|---|---|
| Breaking changes | MAJOR | 1.9.5 → 2.0.0 |
| New features (backward-compatible) | MINOR | 2.3.5 → 2.4.0 |
| Bug fixes (backward-compatible) | PATCH | 3.1.2 → 3.1.3 |
/release start 1.2.0 - Start release process for v1.2.0/release changelog 1.2.0 - Update CHANGELOG for v1.2.0/release finish 1.2.0 - Finalize and tag v1.2.0/release check - Run pre-release verification/release start 1.2.0-rc.1 - Create RC versionuds release manifest - Generate build-manifest.jsonuds release deploy staging - Record staging deploymentuds release deploy staging --result passed - Record test result/release promote 1.2.0 - Promote RC to stableuds release deploy production - Record production deploymentuds release verify - Verify manifest consistencyAfter /release completes, the AI assistant should suggest:
發布流程完成。建議下一步 / Release process complete. Suggested next steps:
- 驗證 npm 發布狀態
npm view <pkg> dist-tags⭐ Recommended / 推薦 — Verify npm publication status- 建立 GitHub Release 並撰寫發布說明 — Create GitHub Release with notes
- 通知利害關係人新版本已發布 — Notify stakeholders of new release
完整的 AI 行為定義請參閱對應的命令文件:
/releaseFor complete AI agent behavior definition, see the corresponding command file:
/release