# Send NextJS 16+ Complete Documentation to your agent
Use the source page and any available docs to guide the install because the item is currently unstable or timing out.
## Fast path
- Open the source page via Review source status.
- If you can obtain the package, extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the source page and extracted files.
## Suggested prompts
### New install

```text
I tried to install a skill package from Yavira, but the item is currently unstable or timing out. Inspect the source page and any extracted docs, then tell me what you can confirm and any manual steps still required. Then review README.md for any prerequisites, environment setup, or post-install checks.
```
### Upgrade existing

```text
I tried to upgrade a skill package from Yavira, but the item is currently unstable or timing out. Compare the source page and any extracted docs with my current installation, then summarize what changed and what manual follow-up I still need. Then review README.md for any prerequisites, environment setup, or post-install checks.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "lb-nextjs16-skill",
    "name": "NextJS 16+ Complete Documentation",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/leonaaardob/lb-nextjs16-skill",
    "canonicalUrl": "https://clawhub.ai/leonaaardob/lb-nextjs16-skill",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/lb-nextjs16-skill",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=lb-nextjs16-skill",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "references/index.mdx",
      "references/01-app/index.mdx",
      "references/01-app/04-glossary.mdx",
      "references/01-app/03-api-reference/index.mdx"
    ],
    "downloadMode": "manual_only",
    "sourceHealth": {
      "source": "tencent",
      "slug": "lb-nextjs16-skill",
      "status": "unstable",
      "reason": "timeout",
      "recommendedAction": "retry_later",
      "checkedAt": "2026-05-06T03:04:49.557Z",
      "expiresAt": "2026-05-06T15:04:49.557Z",
      "httpStatus": null,
      "finalUrl": null,
      "contentType": null,
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=lb-nextjs16-skill",
        "error": "Timed out after 5000ms",
        "slug": "lb-nextjs16-skill"
      },
      "scope": "item",
      "summary": "Item is unstable.",
      "detail": "This item is timing out or returning errors right now. Review the source page and try again later.",
      "primaryActionLabel": "Review source status",
      "primaryActionHref": "https://clawhub.ai/leonaaardob/lb-nextjs16-skill"
    },
    "validation": {
      "installChecklist": [
        "Wait for the source to recover or retry later.",
        "Review SKILL.md only after the download returns a real package.",
        "Treat this source as transient until the upstream errors clear."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/lb-nextjs16-skill",
    "downloadUrl": "https://openagent3.xyz/downloads/lb-nextjs16-skill",
    "agentUrl": "https://openagent3.xyz/skills/lb-nextjs16-skill/agent",
    "manifestUrl": "https://openagent3.xyz/skills/lb-nextjs16-skill/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/lb-nextjs16-skill/agent.md"
  }
}
```
## Documentation

### Next.js Documentation (v16.2.0-canary.30)

Complete Next.js 16 documentation embedded in markdown. Read from references/ to answer questions about Next.js features, configuration, and best practices.

### Documentation Structure

All documentation is in references/ organized by topic:

### Core Documentation

App Router (references/01-app/)

Modern Next.js architecture with React Server Components.

Getting Started:

references/01-app/01-getting-started/installation.mdx - Setup new project
references/01-app/01-getting-started/project-structure.mdx - File conventions
references/01-app/01-getting-started/layouts-and-pages.mdx - Routing basics
references/01-app/01-getting-started/data-fetching.mdx - Server data loading
references/01-app/01-getting-started/css.mdx - Styling options

Guides:

references/01-app/02-guides/authentication.mdx - Auth patterns
references/01-app/02-guides/caching.mdx - Cache strategies
references/01-app/02-guides/environment-variables.mdx - Env config
references/01-app/02-guides/forms.mdx - Form handling
references/01-app/02-guides/testing/ - Jest, Playwright, Vitest, Cypress
references/01-app/02-guides/migrating/ - Migration guides (Vite, CRA, Pages → App)
references/01-app/02-guides/upgrading/ - Version upgrade guides (14, 15, 16)
references/01-app/02-guides/self-hosting.mdx - Self-hosted deployment
references/01-app/02-guides/static-exports.mdx - Static HTML export
references/01-app/02-guides/progressive-web-apps.mdx - PWA setup

API Reference:

references/01-app/03-api-reference/ - Complete API docs (components, functions, config)

Pages Router (references/02-pages/)

Legacy Next.js architecture (still supported).

references/02-pages/01-guides/ - Pages Router guides
references/02-pages/02-api-reference/ - Pages API reference

Architecture (references/03-architecture/)

references/03-architecture/nextjs-compiler.mdx - SWC compiler
references/03-architecture/fast-refresh.mdx - Hot reload
references/03-architecture/supported-browsers.mdx - Browser support
references/03-architecture/accessibility.mdx - A11y features

Community (references/04-community/)

references/04-community/contribution-guide.mdx - Contributing to Next.js
references/04-community/rspack.mdx - Experimental Rspack support

### Common Tasks

TaskFile to ReadSetup new projectreferences/01-app/01-getting-started/installation.mdxRouting & layoutsreferences/01-app/01-getting-started/layouts-and-pages.mdxData fetchingreferences/01-app/01-getting-started/data-fetching.mdxServer actionsreferences/01-app/03-api-reference/server-actions.mdx (if exists)MiddlewareSearch references/01-app/02-guides/ or API referenceCaching strategiesreferences/01-app/02-guides/caching.mdxEnvironment variablesreferences/01-app/02-guides/environment-variables.mdxTesting setupreferences/01-app/02-guides/testing/Deploy self-hostedreferences/01-app/02-guides/self-hosting.mdxMigrate from Vitereferences/01-app/02-guides/migrating/from-vite.mdxMigrate from CRAreferences/01-app/02-guides/migrating/from-create-react-app.mdxUpgrade to v16references/01-app/02-guides/upgrading/version-16.mdx

### When to Use This Skill

User asks about Next.js features, configuration, or best practices
Working on a Next.js project and need API reference
Debugging Next.js behavior (caching, rendering, routing)
Planning architecture (SSR vs SSG vs ISR)
Migration questions (from other frameworks or older Next.js versions)

### How to Navigate

Start with references/index.mdx for overview
For getting started: Read references/01-app/01-getting-started/
For specific topics: Read references/01-app/02-guides/<topic>.mdx
For API details: Search references/01-app/03-api-reference/
For legacy Pages Router: Use references/02-pages/

All files are .mdx (Markdown + JSX) but readable as plain markdown.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: leonaaardob
- Version: 16.1.6
## Source health
- Status: unstable
- Item is unstable.
- This item is timing out or returning errors right now. Review the source page and try again later.
- Health scope: item
- Reason: timeout
- Checked at: 2026-05-06T03:04:49.557Z
- Expires at: 2026-05-06T15:04:49.557Z
- Recommended action: Review source status
## Links
- [Detail page](https://openagent3.xyz/skills/lb-nextjs16-skill)
- [Send to Agent page](https://openagent3.xyz/skills/lb-nextjs16-skill/agent)
- [JSON manifest](https://openagent3.xyz/skills/lb-nextjs16-skill/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/lb-nextjs16-skill/agent.md)
- [Download page](https://openagent3.xyz/downloads/lb-nextjs16-skill)