chores
Update README.md, CHANGELOG.md, CLAUDE.md, and VERSION based on recent changes in the current branch.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Update README.md, CHANGELOG.md, CLAUDE.md, and VERSION based on recent changes in the current branch.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | chores |
| description | Update README.md, CHANGELOG.md, CLAUDE.md, and VERSION based on recent changes in the current branch. |
| user_invocable | true |
You are updating the project's documentation and version files to reflect recent work on the current branch. Follow these steps precisely.
Run these commands to understand what changed on the current branch since it diverged from main:
git log main..HEAD --oneline
git diff main..HEAD --stat
git diff main..HEAD
Read the full diffs carefully. Identify:
Read the current VERSION file. Decide the bump based on the changes:
Ask the user to confirm the version bump before proceeding. Show them what changed and your recommendation.
Write the new version string to VERSION (single line, no trailing newline beyond what's standard).
Read the current CHANGELOG.md. Add a new section under ## [Unreleased] or replace it with the new version heading. Follow the existing format exactly (Keep a Changelog style):
## [X.Y.Z] - YYYY-MM-DD
### Added
- ...
### Changed
- ...
### Removed
- ...
Rules:
brokers.alpaca.performance_ops").[Unreleased] items into the new version section if they are covered by the branch changes. Leave ## [Unreleased] as an empty heading at the top for future work.Read the current README.md. Update only the sections affected by the branch changes:
Rules:
Read the current CLAUDE.md. Update only what's affected:
Rules:
Show the user a brief summary of all changes made across the four files. Do NOT commit — let the user decide when to commit.