| name | update-changelog |
| description | Use when the user invokes /update-changelog, or when a session has produced concrete repository changes (file edits, verification results, methodology updates, structural changes) that should be recorded in CHANGELOG.md by date and category. |
update-changelog
Append the session's substantive changes to CHANGELOG.md. Newest date first; entries grouped by category under each date.
When to Use
- User runs
/update-changelog
- A session ended with real repo changes worth a permanent log entry: a verification was completed, a methodology section was added, a tutorial Q&A landed, a new skill or directory appeared
Skip for: pure conversation, trivial typo fixes, untracked exploration.
Workflow
- Read
CHANGELOG.md to see the current structure and the most recent date.
- Identify substantive changes from the session: file additions/edits, verification outcomes, doc updates, structural moves.
- Group by category (table below).
- Today's date already present? Append under it. Otherwise create a new dated section directly under the top
--- divider.
- Write each entry as one concise line; include a markdown link if there's an external reference (paper, GitHub issue).
Format
---
## {YYYY-MM-DD}
### {Category}
- {Change 1}
- {Change 2 with [link](https://...) if relevant}
### {Other Category}
- {Change}
---
Categories
| Category | Use for |
|---|
| ๋ชจ๋ธ ๊ฒ์ฆ | Specific-model verification work (e.g., "Solar-Open-100B ๊ฒ์ฆ ์๋ฃ") |
| ๋ฌธ์ ์ถ๊ฐ/์์ | Tutorial, README, wiki content (e.g., "ํํ ๋ฆฌ์ผ Q11 ์ถ๊ฐ") |
| ๋ฐฉ๋ฒ๋ก ๊ฐ์ | Methodology changes, new analysis approach |
| ํ๋ก์ ํธ ๊ตฌ์กฐ | File/folder reorganization, skill/command additions |
| ๋ฒ๊ทธ ์์ | Errors corrected (links, typos that materially mislead) |
Authoring Rules
- One concise line per entry โ the what, not the how
- Be specific โ "Q11 ๋ฐฉ๋ฒ๋ก ๋นํ ์น์
์ถ๊ฐ" beats "๋ฌธ์ ์์ "
- Link external references โ papers, arXiv IDs, GitHub issues belong inline
- No duplicates โ if it's already in the changelog, don't re-add
Example
## 2026-01-05
### ๋ฐฉ๋ฒ๋ก ๊ฐ์
- ๊ฒ์ฆ ๋ฐฉ๋ฒ๋ก ํ๊ณ์ ํ์ ์ฐ๊ตฌ ๊ฒฐ๊ณผ ์น์
์ถ๊ฐ
- [arXiv:2502.00706](https://arxiv.org/abs/2502.00706) Black-box Output Similarity Testing ์ฐธ์กฐ
- Yi-Llama ๋
ผ์ ์ฌ๋ก ์ฐ๊ตฌ ์ถ๊ฐ
### ๋ฌธ์ ์ถ๊ฐ
- ํํ ๋ฆฌ์ผ Q11: ๋ฐฉ๋ฒ๋ก ๋นํ์ ๋ํ ๋ต๋ณ ์ถ๊ฐ
### ํ๋ก์ ํธ ๊ตฌ์กฐ
- `.claude/skills/update-changelog/` skill ์ถ๊ฐ
Common Mistakes
- Creating a new dated section when today's already exists โ append instead
- Logging non-changes (questions answered without repo changes) โ skip them
- Vague entries ("๋ฌธ์ ์์ ") โ name the section or Q-number
- Forgetting the trailing
--- divider โ breaks future appends
- Inserting today's date below an older date โ newest must stay on top