skills/keep-a-changelog/SKILL.md
Reference for Keep a Changelog format. Auto-loads when user asks "how to write changelog", "changelog format", "what goes in changelog", "changelog best practices".
npx skillsauth add tmsjngx0/mindcontext-core keep-a-changelogInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Reference for writing changelogs following Keep a Changelog.
# Changelog
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/),
and this project adheres to [Semantic Versioning](https://semver.org/).
## [Unreleased]
### Added
- New features
### Changed
- Changes in existing functionality
### Deprecated
- Soon-to-be removed features
### Removed
- Removed features
### Fixed
- Bug fixes
### Security
- Vulnerability fixes
## [1.0.0] - 2025-01-01
### Added
- Initial release
| Type | Description | |------|-------------| | Added | New features | | Changed | Changes in existing functionality | | Deprecated | Soon-to-be removed features | | Removed | Now removed features | | Fixed | Bug fixes | | Security | Vulnerability fixes |
Good entries:
### Added
- User authentication with OAuth2 support
- Dark mode theme option
- Export data to CSV format
### Changed
- Improved search performance by 50%
- Updated dashboard layout for better usability
### Fixed
- Login button not responding on mobile devices
- Incorrect date format in exported reports
Bad entries:
### Changed
- Updated stuff # Too vague
- Fixed bug # Which bug?
- Minor improvements # What improvements?
## [MAJOR.MINOR.PATCH] - YYYY-MM-DD
Always keep an [Unreleased] section at the top:
## [Unreleased]
### Added
- Feature currently in development
## [1.2.0] - 2025-01-01
...
When releasing, move unreleased items to new version.
Add links at the bottom:
[Unreleased]: https://github.com/user/repo/compare/v1.0.0...HEAD
[1.0.0]: https://github.com/user/repo/releases/tag/v1.0.0
## [Unreleased]
### Added
### Changed
### Fixed
tools
Bootstrap a project to use mctx by injecting a managed block into AGENTS.md. Tool-agnostic guidance every agent reads. Runs `mctx init` and shows the diff. Use when starting a new project, onboarding a repo, or asked to "init mctx" / "add mctx guidance" / "set up AGENTS.md".
development
Test-Driven Development workflow following Kent Beck's methodology. Auto-loads when user asks about "tdd", "test driven", "red green refactor", "write tests first".
testing
Analyze current session and generate a self-contained context prompt for the next Claude session. Includes project context, decisions, next steps, and tech stack. Use when ending a work session.
tools
Summarize current project state after a long break. Analyzes recent git history, beads issues, and memory to produce a one-page orientation. Use when returning to a project cold, or when asking "what was I doing", "where did I leave off".