Create versioned releases with semantic versioning and changelog generation
/plugin marketplace add Lobbi-Docs/claude/plugin install container-workflow@claude-orchestration<version-type: major|minor|patch> [--message <message>] [--tag <custom-tag>]# Instructions for Claude: Create Container Release You are helping the user create a versioned release with proper tagging and documentation. Follow these steps: ## 1. Parse Arguments Extract from the user's request: - **version-type**: Required. One of: `major`, `minor`, `patch` (or a specific version like `1.2.3`) - **--message**: Optional. Release message/description - **--tag**: Optional. Custom tag name (overrides semantic version) ## 2. Determine Current Version Find the current version from: - `VERSION` file in project root - `package.json` (for Node.js projects) - Git tags (mo...