feat: add 7 new plugins with snippet-based architecture#1
Merged
KailasMahavarkar merged 3 commits intomainfrom Apr 8, 2026
Merged
feat: add 7 new plugins with snippet-based architecture#1KailasMahavarkar merged 3 commits intomainfrom
KailasMahavarkar merged 3 commits intomainfrom
Conversation
Adds lenis, react, echo, golang, rust, design-tokens, and ui-ux plugins to unified-mcp. All code examples are stored as .md files in snippets/ and loaded at runtime via createSnippetLoader — no inline template literals in any data.ts file. - 370 snippet files across 7 new plugins - Each plugin follows the established reactflow/motion pattern - golang merges best-practices + design-patterns from two skill sources - design-tokens covers full Tailwind v4 OKLCH token system with procedures - ui-ux covers typography, color, spacing, elevation, motion, a11y principles - All plugins registered in src/index.ts Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Adds all 7 new plugins (lenis, react, echo, golang, rust, design-tokens, ui-ux) to the plugins table, tools section, and architecture diagram. Each plugin section is collapsible. Architecture section now documents the snippet-based .md file pattern. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
KailasMahavarkar
added a commit
that referenced
this pull request
Apr 11, 2026
The MCP config references 'hyperstack-mcp' but users often have a differently-named container from a prior 'docker run' without --name. This is the #1 cause of 'tool not found' errors. - Add name mismatch repair script in Step 3 (before config) - Add auto-repair in Step 4 pre-check verification - Promote to #1 item in troubleshooting section
KailasMahavarkar
added a commit
that referenced
this pull request
Apr 14, 2026
* feat: add 7 new plugins with snippet-based architecture Adds lenis, react, echo, golang, rust, design-tokens, and ui-ux plugins to unified-mcp. All code examples are stored as .md files in snippets/ and loaded at runtime via createSnippetLoader — no inline template literals in any data.ts file. - 370 snippet files across 7 new plugins - Each plugin follows the established reactflow/motion pattern - golang merges best-practices + design-patterns from two skill sources - design-tokens covers full Tailwind v4 OKLCH token system with procedures - ui-ux covers typography, color, spacing, elevation, motion, a11y principles - All plugins registered in src/index.ts Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * docs: update README with all 9 plugins and snippet architecture Adds all 7 new plugins (lenis, react, echo, golang, rust, design-tokens, ui-ux) to the plugins table, tools section, and architecture diagram. Each plugin section is collapsible. Architecture section now documents the snippet-based .md file pattern. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * docs: improve README badges - split into rows, proper logos per library Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> --------- Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
KailasMahavarkar
added a commit
that referenced
this pull request
Apr 14, 2026
The MCP config references 'hyperstack-mcp' but users often have a differently-named container from a prior 'docker run' without --name. This is the #1 cause of 'tool not found' errors. - Add name mismatch repair script in Step 3 (before config) - Add auto-repair in Step 4 pre-check verification - Promote to #1 item in troubleshooting section
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
.mdfiles insnippets/<plugin>/— zero inline template literals in anydata.tsreactflow/motionpattern:loader.ts→createSnippetLoader→snippet("path/file.md")Plugins added
lenisreactechogolangrustdesign-tokensui-uxArchitecture
Each plugin stores all code examples in
snippets/<name>/<category>/<name>.mdand loads them at runtime:Test plan
npm run build— cleantsc, 0 errorsdata.ts🤖 Generated with Claude Code