一键导入
manage-changelog
Manage changelogs using Changie. Provides tools to initialize, add change fragments, batch releases, and merge version notes.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Manage changelogs using Changie. Provides tools to initialize, add change fragments, batch releases, and merge version notes.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Build the project and automatically fix any build errors, compilation failures, or type mismatches. Use when the project fails to build, shows "broken" states, or after making significant changes.
Perform a "hard reset" of the development environment. Use when dependencies are corrupted, lockfiles are out of sync, or environment tools (Trunk/uv) are in an inconsistent state.
Fix a GitHub issue end-to-end. Use when given an issue number to fix, implementing bug fixes, or addressing reported problems.
Self-improvement skill for evolving Claude Code configuration. Use when you notice repeated mistakes, want to add new workflows, or optimize the development experience. Enables Claude to improve its own CLAUDE.md, skills, hooks, and agents.
Run linters and fix violations, formatting errors, or style mismatches using Trunk. Use when code quality checks fail, before submitting PRs, or to repair "broken" linting states.
Manage Architecture Decision Records (ADRs) using adr-tools. Use this to initialize, create, list, and link ADRs to document architectural evolution.
| name | manage-changelog |
| description | Manage changelogs using Changie. Provides tools to initialize, add change fragments, batch releases, and merge version notes. |
This skill enables the agent to manage project changelogs efficiently using Changie. It supports the full lifecycle from initialization to release.
If the project doesn't have changie set up, run the initialization script:
.cursor/skills/manage-changelog/scripts/init-changie.sh
This will create .changie.yaml with standard workspace settings. For details on the configuration, see references/configuration.md.
To add a new change fragment:
changie new --kind <kind> --body "<description>"
.cursor/skills/manage-changelog/scripts/add-from-last-commit.sh to create a fragment from the last commit message.When you are ready to create a new version:
# Preview next version
changie next auto
# Batch unreleased changes into a version
changie batch auto
For more details on versioning arguments and dry-run flags, see references/command-details.md.
To update the main CHANGELOG.md file:
changie merge
changie --help.