npx skills gocallum/nextjs16-agent-skills now supports all the coding agents using vercel labs and supports migrations to Next 16

In less than a month we’ve gone from 5 skills to 12 production-grade skills, all installable with one line, all climbing the skills.sh trending list, and all distributed through the new npx skills CLI that works with every major coding agent (GitHub Copilot, Cursor, Claude Code, Google Antigravity, Windsurf, etc.).

This post zooms in on the "Big Three" that save the most debugging hours:
If you install one bundle today, install these three first. Your AI will stop suggesting require() in Prisma, OpenAIStream in AI SDK, and req.body in Next.js. That alone prevents 90% of "why won't this build?" questions.
One-liner install (any agent):
npx skills add gocallum/nextjs16-agent-skills
Agent loads: prisma-orm-v7-skills
Use it first if you're on Prisma ≤ 6 and planning any Next.js 16 upgrade—Prisma v7 is a hard dependency for modern edge deployments.
One-liner install (any agent):
npx skills add gocallum/nextjs16-agent-skills
Agent loads: ai-sdk-6-skills
The skill teaches cost-aware patterns by default:
1// Skill teaches this pattern2
3const agent = new ToolLoopAgent({4
5 model: groq('llama-3.3-70b-versatile'), // $0.40/million tokens6
7 instructions: 'You are a helpful assistant.',8
9 tools: { weather: weatherTool },10
11});12
13// Direct generation14
15import { groq } from '@ai-sdk/groq';16
17const { text } = await generateText({18
19 model: groq('llama-3.3-70b-versatile'),20
21 prompt: 'Write a TypeScript function to compute Fibonacci.',22
23});Agent writes Groq-first, pay-later code—no more accidentally burning $30 on a simple Q&A.
Use it first if you're still copy-pasting OpenAIStream or createChatCompletion—AI SDK 6 is a complete rewrite and the skill prevents every v4/v5 mistake.
One-liner install (any agent):
npx skills add gocallum/nextjs16-agent-skills
# Next.js 16 Skills v1.1 released 22 Jan 2026
Agent loads: nextjs16-skills
The skill ships migrate-v15-to-v16.js:
Use it first if you upgraded to Next.js 16 after the December 2025 React CVEs and your builds suddenly fail—this skill contains the exact fixes we applied across our entire fleet.
# Any editor, any agent, one command
npx skills add gocallum/nextjs16-agent-skills
The installer detects your editor (Copilot, Cursor, Claude Code, Antigravity) and drops skills into the right folder. No restart, no token bloat, no "please read the docs" nudging.
Install all of them once, let the agent load what it needs. Context Rot stops here.
This repo is community-driven. Found a bug? Want a new skill? Submit a PR or open an issue—all contributions welcome.
Try it now: npx skills add gocallum/nextjs16-agent-skills
Repo: github.com/gocallum/nextjs16-agent-skills
Leaderboard: skills.sh (check trending tab)
What's the next skill you need? Auth? K8s? Drop an issue and let's build it together.