What's wrong with this entry?
A new slash command and CLI subcommand to create versioned git tags for plugin releases, with validation against plugin.json and marketplace entries.
/plugin tag [path] [--push] [--dry-run] [-f|--force]
claude plugin tag [path] [--push] [--dry-run] [-f|--force] [-m <msg>] [--remote <name>]- Validates plugin.json and any enclosing marketplace manifest agree on name and version
- Checks for uncommitted changes, existing tags, valid semver, and valid git ref names
- Creates annotated git tags in the format
{name}--v{version} --pushpushes the tag to the remote after creation--dry-runpreviews what would be tagged without creating it--forceskips dirty-working-tree and tag-already-exists checks- CLI variant adds
--message <msg>for custom tag annotation and--remote <name>for push target - Detailed error messages for version mismatches, missing manifests, and invalid configs
Slash command help text (search for "Create a {name}--v{version} git tag") and CLI subcommand .command("tag [path]") at line ~652882.
Strings lifted out of the shipped bundle, so the claim above can be checked against them.