Prompt file imported from arisng/github-copilot-fc (
.github/prompts/publishPlugins.prompt.md). Fill in{{arguments}}before use. Copyright stays with the author.
User Input
{{arguments}}
You MUST consider the user input before proceeding (if not empty). The user input should contain the plugin names to build/install, optionally with a channel flag.
Instructions
Let's build and install the specified plugins. publish-plugins.ps1 is deprecated — use build-plugins.ps1 to build the local bundle and copilot plugins for management.
- Parse the user input to extract plugin names. If multiple, separate by commas or spaces.
- Optionally, check for a channel (beta/stable, default beta).
- Build the bundle:
pwsh -NoProfile -File scripts/publish/build-plugins.ps1 -Plugins "<plugin_names>" -Channel "<channel>" - Install the built bundle with the native CLI:
copilot plugins install <plugin_path>(CLI bundles land underplugins/cli/.build/<name>/; VS Code bundles underplugins/vscode/.build/<name>/— register the latter inchat.plugins.paths). - Verify with
copilot plugins listand report the results, including any warnings or errors.
Context
{{arguments}}