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.