惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园_首页
IT之家
IT之家
博客园 - Franky
Stack Overflow Blog
Stack Overflow Blog
宝玉的分享
宝玉的分享
Recent Announcements
Recent Announcements
Engineering at Meta
Engineering at Meta
S
SegmentFault 最新的问题
V
Visual Studio Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Last Week in AI
Last Week in AI
H
Help Net Security
V
V2EX
H
Hackread – Cybersecurity News, Data Breaches, AI and More
量子位
博客园 - 叶小钗
J
Java Code Geeks
博客园 - 【当耐特】
月光博客
月光博客
爱范儿
爱范儿
人人都是产品经理
人人都是产品经理
酷 壳 – CoolShell
酷 壳 – CoolShell
小众软件
小众软件

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
docs(skills): add release changelog update workflow · ope...
steipete · 2026-05-27 · via Recent Commits to openclaw:main

@@ -0,0 +1,86 @@

1+

---

2+

name: openclaw-changelog-update

3+

description: Regenerate OpenClaw release changelog sections from git history before beta or stable releases.

4+

---

5+6+

# OpenClaw Changelog Update

7+8+

Use this for release changelog rewrites and GitHub release-note source text.

9+

Use it with `release-openclaw-maintainer`; this skill owns changelog content,

10+

ordering, and audit discipline.

11+12+

## Goal

13+14+

Rewrite the target `CHANGELOG.md` version section from history, not from stale

15+

draft notes. Produce user-facing release notes sorted by user interest while

16+

preserving issue/PR refs and thanks.

17+18+

## Inputs

19+20+

- Target base version: `YYYY.M.D`, without beta suffix.

21+

- Base tag: last reachable shipped release tag, usually the previous stable or

22+

the previous beta train requested by the operator.

23+

- Target ref: exact branch/SHA being released.

24+25+

## Workflow

26+27+

1. Start on `main` before branching when possible:

28+

- `git fetch --tags origin`

29+

- `git pull --ff-only`

30+

- confirm clean `git status -sb`

31+

2. Audit history, including direct commits:

32+

- `git log --first-parent --date=iso-strict --pretty=format:'%h%x09%ad%x09%s' <base-tag>..<target-ref>`

33+

- `git log --first-parent --grep='(#' --date=short --pretty=format:'%h%x09%ad%x09%s' <base-tag>..<target-ref>`

34+

- also inspect `--since='24 hours ago'` when main moved during the release.

35+

3. Read linked PRs/issues or diffs for ambiguous commits. Direct commits matter;

36+

infer notes from subject, body, touched files, tests, and nearby commits.

37+

4. Rewrite one stable-base section only:

38+

- use `## YYYY.M.D`

39+

- do not create beta-specific headings

40+

- do not leave a stale `## Unreleased` section above the target release

41+

- if `Unreleased` contains release-bound notes, fold them into the target

42+

section instead of deleting them

43+

5. Section shape:

44+

- `### Highlights`: 5-8 bullets, broad user wins first

45+

- `### Changes`: new capabilities and behavior changes

46+

- `### Fixes`: user-facing fixes first, grouped by impact and surface

47+

6. Preserve attribution:

48+

- keep `#issue`, `(#PR)`, GHSA ids, `Fixes #...`, and `Thanks @...`

49+

- never thank bots, `@openclaw`, `@clawsweeper`, or `@steipete`

50+

- if grouping multiple entries, carry all relevant refs and thanks into the

51+

grouped bullet

52+

7. Sorting preference:

53+

- security/data-loss and content-boundary fixes

54+

- transcript/replay/reply delivery correctness

55+

- channels and mobile integrations

56+

- providers/Codex/local model reliability

57+

- install/update/release path reliability

58+

- performance and observability

59+

- docs and contributor-only/internal details last or omitted

60+

8. Keep bullets single-line unless existing file style forces otherwise. Avoid

61+

internal release-process noise unless it changes user install/update safety.

62+

9. Check release-note side conditions:

63+

- inspect `src/plugins/compat/registry.ts`

64+

- inspect `src/commands/doctor/shared/deprecation-compat.ts`

65+

- if any compatibility `removeAfter` is on/before release date, resolve it

66+

or explicitly record the blocker before shipping

67+

10. Validate and ship:

68+

- `git diff --check`

69+

- for docs/changelog-only changes, no broad tests are required

70+

- commit with `scripts/committer "docs(changelog): refresh YYYY.M.D notes" CHANGELOG.md`

71+

- push, pull/rebase if needed, then branch/rebase release from latest `main`

72+73+

## Quota / API Outage Rule

74+75+

If GitHub API quota is exhausted, do not idle. Continue work that does not need

76+

GitHub API:

77+78+

- local changelog rewrite and release-note extraction

79+

- local pretag checks and package/build sanity

80+

- git push/tag checks over git protocol

81+

- npm registry `npm view` checks

82+

- exact workflow-dispatch command preparation

83+84+

Only GitHub Release creation, workflow dispatch, run polling, artifact download,

85+

and issue/PR mutation need API quota.

86+