用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/jeffreytse/grimoire-core --skill write-changelog命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Use when comparing very differently-titled roles for compensation banding, leveling, or organizational design — score each role's inherent Know-How (knowledge, skills, experience required), Problem Solving (complexity and freedom of thinking, scored as a percentage of Know-How), and Accountability (freedom to act and magnitude of impact), because job titles and informal seniority perceptions vary inconsistently across departments and don't provide a comparable basis on their own.
Use when many people request your scarce time, mentorship, or expertise and you cannot evaluate their genuine commitment level from a conversation alone — require a specific, costly, objectively verifiable unit of self-directed output (a set number of completed attempts) before engaging, because genuine commitment is what a conversation cannot reliably reveal but a completed, verifiable body of work can.
Use when deciding how to allocate a manager's or leader's limited time across competing activities — before defaulting to whatever is most urgent, estimate each candidate activity's leverage (how many people's output it affects, for how long, and whether it requires your specific position), because a manager's actual output is the output of the organization under their influence, not their own individual task completion.
基于 SOC 职业分类
正在显示 SKILL.md
| name | write-changelog |
| description | Use when writing or updating a CHANGELOG for a software project before a release |
| source | Keep a Changelog (keepachangelog.com); Conventional Commits specification (conventionalcommits.org) |
| tags | ["changelog","release","documentation","conventional-commits","versioning"] |
| verified | true |
Produce a human-readable changelog that communicates what changed, for whom, and why.
Adopted by: Most major open-source projects (Node.js, Vue, Angular, Rails); mandated by Conventional Commits adopters Impact: Changelogs reduce support tickets at release time by giving users a clear upgrade path; Angular's adoption of Conventional Commits automated changelog generation and halved release preparation time.
Why best: A changelog is a contract with users. It separates "what the code did" (commit log) from "what users need to know" (changelog). The Keep a Changelog format provides a widely understood, machine-parseable structure.
## [version] - YYYY-MM-DD with subsections Added, Changed, Deprecated, Removed, Fixed, Security.git log v1.2.0..HEAD --oneline or parse Conventional Commit messages with a tool (standard-version, release-please, semantic-release).BREAKING CHANGE: or a visible banner; explain migration steps.## [Unreleased] at the top during development; move it to a versioned section at release.[1.3.0]: https://github.com/org/repo/compare/v1.2.0...v1.3.0.## [2.4.0] - 2026-05-01
### Added
- OAuth 2.0 login via Google and GitHub providers.
### Fixed
- Password reset email not sending when username contained special characters.
### Security
- Updated dependency `axios` to patch CVE-2026-12345 (SSRF vulnerability).