From 1d49d83ab65b3c141f9ff493911a2daf2526ca0f Mon Sep 17 00:00:00 2001 From: Steve Nims Date: Fri, 12 Dec 2025 20:53:44 -0500 Subject: [PATCH] chore: prepare release v0.2.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Update version to 0.2.0 in plugin.json, marketplace.json, and CLAUDE.md - Add CHANGELOG entry for v0.2.0 release 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- .claude-plugin/marketplace.json | 4 ++-- CHANGELOG.md | 20 ++++++++++++++++++- CLAUDE.md | 2 +- plugins/plugin-dev/.claude-plugin/plugin.json | 2 +- 4 files changed, 23 insertions(+), 5 deletions(-) diff --git a/.claude-plugin/marketplace.json b/.claude-plugin/marketplace.json index 36e5069..3f198f3 100644 --- a/.claude-plugin/marketplace.json +++ b/.claude-plugin/marketplace.json @@ -6,13 +6,13 @@ }, "metadata": { "description": "Unofficial plugin-dev plugin marketplace for plugin-dev Claude Code plugin - the plugin itself was initially created by Daisy Hollman at Anthropic.", - "version": "0.1.0" + "version": "0.2.0" }, "plugins": [ { "name": "plugin-dev", "description": "Comprehensive toolkit for developing Claude Code plugins. Includes 8 expert skills covering hooks, MCP integration, commands, agents, marketplaces, and best practices. AI-assisted plugin creation and validation.", - "version": "0.1.0", + "version": "0.2.0", "author": { "name": "Daisy Hollman", "url": "https://github.com/anthropics/claude-code/", diff --git a/CHANGELOG.md b/CHANGELOG.md index 83cab23..b4d371f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.0] - 2025-12-12 + +### Added + +- **`/plugin-dev:start` command** - New primary entry point that guides users to choose between creating a plugin or marketplace (#145) + - Uses `disable-model-invocation: true` to route cleanly to specialized workflows + - Recommends plugin creation for most users + +### Fixed + +- Enable router invocation of workflow commands - workflow commands can now be invoked by other commands (#145) +- Replace `!` with `[BANG]` placeholder in skill documentation to prevent shell interpretation issues (#142) + +### Documentation + +- Fix component counts and update documentation accuracy across README, CONTRIBUTING, CLAUDE.md, and marketplace.json + ## [0.1.0] - 2025-12-11 ### Added @@ -109,5 +126,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Based on original plugin by Daisy Hollman at Anthropic - Expanded with enhanced skills, additional utilities, and CI/CD infrastructure -[Unreleased]: https://github.com/sjnims/plugin-dev/compare/v0.1.0...HEAD +[Unreleased]: https://github.com/sjnims/plugin-dev/compare/v0.2.0...HEAD +[0.2.0]: https://github.com/sjnims/plugin-dev/compare/v0.1.0...v0.2.0 [0.1.0]: https://github.com/sjnims/plugin-dev/releases/tag/v0.1.0 diff --git a/CLAUDE.md b/CLAUDE.md index e92cac3..0cb7079 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -8,7 +8,7 @@ This repository is a **plugin marketplace** containing the **plugin-dev** plugin ## Quick Reference -**Current Version**: v0.1.0 (see [CHANGELOG.md](CHANGELOG.md) for release history) +**Current Version**: v0.2.0 (see [CHANGELOG.md](CHANGELOG.md) for release history) ## Repository Structure diff --git a/plugins/plugin-dev/.claude-plugin/plugin.json b/plugins/plugin-dev/.claude-plugin/plugin.json index dc897bc..1fc96a4 100644 --- a/plugins/plugin-dev/.claude-plugin/plugin.json +++ b/plugins/plugin-dev/.claude-plugin/plugin.json @@ -1,6 +1,6 @@ { "name": "plugin-dev", - "version": "0.1.0", + "version": "0.2.0", "description": "Comprehensive toolkit for developing Claude Code plugins. Includes 8 expert skills covering hooks, MCP integration, commands, agents, marketplaces, and best practices. AI-assisted plugin creation and validation.", "author": { "name": "Daisy Hollman",