feat: add microfrontends skill#97
Merged
Merged
Conversation
Adds the `microfrontends` skill (SKILL.md + 6 reference docs covering configuration, path-routing, local development, management, security, and troubleshooting) for building, configuring, and deploying microfrontends on Vercel. Triggering covers the common entry points: - pathPatterns: microfrontends.json / apps/*/microfrontends.json - bashPatterns: `vercel microfrontends` / `vercel mf`, and npm/pnpm/bun/yarn install of @vercel/microfrontends - importPatterns: @vercel/microfrontends Regenerates generated/skill-manifest.json and generated/skill-catalog.md (now 27 skills) and updates the vercel.md ecosystem graph. Rebased onto current main as a single signed commit (supersedes #35). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Lowest-risk size reduction with no loss of factual content: - Remove Table-of-Contents blocks from local-development, managing- microfrontends, and troubleshooting references. No other skill's reference files use a ToC (0 of 51 repo-wide) — these were the only outliers; removal aligns with house convention. Section anchors are unaffected, so in-doc links still resolve. - Tighten security.md: dedupe repeated "verified only by…" prose and collapse repeated full URLs. All 13 original links preserved. Net: -64 lines across 4 reference files. References are loaded on demand (grep), not part of the injected SKILL.md budget, so this is a read-cost and maintainability win, not an injection-size change. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Melkeydev
approved these changes
Jun 8, 2026
Collaborator
|
approved - just bump the versions for all the providers please |
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
jpsingaraju
added a commit
that referenced
this pull request
Jun 9, 2026
Merges the microfrontends skill (#97) from main and regenerates the shared registry artifacts so both skills coexist. Conflicts resolved: - generated/skill-manifest.json — regenerated via `bun run build:manifest` (28 skills total, includes both vercel-connect and microfrontends) - generated/skill-catalog.md — regenerated via `bun run scripts/generate-catalog.ts` - vercel.md — auto-merged cleanly; both skill graph nodes preserved Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
3 tasks
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.
Adds the microfrontends skill for building, configuring, and deploying microfrontends on Vercel.
Contents
skills/microfrontends/SKILL.md+ 6 reference docs (configuration, path-routing, local-development, managing, security, troubleshooting)generated/skill-manifest.jsonandgenerated/skill-catalog.md(27 skills)vercel.mdecosystem graphTriggering
microfrontends.json,apps/*/microfrontends.jsonvercel microfrontends/vercel mf, andnpm/pnpm/bun/yarninstall of@vercel/microfrontends@vercel/microfrontendsNote
This rebases the work from #35 onto current
mainas a single signed commit, to satisfy the repository's "commits must have verified signatures" rule (the original branch carried main's pre-rule unsigned history, which the rule re-flagged). Supersedes #35.🤖 Generated with Claude Code
Design rationale (re: triggering & references)
How does the skill get triggered? (and is it over-eager?)
Deliberately conservative on the automatic (hook) side:
promptSignals→ never injected by exact prompt phrase-matching.microfrontends.json/apps/*/microfrontends.json(pathPatterns)vercel microfrontends/vercel mf(bashPatterns)@vercel/microfrontends(bashPatterns+importPatterns) — added in this PRretrievalblock (aliases/intents/entities), gated by a min-score threshold, a hard floor, dominant-topic suppression, and a 2-skills / 8KB cap.So it won't trigger constantly. Note this PR intentionally broadens triggering vs. the original by adding import/install matching (the most common real entry points, matching every other package-centric skill, e.g.
vercel-sandbox,vercel-storage,ai-sdk) — still precise signals, not loose ones. The softest surface is the longdescriptiontext (what Claude reads to self-invoke); that's the lever to trim if it ever feels over-eager.Why a
references/directory instead of one flat file?nextjs/vercel-clipattern.