Improve plugin customizer for scoped and general customization#54
Open
lee-weisberger wants to merge 2 commits intomainfrom
Open
Improve plugin customizer for scoped and general customization#54lee-weisberger wants to merge 2 commits intomainfrom
lee-weisberger wants to merge 2 commits intomainfrom
Conversation
- Add three customization modes: scoped (specific section), generic (template setup with ~~ placeholders), and general (tweaking existing) - Add Phase 0 for gathering user intent before diving into customization - Clarify MCP server type descriptions (SSE/HTTP transport labels) - Document directory entries without URLs (name-based matching) - Update component-schemas.md with consistent MCP terminology Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
lee-weisberger
commented
Feb 13, 2026
Comment on lines
+326
to
+330
| | Type | Best for | Transport | | ||
| |------|----------|-----------| | ||
| | stdio | Local tools, custom servers | Subprocess (stdin/stdout) | | ||
| | SSE | Remote servers using server-sent events | HTTP + SSE streaming | | ||
| | HTTP | Remote servers using streamable HTTP | HTTP request/response | |
Collaborator
Author
There was a problem hiding this comment.
Thoughts on just removing this section? it isn't helpful
lee-weisberger
commented
Feb 13, 2026
Comment on lines
+89
to
+91
| ### Directory Entries Without a URL | ||
|
|
||
| Some directory entries have no `url` because the endpoint is dynamic — the admin provides it when connecting the server. These servers can still be referenced in the plugin's MCP config by **name**: if the MCP server name in the config matches the directory entry name, it is treated the same as a URL match. No newline at end of file |
Collaborator
Author
There was a problem hiding this comment.
This is useful functionality. The thing I deleted is not accurate - they can still be added like all other mcps
lee-weisberger
commented
Feb 13, 2026
Comment on lines
-28
to
-34
| The process: | ||
| 1. **Gather context** — use knowledge MCPs to learn what tools and processes the organization uses | ||
| 2. **Create todo list** — grep for `~~\w` to find all customization points and build a todo list | ||
| 3. **Complete todo items** — apply gathered context, falling back to user questions when unclear | ||
| 4. **Search for useful MCPs** — find and connect MCPs for identified tools | ||
| > **Important**: Never change the name of the plugin or skill being customized. Do not rename directories, files, or the plugin/skill name fields. | ||
| If an answer cannot be found via knowledge MCPs or user input, leave the customization point unchanged for a future customization cycle. |
Collaborator
Author
There was a problem hiding this comment.
Claude recommended deleting this - it's all stated later and this only applies for the generic plugin setup
lee-weisberger
commented
Feb 13, 2026
| ## Customization Workflow | ||
|
|
||
| ### Phase 0: Gather User Intent (scoped and general customization only) |
Collaborator
Author
There was a problem hiding this comment.
It felt broken without this - I asked to customize a single thing and I got peppered with questions before I could say what I wanted to customize
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.
Summary
~~placeholders), and general (tweaking an already-configured plugin) — instead of only handling generic template setup.(unrelated)
Test plan
~~placeholdersChangelog
Plugin customizer now supports scoped and general customization in addition to generic template setup, with improved user intent gathering.
🤖 Generated with Claude Code (0% 1-shotted by claude-opus-4-6)