feat(turborepo): migrate from vendor sync to skills.sh#78
Conversation
Replace Type 2 vendor submodule with skills.sh-managed skill. - Remove vendor/turborepo submodule (vercel/turborepo) - Remove turborepo entry from scripts/meta.ts vendors - Remove turborepo from SKILL_TO_PLUGIN in scripts/cli.ts - Remove special-case turborepo command sync from scripts/cli.ts - Install skill via `bunx skills add vercel/turborepo --skill turborepo` - Move skills from skills/turborepo/ to .agents/skills/turborepo/ - Remove commands/ directory; register command from .agents/skills path - Update plugin.json: add skills/commands fields, fix author/homepage/repository to Vercel
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Summary of ChangesHello, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request streamlines the management of the Turborepo skill by migrating it from a traditional Git submodule and manual synchronization process to an automated Highlights
Changelog
Activity
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
There was a problem hiding this comment.
Code Review
This pull request migrates the Turborepo plugin from a Git submodule-based vendor sync to a skills.sh management system. No security vulnerabilities were found. The changes are clean, correctly removing the old submodule, custom sync logic, and associated metadata, and plugin.json is properly updated. No further issues were identified for this repository.
Summary
vendor/turboreposubmodule (vercel/turborepo)scripts/meta.tsandSKILL_TO_PLUGINmapping fromscripts/cli.tsscripts/cli.tsbunx skills add vercel/turborepo --skill turborepo→skills-lock.json+.agents/skills/turborepo/commands/directory; register command directly from.agents/skills/turborepo/command/plugin.json: addskills/commandsfields, fix author/homepage/repository to VercelFollows the pattern established in #77 (tsdown migration).
Test plan
bun scripts/cli.ts syncruns without turborepo-related errorsplugins/turborepo/.agents/skills/turborepo/contains SKILL.md and references/plugins/turborepo/skills-lock.jsonpresent with vercel/turborepo sourceplugins/turborepo/.claude-plugin/plugin.jsonhasskillsandcommandsfields pointing to.agents/skills/Summary by cubic
Migrate the Turborepo plugin from a vendor submodule to a skills.sh-managed skill to simplify updates and remove custom sync logic. The skill now loads from .agents/skills.
Written for commit c93f269. Summary will update on new commits.