{
  "schemaVersion": "1.0",
  "item": {
    "slug": "next-upgrade",
    "name": "Next Upgrade",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/TuanViDev/next-upgrade",
    "canonicalUrl": "https://clawhub.ai/TuanViDev/next-upgrade",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/next-upgrade",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=next-upgrade",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/next-upgrade"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/next-upgrade",
    "agentPageUrl": "https://openagent3.xyz/skills/next-upgrade/agent",
    "manifestUrl": "https://openagent3.xyz/skills/next-upgrade/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/next-upgrade/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Upgrade Next.js",
        "body": "Upgrade the current project to the latest Next.js version following official migration guides."
      },
      {
        "title": "Instructions",
        "body": "Detect current version: Read package.json to identify the current Next.js version and related dependencies (React, React DOM, etc.)\n\n\nFetch the latest upgrade guide: Use WebFetch to get the official upgrade documentation:\n\nCodemods: https://nextjs.org/docs/app/guides/upgrading/codemods\nVersion-specific guides (adjust version as needed):\n\nhttps://nextjs.org/docs/app/guides/upgrading/version-16\nhttps://nextjs.org/docs/app/guides/upgrading/version-15\nhttps://nextjs.org/docs/app/guides/upgrading/version-14\n\n\n\n\n\nDetermine upgrade path: Based on current version, identify which migration steps apply. For major version jumps, upgrade incrementally (e.g., 13 → 14 → 15).\n\n\nRun codemods first: Next.js provides codemods to automate breaking changes:\nnpx @next/codemod@latest <transform> <path>\n\nCommon transforms:\n\nnext-async-request-api - Updates async Request APIs (v15)\nnext-request-geo-ip - Migrates geo/ip properties (v15)\nnext-dynamic-access-named-export - Transforms dynamic imports (v15)\n\n\n\nUpdate dependencies: Upgrade Next.js and peer dependencies together:\nnpm install next@latest react@latest react-dom@latest\n\n\n\nReview breaking changes: Check the upgrade guide for manual changes needed:\n\nAPI changes (e.g., async params in v15)\nConfiguration changes in next.config.js\nDeprecated features being removed\n\n\n\nUpdate TypeScript types (if applicable):\nnpm install @types/react@latest @types/react-dom@latest\n\n\n\nTest the upgrade:\n\nRun npm run build to check for build errors\nRun npm run dev and test key functionality"
      }
    ],
    "body": "Upgrade Next.js\n\nUpgrade the current project to the latest Next.js version following official migration guides.\n\nInstructions\n\nDetect current version: Read package.json to identify the current Next.js version and related dependencies (React, React DOM, etc.)\n\nFetch the latest upgrade guide: Use WebFetch to get the official upgrade documentation:\n\nCodemods: https://nextjs.org/docs/app/guides/upgrading/codemods\nVersion-specific guides (adjust version as needed):\nhttps://nextjs.org/docs/app/guides/upgrading/version-16\nhttps://nextjs.org/docs/app/guides/upgrading/version-15\nhttps://nextjs.org/docs/app/guides/upgrading/version-14\n\nDetermine upgrade path: Based on current version, identify which migration steps apply. For major version jumps, upgrade incrementally (e.g., 13 → 14 → 15).\n\nRun codemods first: Next.js provides codemods to automate breaking changes:\n\nnpx @next/codemod@latest <transform> <path>\n\n\nCommon transforms:\n\nnext-async-request-api - Updates async Request APIs (v15)\nnext-request-geo-ip - Migrates geo/ip properties (v15)\nnext-dynamic-access-named-export - Transforms dynamic imports (v15)\n\nUpdate dependencies: Upgrade Next.js and peer dependencies together:\n\nnpm install next@latest react@latest react-dom@latest\n\n\nReview breaking changes: Check the upgrade guide for manual changes needed:\n\nAPI changes (e.g., async params in v15)\nConfiguration changes in next.config.js\nDeprecated features being removed\n\nUpdate TypeScript types (if applicable):\n\nnpm install @types/react@latest @types/react-dom@latest\n\n\nTest the upgrade:\n\nRun npm run build to check for build errors\nRun npm run dev and test key functionality"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/TuanViDev/next-upgrade",
    "publisherUrl": "https://clawhub.ai/TuanViDev/next-upgrade",
    "owner": "TuanViDev",
    "version": "0.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/next-upgrade",
    "downloadUrl": "https://openagent3.xyz/downloads/next-upgrade",
    "agentUrl": "https://openagent3.xyz/skills/next-upgrade/agent",
    "manifestUrl": "https://openagent3.xyz/skills/next-upgrade/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/next-upgrade/agent.md"
  }
}