2.5 KiB
2.5 KiB
title, category, tags, created, severity, component
| title | category | tags | created | severity | component | |||||
|---|---|---|---|---|---|---|---|---|---|---|
| Plugin Versioning and Documentation Requirements | workflow |
|
2025-11-24 | process | plugin-development |
Plugin Versioning and Documentation Requirements
Problem
When making changes to the compound-engineering plugin, documentation can get out of sync with the actual components (agents, commands, skills). This leads to confusion about what's included in each version and makes it difficult to track changes over time.
Solution
Every change to the plugin MUST include:
-
Version bump in
plugin.json- Follow semantic versioning (semver)
- MAJOR: Breaking changes or major reorganization
- MINOR: New agents, commands, or skills added
- PATCH: Bug fixes, documentation updates, minor improvements
-
CHANGELOG.md update
- Add entry under
## [Unreleased]or new version section - Use Keep a Changelog format
- Categories: Added, Changed, Deprecated, Removed, Fixed, Security
- Add entry under
-
README.md verification
- Verify component counts match actual files
- Verify agent/command/skill tables are accurate
- Update descriptions if functionality changed
Checklist for Plugin Changes
Before committing changes to compound-engineering plugin:
- [ ] Version bumped in `.claude-plugin/plugin.json`
- [ ] CHANGELOG.md updated with changes
- [ ] README.md component counts verified
- [ ] README.md tables updated (if adding/removing/renaming)
- [ ] plugin.json description updated (if component counts changed)
File Locations
- Version:
.claude-plugin/plugin.json→"version": "X.Y.Z" - Changelog:
CHANGELOG.md - Readme:
README.md
Example Workflow
When adding a new agent:
- Create the agent file in
agents/[category]/ - Bump version in
plugin.json(minor version for new agent) - Add to CHANGELOG under
### Added - Add row to README agent table
- Update README component count
- Update plugin.json description with new counts
Prevention
This documentation serves as a reminder. When Claude Code works on this plugin, it should:
- Check this doc before committing changes
- Follow the checklist above
- Never commit partial updates (all three files must be updated together)
Related Files
/Users/kieranklaassen/every-marketplace/plugins/compound-engineering/.claude-plugin/plugin.json/Users/kieranklaassen/every-marketplace/plugins/compound-engineering/CHANGELOG.md/Users/kieranklaassen/every-marketplace/plugins/compound-engineering/README.md