From vgv-wingspan
Routes project creation requests to the appropriate companion plugin's create skill. Scans recommendation files, matches user requests to plugins, and handles installation if needed.
How this skill is triggered — by the user, by Claude, or both
Slash command
/vgv-wingspan:create what to create (e.g., "flutter app", "dart package")When to use
Use when user says "create a project", "new flutter app", "start a dart package", "scaffold", or asks to set up a new codebase.
what to create (e.g., "flutter app", "dart package")This skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Route project creation to the right companion plugin. Wingspan does not scaffold projects itself — it discovers companion plugins from recommendation files and delegates to the matching plugin's create skill.
Route project creation to the right companion plugin. Wingspan does not scaffold projects itself — it discovers companion plugins from recommendation files and delegates to the matching plugin's create skill.
$ARGUMENTS
If the description above is empty:
DO NOT proceed until you have a project description.
Use Glob to find all *.json files in hooks/recommendations/ (relative to the Wingspan plugin root). Then Read each file.
Each recommendation file has this structure:
{
"plugin": "plugin-name",
"description": "What the plugin provides.",
"marketplace": "OrgName/repo-name"
}
Compare the user's project description against each recommendation's plugin name and description (case-insensitive). Pick the plugin whose description best matches the requested technology.
Check the available skills listed in the system-reminder in your conversation context for any skill prefixed with the matched plugin name (<plugin-name>:).
If no skills from that plugin are listed, the plugin is not installed. Use AskUserQuestion tool:
<plugin>' is needed but not installed. Would you like to install it?"If the user chooses to install, output the following commands and stop:
/plugin marketplace add <marketplace>
/plugin install <plugin>
Tell the user to run these commands, then re-invoke /create with the same project description. Do not proceed to Step 4.
The available skills are listed in the system-reminder in your conversation context. Look for skills prefixed with the matched plugin name (<plugin-name>:<skill-name>). Among those, find the skill whose name or description best indicates project creation (look for terms like "create", "scaffold", "new project", "generate", "init").
Invoke it using the Skill tool with its fully qualified name (e.g., my-plugin:scaffold-project), passing the user's full project description as arguments.
npx claudepluginhub verygoodopensource/very-good-claude-code-marketplace --plugin vgv-wingspanScaffolds Dart or Flutter projects from Very Good CLI templates (flutter_app, dart_package, flutter_package, flutter_plugin, dart_cli, flame_game, docs_site).
Scaffolds full projects from PRD + stack templates: directory structure, configs, CLAUDE.md, git repo init, GitHub push. Studies existing projects via SoloGraph, uses Context7 for library versions.
Bootstraps new projects from scratch: gathers requirements for frontend SPAs, full-stack apps, APIs, CLI tools, libraries; researches latest best practices via WebSearch; creates blueprint; confirms; initializes with official CLI; sets up Claude Code agent system.