fix: correct stale plugin and marketplace names in Flutter recommendation - #222
Merged
Conversation
The recommendation still declared "very-good-ai-flutter-plugin", but the companion plugin was renamed to "vgv-ai-flutter-plugin". As a result is_plugin_installed never matched an installed plugin, so the PreToolUse hook nagged on every Read/Glob/Grep in a Flutter project, and the suggested "/plugin install very-good-ai-flutter-plugin" pointed at a nonexistent plugin. Update the plugin and verificationSkill fields to the canonical name and rename the file to match. Closes #221 Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
The README linked to the old repo name very_good_ai_flutter_plugin, which now only resolves via GitHub's rename redirect. Point it directly at the canonical vgv-ai-flutter-plugin repo. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
ryzizub
marked this pull request as ready for review
July 15, 2026 06:07
The marketplace repo was renamed from very_good_claude_code_marketplace to very-good-claude-code-marketplace (underscores to hyphens); the old slug only resolves via GitHub's rename redirect. Update the marketplace field so the recommended "/plugin marketplace add" command points at the canonical repo. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
marcossevilla
approved these changes
Jul 15, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
The Flutter companion-plugin recommendation carried pre-rename identifiers. Both the plugin and the marketplace repo have since been renamed, so the recommendation hook misfired (#221):
very-good-ai-flutter-plugin→vgv-ai-flutter-pluginvery_good_claude_code_marketplace→very-good-claude-code-marketplaceImpact
is_plugin_installed()inhooks/recommend-plugins.shgreps the user's settings for thepluginfield value. Installed users havevgv-ai-flutter-pluginunderenabledPlugins, which never matched the old name — so thePreToolUsehook injected "The 'very-good-ai-flutter-plugin' … is not installed" on every Read/Glob/Grep in a Flutter project, even when it was installed and enabled./plugin marketplace add …/very_good_claude_code_marketplaceand/plugin install very-good-ai-flutter-plugin— stale slugs that only resolve via GitHub's rename redirect, and a plugin name that resolves to nothing.verificationSkillprefix meant/buildand/hotfixcould never delegate to the plugin's green-gate skill.Changes
hooks/recommendations/very-good-ai-flutter-plugin.json→vgv-ai-flutter-plugin.json, and within it:plugin:very-good-ai-flutter-plugin→vgv-ai-flutter-pluginverificationSkill:very-good-ai-flutter-plugin:green-gate→vgv-ai-flutter-plugin:green-gatemarketplace:VeryGoodOpenSource/very_good_claude_code_marketplace→VeryGoodOpenSource/very-good-claude-code-marketplaceREADME.md: the "Very Good AI Flutter Plugin" link pointed at the old repo slugvery_good_ai_flutter_plugin; now points at the canonicalvgv-ai-flutter-pluginrepo.CHANGELOG.mdstill names the old identifiers in past entries — left untouched as immutable release history.Verification
hooks/test_recommend_plugins.sh: 42 passed, 0 failed.hooks/recommend-plugins.shagainst a Flutter project both ways:vgv-ai-flutter-pluginand points/plugin marketplace addatvery-good-claude-code-marketplace— both canonical slugs.Closes #221
Type of Change
feat)fix)refactor)docs)ci)chore)🤖 Generated with Claude Code