change-writer
1
总安装量
1
周安装量
#52716
全站排名
安装命令
npx skills add https://github.com/dtsvetkov1/agent-rules --skill change-writer
Agent 安装分布
mcpjam
1
claude-code
1
replit
1
junie
1
windsurf
1
zencoder
1
Skill 文档
Change Writer Skill
This skill analyzes recent changes in the repository to generate structured changelogs. It categorizes changes into Features, Fixes, and Refactors.
Instructions
- Analyze History: Run the git log command to see recent changes.
- Identify Impact: Look at changed files to understand the scope (e.g., UI, logic, infrastructure).
- Draft Notes: Group changes by type (Feat, Fix, Chore, Docs).
- Format: Output in Markdown format compatible with
CHANGELOG.mdor GitHub Releases.
Categories
- ð Features: New functionality.
- ð Bug Fixes: Resolving issues.
- â¡ Performance: Speed optimizations.
- ð§¹ Chores: Internal tasks, dependency updates.
- ð Documentation: Changes to docs.
Example Output
## [1.2.0] - 2025-12-27
### ð Features
- Added `Zustand` store for global theme management.
- Implemented `api-expert` skill for better backend integration.
### ð Bug Fixes
- Fixed keyboard avoiding view overlap on Android.
- Resolved race condition in auth flow.
### ð§¹ Chores
- Updated `expo` to SDK 54.
- Cleaned up unused assets.
Run scripts/get-changes.sh to see a summary of unstaged changes.