chore: add new plugin bootstrap script - #2989
Merged
JasonYeMSFT (JasonYeMSFT) merged 6 commits intoAug 3, 2026
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Adds a new plugin:new npm script that scaffolds a new plugin directory under plugins/ by generating plugin manifests, copying shared hooks, and creating basic placeholder files to support partner/plugin onboarding work from #2803.
Changes:
- Added
scripts/src/plugin/bootstrap.tsto generate a new plugin skeleton (manifests, hooks, version.json, README, LICENSE, skills dir). - Registered
plugin:newinscripts/package.jsonand exposed it at the repo rootpackage.json.
Show a summary per file
| File | Description |
|---|---|
| scripts/src/plugin/bootstrap.ts | New bootstrap script that scaffolds a plugin directory and manifests from a template. |
| scripts/package.json | Adds a plugin:new script entry to run the bootstrap script via tsx. |
| package.json | Adds a root-level plugin:new convenience script that delegates into scripts/. |
Review details
- Files reviewed: 3/3 changed files
- Comments generated: 6
- Review effort level: Low
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
add mcpServers to base plugin manifest
JasonYeMSFT (JasonYeMSFT)
force-pushed
the
chuye/new-plugin-command
branch
from
August 3, 2026 17:20
91eaae4 to
7226a7a
Compare
JasonYeMSFT (JasonYeMSFT)
marked this pull request as ready for review
August 3, 2026 17:20
msalaman
approved these changes
Aug 3, 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
Add a helper script to bootstrap a brand new plugin with reusable files.
Checklist
cd tests && npm test)fix:,feat:,feature:,chore:,misc:,test:,eval:tests/,npm run test:integration -- <skill>ornpm run test:vally -- --skill <skill>)Related Issues
#2803