Nextjs app
Complete guide to minimal universal configuration files compatible with all major AI coding agents.
npx -y skills add MYMDO/AGENTSKILL --skill nextjs-appAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Implement or review Next.js App Router pages, layouts, components, server data access, route handlers, and tests. Use when the user asks to change Next.js UI, routing, metadata, server/client boundaries, or frontend behavior.
The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
0.9 KB, 120 tokens by cl100k_base, as published. Nobody here has run it
Next.js App Change
Steps
- Read the relevant route under
app/, shared components, and data helpers. - Decide whether the change belongs in a Server Component, Client Component, or route handler.
- Keep client boundaries narrow and avoid unnecessary
"use client". - Add or update focused tests for user-visible behavior.
- Run the smallest relevant test, then lint/build if routing or server boundaries changed.
Example
Input: "Add a dashboard filter panel."
Output: Route-level state decision, UI components, data filtering, and interaction tests.