
Plugin Transfer
- 1 installs
- 17 repo stars
- Updated August 2, 2026
- sanity-io/plugins
Helps with ai & agent building tasks during AI-assisted development.
About
plugin-transfer is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.
- plugin-transfer
- AI & Agent Building
- AI-coding skill
Plugin Transfer by the numbers
- 1 all-time installs (skills.sh)
- Ranked #14,103 of 16,556 AI & Agent Building skills by installs in the Skillselion catalog
- Data as of Aug 3, 2026 (Skillselion catalog sync)
npx skills add https://github.com/sanity-io/plugins --skill plugin-transferAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 1 |
|---|---|
| repo stars | ★ 17 |
| Last updated | August 2, 2026 |
| Repository | sanity-io/plugins ↗ |
What it does
Helps with ai & agent building tasks during AI-assisted development.
Files
Plugin Transfer
Use this skill when migrating an existing plugin repository into sanity-io/plugins.
Start Here
Always start with:
pnpm generate "copy plugin"This is the canonical transfer flow and scaffolds monorepo-compatible files, test-studio wiring, and migration TODOs.
Required vs Unnecessary Config
Keep and maintain these monorepo config files in the transferred plugin:
package.jsonpackage.config.tstsconfig.jsontsconfig.build.jsonvitest.config.ts
Do not copy standalone-repo-only setup such as custom root CI/build/lint/test configs that are already handled by this monorepo.
Required Transfer Checks
1. Keep the original plugin README.md in the new plugin workspace. 2. Add and verify the generated test-studio example under dev/test-studio/src/<plugin-example>/index.tsx. 3. Confirm the plugin is wired in dev/test-studio/sanity.config.ts. 4. Do not update .github/CODEOWNERS during transfer unless explicitly requested. 5. Add a changeset with a major bump for the transferred plugin. 6. Update the root README.md plugins table with the transferred plugin.
Anything Else To Consider
- Review copied dependencies and peer dependencies carefully.
- Run
pnpm build,pnpm test, andpnpm devto verify migration quality.