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.