Token导航 LogoToken导航TokenDH.com
前端设计需要联网github未标认证来源可访问clear审计通过

release-readiness-checklist发布准备清单

Agent Skill

用于辅助安全审计、权限检查、凭据风险、认证流程和常见漏洞排查。它适合让 Agent 梳理敏感配置、检查依赖风险、分析鉴权逻辑或生成安全复核清单。使用时不能把工具输出直接当最终结论,涉及密钥、令牌、用户数据或生产系统时,应先确认最小权限、脱敏方式和操作边界。

总安装

312

周安装

13

GitHub Stars

3

下载量

104
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:release-readiness-checklist(发布准备清单)
来源仓库:https://github.com/asteroid-belt-llc/skills
仓库路径:skills/release-readiness-checklist
安装命令:
npx skills add https://github.com/asteroid-belt-llc/skills --skill release-readiness-checklist
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/asteroid-belt-llc/skills --skill release-readiness-checklist

简介

用于辅助安全审计、权限检查、凭据风险、认证流程和常见漏洞排查。它适合让 Agent 梳理敏感配置、检查依赖风险、分析鉴权逻辑或生成安全复核清单。

  • 使用时不能把工具输出直接当最终结论,涉及密钥、令牌、用户数据或生产系统时,应先确认最小权限、脱敏方式和操作边界。
  • 通过 npx skills add 命令从指定仓库安装,具体用法请结合原始 README 进一步确认。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写操作。
  • release-readiness-checklist 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Release Readiness Checklist

Conduct an interactive release readiness review, walking through each checklist category and producing a markdown summary at the end.

Workflow

  1. Detect build system - Check for Makefile and available targets
  2. Determine version - Analyze changes to recommend semantic version bump
  3. Walk through checklist - Review each category interactively with the user
  4. Generate summary - Output markdown checklist with status and action items

Step 0: Detect Build System

Check if the project has a Makefile or Justfile with standard targets:

# List Makefile targets
make -qp 2>/dev/null | grep -E "^[a-zA-Z_-]+:" | cut -d: -f1 | sort -u

# List Justfile recipes
just --list 2>/dev/null

Common targets/recipes to look for: build, test, lint, format, check, audit, clean

If Makefile or Justfile exists with these targets, prefer them over language-specific commands throughout the checklist:

TaskMakefileJustfileFallback
Lintmake lintjust lintnpm run lint, ruff check
Testmake testjust testpytest, npm test
Buildmake buildjust buildnpm run build, cargo build
Formatmake formatjust formatprettier, black
Auditmake auditjust auditnpm audit, pip-audit

Step 1: Determine Version Type

Analyze the changes since the last release to recommend a version bump:

MAJOR (X.0.0) - Breaking changes
├── API contract changes (removed/renamed endpoints, changed request/response schemas)
├── Database schema changes requiring migration
├── Removed or renamed public interfaces/exports
├── Changed default behaviors that could break existing integrations
└── Dependency upgrades with breaking changes that surface to users

MINOR (x.Y.0) - New features, backward-compatible
├── New API endpoints or features
├── New optional parameters or configuration
├── Deprecations (without removal)
├── Performance improvements
└── New dependencies that don't affect public API

PATCH (x.y.Z) - Bug fixes, backward-compatible
├── Bug fixes
├── Security patches
├── Documentation updates
├── Internal refactoring (no behavior change)
└── Dependency updates (non-breaking)

Examine recent commits, changelog entries, or ask the user about changes to determine the appropriate version bump.

Step 2: Interactive Checklist Review

Walk through each category below. For each item:

  • Ask the user for status (done, not applicable, needs work)
  • Offer to help resolve blockers
  • Track items that need attention

Categories

Code Quality

  • All code changes reviewed and approved
  • No TODO/FIXME comments blocking release
  • No debug code or console statements in production paths
  • Linting passes with no errors
  • Type checking passes (if applicable)

Testing

  • All tests pass
  • Test coverage meets project threshold
  • Critical paths have integration tests
  • Manual testing completed for new features
  • Regression testing for bug fixes

Documentation

  • CHANGELOG updated with all notable changes
  • README updated if features/setup changed
  • API documentation reflects changes
  • Migration guide written (for breaking changes)

Security

  • No secrets or credentials in codebase
  • Git history scanned for exposed secrets (see references/secrets-scanning.md)
  • Dependencies scanned for vulnerabilities
  • Security-sensitive changes reviewed
  • Authentication/authorization changes tested

Versioning

  • Version bumped according to semver (see references/semver.md)
  • Version consistent across all package files
  • Git tag prepared (not pushed)
  • Previous version tagged and accessible

CI/CD

  • All CI checks pass on release branch
  • Pipeline configuration follows best practices (see references/ci-cd-best-practices.md)
  • Build artifacts generated successfully
  • Deployment pipeline tested in staging
  • Rollback procedure documented and tested

Release Artifacts

  • Release notes drafted
  • Changelog entry finalized
  • Distribution packages built
  • Checksums/signatures generated (if applicable)

Operational Readiness

  • Monitoring and alerting configured
  • Rollback plan documented
  • On-call team notified
  • Communication plan ready (announcements, notifications)

See references/checklist-details.md for detailed explanations of each item.

Step 3: Generate Summary

After completing the review, output a markdown summary:

# Release Readiness Report

**Project:** [name]
**Proposed Version:** [X.Y.Z]
**Date:** [YYYY-MM-DD]
**Status:** [Ready / Blocked]

## Version Determination
[Explanation of why this version number was chosen based on semver]

## Checklist Summary

| Category | Status | Blockers |
|----------|--------|----------|
| Code Quality | ✅/⚠️/❌ | [issues] |
| Testing | ✅/⚠️/❌ | [issues] |
| Documentation | ✅/⚠️/❌ | [issues] |
| Security | ✅/⚠️/❌ | [issues] |
| Versioning | ✅/⚠️/❌ | [issues] |
| CI/CD | ✅/⚠️/❌ | [issues] |
| Release Artifacts | ✅/⚠️/❌ | [issues] |
| Operational Readiness | ✅/⚠️/❌ | [issues] |

## Action Items
- [ ] [Blocking items that must be resolved]
- [ ] [Recommended items to address]

## Approval
- [ ] Release approved by: _______________
- [ ] Release date/time: _______________

Resources

  • references/semver.md - Semantic versioning rules and examples
  • references/checklist-details.md - Detailed explanations for each checklist item
  • references/secrets-scanning.md - Guide to scanning for exposed secrets in git history
  • references/ci-cd-best-practices.md - GitHub Actions and GitLab CI pipeline best practices

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

27.39%
按下载量换算28

windsurf

24.79%
按下载量换算26

OpenCode

18.02%
按下载量换算19

Codex

11.6%
按下载量换算12

Gemini CLI

8.62%
按下载量换算9

Cursor

3.41%
按下载量换算4

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills