원클릭으로
gen-release-notes
从 git log 自动提取 Conventional Commits,按 feat/fix/chore 分类生成中文 changelog
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
从 git log 自动提取 Conventional Commits,按 feat/fix/chore 分类生成中文 changelog
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Convert a data question into a dataset-profile plan (overview, schema, or quality). Use when the user asks what the dataset looks like, what columns/types exist, how many rows, or about data quality and missing values.
Convert a data question into a distribution plan for one numeric column (histogram or box plot). Use when the user asks about distribution, spread, outliers, or the shape of a single numeric variable.
Convert a data question into a time-series trend plan. Use when the user asks how a numeric value changes over time, monthly/weekly/daily trends, or seasonality.
Convert a data question into a correlation plan among numeric columns. Use when the user asks about relationships, correlation, or which variables move together.
Convert a data question into a visualization plan (bar/line/scatter/pie) for tabular data. Use when the user asks to compare, rank, trend by category, relate two numbers, or visualize a breakdown.
Convert a data question into a descriptive-statistics plan for tabular data. Use when the user asks for mean, median, variance, std, min, max, count, or grouped descriptive statistics.
| name | gen-release-notes |
| description | 从 git log 自动提取 Conventional Commits,按 feat/fix/chore 分类生成中文 changelog |
| disable-model-invocation | true |
用户输入 /gen-release-notes 或 /gen-release-notes v2.0..v3.0 指定版本范围。
feat: → 新功能fix: → Bug 修复chore: / docs: / refactor: → 其他## vX.Y.Z (YYYY-MM-DD)
### 新功能
- xxx
### Bug 修复
- xxx
### 其他
- xxx
# 获取最近 20 条 commit
git log --oneline -20
# 从上次 tag 到 HEAD
git log $(git describe --tags --abbrev=0 2>/dev/null || echo "HEAD~20")..HEAD --oneline
# 指定版本范围
git log <old-version>..<new-version> --oneline