SYSTEM Cited by 1 source
vinext Agent Skill¶
cloudflare/vinext is an Agent
Skill shipped by Cloudflare that automates migration of an
existing Next.js project to
vinext. Installs across any supported AI
coding tool (Claude Code,
OpenCode, Cursor,
Codex CLI, …) and runs inline in the
coding session.
What the skill does¶
- Checks compatibility between the existing Next.js project and vinext's 94 % API coverage.
- Installs dependencies.
- Generates
next.config.js/package.json/ Worker configuration. - Starts the dev server.
- Flags anything that needs manual attention based on vinext's known limitations.
Why this shape¶
Migration tooling has historically been a human-authored codemod script per migration. Shipping migration as an Agent Skill means:
- Cross-tool — works in every coding agent that supports Agent Skills, not one tool's script runner.
- Remediation-aware — the skill can explain why a compatibility issue exists, suggest fixes, and apply them, rather than just exiting non-zero.
- Up-to-date — updates ship via
npx skillslike a package.
Canonical wiki instance of patterns/migration-as-agent-skill.
Seen in¶
Related¶
- systems/vinext — migration target.
- systems/nextjs — migration source.
- systems/agent-skills — the underlying standard.
- systems/claude-code / systems/opencode / systems/cursor / systems/codex-cli — supported runtime hosts.
- patterns/migration-as-agent-skill — the pattern this instantiates.