3.8 KiB
title, category, tags, created, date, severity, component
| title | category | tags | created | date | severity | component | |||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Plugin Versioning and Documentation Requirements | workflow |
|
2025-11-24 | 2026-03-17 | 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.
This document applies to release-owned plugin metadata and changelog surfaces for the compound-engineering plugin, not ordinary feature work.
The broader repo-level release model now lives in:
docs/solutions/workflow/manual-release-please-github-releases.md
That doc covers the standing release PR, component ownership across cli, compound-engineering, coding-tutor, and marketplace, and the GitHub Releases model for published release notes. This document stays narrower: it is the plugin-scoped reminder for contributors changing plugins/compound-engineering/**.
Solution
Routine PRs should not cut plugin releases.
Embedded plugin versions are release-owned metadata. Release automation prepares the next versions and changelog entries after deciding which merged changes ship together. Because multiple PRs may merge before release, contributors should not guess release versions inside individual PRs.
Contributors should:
-
Avoid release bookkeeping in normal PRs
- Do not manually bump
plugins/compound-engineering/.claude-plugin/plugin.json - Do not manually bump the
compound-engineeringentry in.claude-plugin/marketplace.json - Do not cut release sections in the root
CHANGELOG.md
- Do not manually bump
-
Keep substantive docs accurate
- Verify component counts match actual files
- Verify agent/command/skill tables are accurate
- Update descriptions if functionality changed
- Run
bun run release:validatewhen plugin inventories or release-owned descriptions may have changed
Checklist for Plugin Changes
Before committing changes to compound-engineering plugin:
- [ ] No manual version bump in `plugins/compound-engineering/.claude-plugin/plugin.json`
- [ ] No manual version bump in the `compound-engineering` entry inside `.claude-plugin/marketplace.json`
- [ ] No manual release section added to `CHANGELOG.md`
- [ ] README.md component counts verified
- [ ] README.md tables updated (if adding/removing/renaming)
- [ ] plugin.json description updated (if component counts changed)
- [ ] `bun run release:validate` passes
File Locations
- Plugin version is release-owned:
plugins/compound-engineering/.claude-plugin/plugin.json - Marketplace entry is release-owned:
.claude-plugin/marketplace.json - Release notes are release-owned: GitHub release PRs and GitHub Releases
- Readme:
plugins/compound-engineering/README.md
Example Workflow
When adding a new agent:
- Create the agent file in
plugins/compound-engineering/agents/[category]/ - Update
plugins/compound-engineering/README.md - Leave plugin version selection and canonical release-note generation to release automation
- Run
bun run release:validate
Prevention
This documentation serves as a reminder. When maintainers or agents work on this plugin, they should:
- Check this doc before committing changes
- Follow the checklist above
- Do not guess release versions in feature PRs
- Refer to the repo-level release learning when the question is about batching, release PR behavior, or multi-component ownership rather than plugin-only bookkeeping
Related Files
plugins/compound-engineering/.claude-plugin/plugin.jsonplugins/compound-engineering/README.mdpackage.jsonCHANGELOG.mddocs/solutions/workflow/manual-release-please-github-releases.md