This is the first stable release of the Tenzir Claude Marketplace, a collection of plugins that extend Claude Code’s capabilities for working with the Tenzir ecosystem. This release introduces fully qualified skill names across all plugins for clarity and consistency. The writing plugin has been renamed to prose to better reflect its purpose, and the auto-update plugin has been removed in favor of manual updates. The CI now validates all skills using the official Agent Skills specification.
💥 Breaking Changes
Section titled “💥 Breaking Changes”Renamed writing plugin to prose
Section titled “Renamed writing plugin to prose”Dec 19, 2025 · @mavam, @claude
The writing plugin is now prose to better reflect its purpose: style guidelines for technical prose across different contexts (documentation, error messages, CLI output, etc.).
All references to writing:technical-writing are now prose:technical-writing.
Remove auto-update plugin
Section titled “Remove auto-update plugin”Dec 15, 2025 · @mavam, @claude
Remove the auto-update plugin as it was ineffective. The plugin ran on session start, but the current session already has old plugin code loaded, so updates only take effect on the next session. This made the automation pointless.
Users can manually run claude plugin marketplace update tenzir when they want to update the marketplace.
Use fully qualified skill names throughout plugins
Section titled “Use fully qualified skill names throughout plugins”Dec 11, 2025 · @mavam, @claude
All skill references now use fully qualified names (plugin:skill-name format) for clarity and consistency.
The following skills were renamed to follow the gerund naming convention and avoid redundancy with the plugin name prefix:
changelog-management→managing-entrieswriting-documentation→writing
Affected references across plugins:
git:writing-commit-messagesbrand:styling-tenzir-uichangelog:managing-entriesdocs:writingmeta:managing-pluginspython:python-conventionsprose:technical-writing
🚀 Features
Section titled “🚀 Features”Skill validation in CI using agentskills skills-ref
Section titled “Skill validation in CI using agentskills skills-ref”Dec 18, 2025 · @mavam, @claude
The CI now validates all plugin skills using the official skills-ref tool from the agentskills project. This validation runs in parallel with the existing plugin structure validation, ensuring skills conform to the Agent Skills specification.
🔧 Changes
Section titled “🔧 Changes”Clarify plugin release publishing responsibilities
Section titled “Clarify plugin release publishing responsibilities”Dec 19, 2025 · @mavam, @claude
Clarified that plugin releases do not create git tags or GitHub releases. Plugin releases now stage and commit locally, with the parent project handling publishing. Updated documentation to reflect this responsibility boundary.
Version synchronization validation in plugin validation script
Section titled “Version synchronization validation in plugin validation script”Dec 16, 2025 · @mavam, @claude
The plugin validation script now enforces that the version field in each plugin’s plugin.json matches the latest released version in its changelog/releases/ directory. This validation catches mismatches between the declared plugin version and the actual released version, helping maintain consistency across the plugin marketplace.
Document plugin version synchronization requirement
Section titled “Document plugin version synchronization requirement”Dec 16, 2025 · @mavam, @claude
The plugin.json version must match the latest released version in the plugin’s changelog/releases/ directory. When releasing via /changelog:release, update plugin.json accordingly.
Automatically load meta:managing-plugins skill for plugin development
Section titled “Automatically load meta:managing-plugins skill for plugin development”Dec 12, 2025 · @mavam, @claude
Add a rule that automatically loads the meta:managing-plugins skill when working with files in the plugins/ directory. This improves the developer experience by ensuring the essential plugin management guidance is always available when creating, modifying, or reviewing plugins.
Update commit command to use /changelog:add slash command
Section titled “Update commit command to use /changelog:add slash command”Dec 11, 2025 · @mavam, @claude
Reference the /changelog:add slash command instead of invoking the changelog skill directly for a guided workflow.
Expand commit command guidance
Section titled “Expand commit command guidance”Dec 11, 2025 · @mavam, @claude
The /git:commit command now provides more actionable guidance for project-specific requirements. Each requirement (changelog entries, version bumps, validation steps) includes specific instructions on what to look for and how to proceed.
Add color properties to subagents
Section titled “Add color properties to subagents”Dec 11, 2025 · @mavam, @claude
The releaser subagent now uses green and the committer subagent uses yellow for visual distinction in the CLI.
Use AskUserQuestion in release command
Section titled “Use AskUserQuestion in release command”The /release command now explicitly references AskUserQuestion for user prompts, matching the pattern established in /commit.
Improve skill descriptions for better discoverability
Section titled “Improve skill descriptions for better discoverability”Skill descriptions now include more action-based triggers (running tools, editing files) alongside file-based triggers for better discoverability. Also removes time-sensitive wording from python-conventions.
Improve skill discoverability with artifact-based triggers
Section titled “Improve skill discoverability with artifact-based triggers”Dec 5, 2025 · @mavam
Rename skills and update descriptions to trigger on artifact detection rather than specific user queries:
writing-python-code→python-conventions: triggers on Python repository orpyproject.toml/uv.lock/ruff.toml/.pyfilesmanaging-changelogs→changelog-management: triggers on changelog questions orchangelog/directory
🐞 Bug Fixes
Section titled “🐞 Bug Fixes”Broaden managing-plugins skill triggers
Section titled “Broaden managing-plugins skill triggers”The skill description now emphasizes “editing ANY file in the plugins/ directory” and explicitly mentions “bumping plugin versions” as a trigger, making it clearer when the skill should be loaded.
Brand Plugin v1.0.0
Section titled “Brand Plugin v1.0.0”- 🚀 Expand badge color palette to match tags — @mavam and @claude
- 🚀 Add official SVG logo assets — @mavam and @claude
- 🚀 Standardize CSS custom properties with —tnz- prefix — @mavam and @claude
- 🚀 Add brand plugin with Tenzir design system — @mavam and @claude
Changelog Plugin v1.2.0
Section titled “Changelog Plugin v1.2.0”- 🔧 Release workflow simplified with clearer module release handling — @mavam and @claude
- 🔧 Document extension.toml for version bumping — @mavam and @claude
Docs Plugin v1.1.0
Section titled “Docs Plugin v1.1.0”- 🚀 Autonomous documentation workflow with write and review — @mavam and @claude
- 🚀 Add /docs:review command for documentation review — @mavam and @claude
- 🔧 Rename write-docs command to write — @mavam and @claude
- 🔧 Unconditional documentation root at .docs — @mavam and @claude
Formatter Plugin v1.0.0
Section titled “Formatter Plugin v1.0.0”- 🐞 Use portable shebang in formatter hook — @mavam and @claude
- 🐞 Add MDX file support to formatter hook — @mavam and @claude
Git Plugin v1.0.0
Section titled “Git Plugin v1.0.0”- 🚀 Add committer subagent — @mavam
- 🚀 Prompt for orthogonal staged changes — @mavam and @claude
- 🚀 Add /commit slash command — @mavam
- 🔧 Reference changelog skill in /commit command — @mavam and @claude
- 🐞 Fix unqualified skill reference in git plugin README — @mavam and @claude
- 🐞 Improve skill trigger for commit requests — @mavam
Meta Plugin v1.1.0
Section titled “Meta Plugin v1.1.0”Prose Plugin v1.0.0
Section titled “Prose Plugin v1.0.0”- 🚀 Add writing plugin for technical documentation — @mavam and @claude
- 🐞 Fix unqualified skill reference in writing plugin README — @mavam and @claude
Python Plugin v1.0.0
Section titled “Python Plugin v1.0.0”- 💥 Rename
python-conventionsskill tofollowing-conventions— @mavam and @claude - 💥 Replace
/python:releasewith/changelog:release— @mavam and @claude - 🚀 Add dependency upgrade guide for Python plugin — @mavam and @claude