Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
vercel avatar

Major Version Mode

  • 139 installs
  • 26k repo stars
  • Updated August 5, 2026
  • vercel/ai

AI SDK major-version-mode skill for next major release work on explicit invoke only.

About

Vercel AI SDK major version mode skill providing context for working on the next major release. Explicitly must NOT trigger autonomously based on task content; only activates when user invokes via /major-version-mode. Contains breaking change guidance, migration patterns, and major version development conventions separate from stable release maintenance. Prevents agents from applying major-version assumptions to routine SDK tasks.

  • Major AI SDK release context only on explicit /major-version-mode invoke
  • Must NOT trigger autonomously from task content
  • Breaking change and migration guidance for next major
  • Separate from stable release maintenance workflows
  • Guards against major-version assumptions on routine tasks

Major Version Mode by the numbers

  • 139 all-time installs (skills.sh)
  • +8 installs in the week ending Jul 27, 2026 (Skillselion tracking)
  • Ranked #3,527 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
At a glance

major-version-mode capabilities & compatibility

Capabilities
major version context · breaking change guidance
Works with
vercel · openai
Use cases
api development · refactoring
From the docs

What major-version-mode says it does

Only use when explicitly invoked by the user (e.g. via '/major-version-mode').
SKILL.md
Do NOT trigger autonomously based on task content.
SKILL.md
npx skills add https://github.com/vercel/ai --skill major-version-mode

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs139
repo stars26k
Last updatedAugust 5, 2026
Repositoryvercel/ai

How do I work on the AI SDK next major release?

Work on the next AI SDK major release only when explicitly invoked via /major-version-mode, not autonomously.

Who is it for?

AI SDK maintainers explicitly working on next major release branch.

Skip if: Routine SDK tasks or patch/minor maintenance without explicit invoke.

When should I use this skill?

User explicitly invokes /major-version-mode; never autonomously.

What you get

Major version development following breaking change and migration conventions.

Files

SKILL.mdMarkdownGitHub ↗

Context

This task is part of the next AI SDK major release. Breaking changes are acceptable.

Breaking Change Guidelines

While breaking changes are acceptable, it is still encouraged to minimize unnecessary disruption for 3P consumers of the AI SDK. Providing deprecated aliases and automated migration logic can help ease the transition.

Renamed/changed exports

If renaming or modifying an exported function or type, provide a deprecated alias as a package-level export where feasible:

/** @deprecated Use `newFunctionName` instead. */
export { newFunctionName as oldFunctionName } from './new-module';

Only do this if it doesn't introduce meaningful technical debt. If it does, skip the alias — but check with the user first before making a clean break.

Modified message types (e.g. in @ai-sdk/provider-utils)

If modifying model message shapes (e.g. content part types in packages/provider-utils/src/types/content-part.ts):

1. Deprecate in `@ai-sdk/provider-utils` rather than removing immediately, if feasible. Mark deprecated types/members with a @deprecated JSDoc comment and a TODO note to remove in the following major version. 2. Keep deprecated equivalents in `packages/ai/src/prompt/content-part.ts` — this file is the consumer-facing layer and should retain the old shapes in the Zod schemas so existing consumer code continues to compile with a deprecation warning. Include a similar note about deprecation and removal in the following major version. 3. If clean deprecation isn't feasible without meaningful technical debt, a hard removal may be preferred — but check with the user first.

Provider spec changes (@ai-sdk/provider)

The provider package defines the spec that provider implementers code against. It should generally not be modified outside of major versions, so keeping the spec clean and consistent is critical.

Breaking changes _without_ maintaining temporary backward compatibility measures are more acceptable here than elsewhere, because the audience is smaller — far fewer developers implement their own providers than build features on top of the AI SDK.

Rules:

  • Only modify the latest spec version. Older versioned spec interfaces must remain completely untouched.
  • Deprecated aliases are not required — a clean break is preferred to preserve spec clarity.
  • The current spec version is not the same as the current AI SDK major version number. If it's unclear which spec version to operate on, ask the user before proceeding.

Documentation

After implementing changes, update relevant documentation in content/docs/.

If the change requires consumers to update their code or migrate stored data, add a section to the latest migration guide:

  • Find the migration guide with the highest version number in content/docs/08-migration-guides/
  • Add a concise section explaining what changed and how to migrate

Related skills

FAQ

When does this activate?

Only when explicitly invoked via /major-version-mode, not from task content alone.

Can it trigger on breaking change mentions?

No. Do NOT trigger autonomously based on task content.

What context does it provide?

Next major release breaking changes, migrations, and development conventions.

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.