Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问clear审计通过

release发布

Agent Skill

release 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

7,292

周安装

295

GitHub Stars

31,971

下载量

2,289
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/yeachan-heo/oh-my-claudecode --skill release

简介

用于查找、检索和筛选相关信息。release 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 适合根据关键词或任务场景快速定位候选结果。
  • 可结合来源仓库和原始 README 核验具体用法。
  • 安装前建议确认权限范围和维护状态。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • 注意是否会触发联网、命令执行或文件读写。

SKILL.md

Release Skill

A thin, repo-aware release assistant. On first run it inspects the project and CI to derive release rules, stores them in .omc/RELEASE_RULE.md for future use, then walks you through a release using those rules.

Usage

/oh-my-claudecode:release [version]
  • version is optional. If omitted the skill will ask. Accepts patch, minor, major, or an explicit semver like 2.4.0.
  • Add --refresh to force re-analysis of the repo even when a cached rule file exists.

Execution Flow

Step 0 — Load or Build Release Rules

Check whether .omc/RELEASE_RULE.md exists.

If it does NOT exist (or --refresh was passed): Run the full repo analysis below and write the file.

If it DOES exist: Read the file. Then do a quick delta check — scan .github/workflows/ (or equivalent CI dirs: .circleci/, .travis.yml, Jenkinsfile, bitbucket-pipelines.yml, gitlab-ci.yml) for any modifications newer than the last-analyzed timestamp in the rule file. If relevant workflow files changed, re-run the analysis for those sections and update the file. Report what changed.


Step 1 — Repo Analysis (first run or --refresh)

Inspect the repo and answer the following. Write answers into .omc/RELEASE_RULE.md.

1a. Version Sources

  • Locate all files that contain a version string matching the current version in package.json / pyproject.toml / Cargo.toml / build.gradle / VERSION file / etc.
  • List each file and the field or regex pattern used to find the version.
  • Detect whether there is a release automation script (e.g. scripts/release.*, Makefile release target, bump2version, release-it, semantic-release, changesets, goreleaser).

1b. Registry / Distribution

  • npm (package.json with publishConfig or npm publish in CI), PyPI (pyproject.toml + twine/flit), Cargo (Cargo.toml), Docker (Dockerfile + push step), GitHub Packages, other.
  • Is there a CI step that publishes automatically on tag push? Which workflow file and job?

1c. Release Trigger

  • Identify what starts the release: tag push (v*), manual dispatch (workflow_dispatch), merge to main/master, a release branch merge, a commit message pattern.

1d. Test Gate

  • Identify the test command and where it runs in CI.
  • Are tests required to pass before publish? Note any bypass flags.

1e. Release Notes / Changelog

  • Does a CHANGELOG.md or CHANGELOG.rst exist?
  • What convention is used: Keep a Changelog, Conventional Commits, GitHub auto-generated, none?
  • Is there a release body file (e.g. .github/release-body.md) committed pre-tag?

1f. First-Time User Check

  • Does a release workflow exist in .github/workflows/ (or equivalent)? If not, flag this and offer to scaffold one.
  • Is there a .gitignore entry preventing build artifacts from being committed? If not, flag it.
  • Are git tags being used? Run git tag --list to check. If no tags exist, flag and explain best practice.

Step 2 — Write .omc/RELEASE_RULE.md

Create or overwrite the file with this structure:

# Release Rules
<!-- last-analyzed: YYYY-MM-DDTHH:MM:SSZ -->

## Version Sources
<!-- list of files + patterns -->

## Release Trigger
<!-- what kicks off the release -->

## Test Gate
<!-- command + CI job name -->

## Registry / Distribution
<!-- npm, PyPI, Docker, etc. + CI job that publishes -->

## Release Notes Strategy
<!-- convention + files -->

## CI Workflow Files
<!-- paths to relevant workflow files -->

## First-Time Setup Gaps
<!-- any missing pieces found during analysis, or "none" -->

