Full-stack-skills nextjs
Guidance for Next.js using the official docs at nextjs.org/docs. Use when the user needs Next.js concepts, configuration, routing, data fetching, or API reference details.
install
source · Clone the upstream repo
git clone https://github.com/partme-ai/full-stack-skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/partme-ai/full-stack-skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/react-skills/nextjs" ~/.claude/skills/partme-ai-full-stack-skills-nextjs && rm -rf "$T"
manifest:
skills/react-skills/nextjs/SKILL.mdsource content
When to use this skill
Use this skill whenever the user wants to:
- Follow Next.js documentation topics (App Router, Pages Router, architecture, community)
- Implement Next.js routing, data fetching, caching, or deployment
- Use official APIs and configuration options from the docs
How to use this skill
- Identify the topic from the user request.
- Open the matching example file in
.examples/ - Follow the official Next.js docs linked in the file.
Mapping Rules (one-to-one with https://nextjs.org/docs)
The
examples/ directory mirrors the official docs structure:
→ https://nextjs.org/docsexamples/index.md
→ https://nextjs.org/docs/app/...examples/app/...
→ https://nextjs.org/docs/pages/...examples/pages/...
→ https://nextjs.org/docs/architecture/...examples/architecture/...
→ https://nextjs.org/docs/community/...examples/community/...
Path rule:
- Remove numeric prefixes from doc folders and filenames (e.g.,
→01-app
).app
pages map toindex.mdx
inside the corresponding directory.index.md
Resources
- Docs: https://nextjs.org/docs
Keywords
Next.js, App Router, Pages Router, routing, data fetching, caching, server components, client components, middleware, deployment, configuration