Files
leo-claude-mktplace/plugins/ops-release-manager/claude-md-integration.md
lmiranda 2d51df7a42 feat(marketplace): command consolidation + 8 new plugins (v8.1.0 → v9.0.0) [BREAKING]
Phase 1b: Rename all ~94 commands across 12 plugins to /<noun> <action>
sub-command pattern. Git-flow consolidated from 8→5 commands (commit
variants absorbed into --push/--merge/--sync flags). Dispatch files,
name: frontmatter, and cross-reference updates for all plugins.

Phase 2: Design documents for 8 new plugins in docs/designs/.

Phase 3: Scaffold 8 new plugins — saas-api-platform, saas-db-migrate,
saas-react-platform, saas-test-pilot, data-seed, ops-release-manager,
ops-deploy-pipeline, debug-mcp. Each with plugin.json, commands, agents,
skills, README, and claude-md-integration. Marketplace grows from 12→20.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-06 14:52:11 -05:00

32 lines
1.2 KiB
Markdown

# Release Manager Integration
Add to your project's CLAUDE.md:
## Release Management
This project uses ops-release-manager for versioning and release automation.
### Commands
- `/release setup` - Detect version locations and configure release workflow
- `/release status` - Show current version and unreleased changes
- `/release prepare <major|minor|patch>` - Bump versions and update changelog
- `/release validate` - Pre-release checks before tagging
- `/release tag` - Create annotated git tag with release notes
- `/release rollback` - Revert a release if needed
### Versioning
- Follows [SemVer](https://semver.org/) (MAJOR.MINOR.PATCH)
- Version locations: package.json, README.md, CHANGELOG.md (auto-detected)
- Changelog follows [Keep a Changelog](https://keepachangelog.com) format
### Release Process
1. All changes documented under `[Unreleased]` in CHANGELOG.md
2. Run `/release prepare minor` (or major/patch) when ready
3. Run `/release validate` to verify readiness
4. Run `/release tag --push` to finalize
### Conventions
- Tag format: `vX.Y.Z` (annotated tags with release notes)
- Branch format: `release/X.Y.Z` (for major/minor releases)
- Commit message: `chore(release): prepare vX.Y.Z`