Step 3 — Determine Version

If the user provided a version argument, use it. Otherwise:

  1. Show the current version (from the primary version file).
  2. Show what patch, minor, and major would produce.
  3. Ask the user which to use.

Validate the chosen version is a valid semver string.


Step 4 — Pre-Release Checklist

Present a checklist derived from the release rules. At minimum:

  • All changes intended for this release are committed and pushed
  • CI is green on the target branch
  • Tests pass locally (run the test gate command)
  • Version bump applied to all version source files
  • Release notes / changelog prepared (see Step 5)

Ask the user to confirm before proceeding, or run each step if they say "go ahead".


Step 5 — Release Notes Guidance

Help the user write good release notes. Apply whichever convention the repo uses. Default guidance when no convention is detected:

What makes a good release note:

  • Lead with what changed for users, not internal implementation details.
  • Group by type: New Features, Bug Fixes, Breaking Changes, Deprecations, Internal / Chores.
  • For each item: one sentence, link to the PR or issue, credit the author if external.
  • Breaking changes go first and must include a migration path.
  • Omit changes users never see (refactors, CI tweaks, test-only changes) unless they affect build reproducibility.

Example entry format:

### Bug Fixes
- Fix session drop on token expiry (#123) — @contributor

If the repo uses Conventional Commits, generate a draft changelog from git log <prev-tag>..HEAD --no-merges --format="%s" grouped by commit type. Show it to the user and let them edit.


Step 6 — Execute Release

Using the rules discovered, walk through:

  1. Bump version — apply to each version source file.
  2. Run tests — execute the test gate command.
  3. Commitgit add <version files> CHANGELOG.md and commit with chore(release): bump version to vX.Y.Z.
  4. Taggit tag -a vX.Y.Z -m "vX.Y.Z" (annotated tags are preferred over lightweight).
  5. Pushgit push origin <branch> && git push origin vX.Y.Z.
  6. CI takes over — if the release trigger is a tag push, remind the user that CI will handle the rest (publish, GitHub release creation). Show the expected CI workflow file.
  7. Manual publish — if no CI automation exists, list the manual publish command (e.g. npm publish --access public, twine upload dist/*).

Step 7 — First-Time Setup Suggestions

If gaps were found in Step 1f, offer concrete help:

No release workflow:

Your repo doesn't have a release CI workflow. A GitHub Actions workflow triggered on v* tag push is the most common best practice. It can: - Run tests - Publish to npm/PyPI/etc. - Create a GitHub Release with your release notes Want me to scaffold a .github/workflows/release.yml for your stack?

No git tags:

This appears to be the first release. Git tags let GitHub, npm, and other tools understand your version history. We'll create your first tag in Step 6.

Build artifacts not gitignored:

Build artifacts are present in git history or not gitignored. This inflates repo size and creates merge conflicts. Want me to add them to .gitignore?

Step 8 — Verify

After the push:

  • Check CI status: gh run list --workflow=<release workflow> --limit=3 (if gh is available).
  • Check the registry (npm, PyPI) for the new version after a few minutes.
  • Confirm a GitHub Release was created: gh release view vX.Y.Z.

Report success or flag any failures.


Notes

  • This skill does not hardcode any project-specific version files or commands. Everything is derived from repo inspection.
  • .omc/RELEASE_RULE.md is a local cache. Commit it to your repo if you want to share the derived rules with your team, or add it to .gitignore if you prefer it stays local.
  • For complex monorepos or multi-package workspaces, the skill will detect workspace patterns (npm workspaces, pnpm workspaces, Cargo workspace) and adapt accordingly.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

29.43%
按下载量换算674

OpenCode

24.64%
按下载量换算564

Gemini CLI

17.66%
按下载量换算404

Antigravity

12.87%
按下载量换算295

Cursor

7.55%
按下载量换算173

Codex

3.45%
按下载量换算79

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills