{
  "schemaVersion": "1.0",
  "item": {
    "slug": "web",
    "name": "Web Development",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/ivangdavila/web",
    "canonicalUrl": "https://clawhub.ai/ivangdavila/web",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/web",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=web",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "deploy.md",
      "frameworks.md",
      "html-css.md",
      "javascript.md",
      "performance.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-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-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/web"
    },
    "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/web",
    "agentPageUrl": "https://openagent3.xyz/skills/web/agent",
    "manifestUrl": "https://openagent3.xyz/skills/web/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/web/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": "Quick Reference",
        "body": "NeedSeeHTML/CSS issueshtml-css.mdJavaScript patternsjavascript.mdReact/Next.js/frameworksframeworks.mdDeploy to productiondeploy.mdPerformance/SEO/a11yperformance.md"
      },
      {
        "title": "Critical Rules",
        "body": "DOCTYPE matters — Missing <!DOCTYPE html> triggers quirks mode; layouts break unpredictably\nCSS specificity beats cascade — .class overrides element selectors regardless of order\n=== not == — Type coercion causes \"0\" == false to be true\nAsync/await in loops — forEach doesn't await; use for...of or Promise.all\nCORS is server-side — No client-side fix; configure Access-Control-Allow-Origin on the server\nResponsive = viewport meta — Without <meta name=\"viewport\">, mobile renders desktop-width\nForm without preventDefault — Page reloads; call e.preventDefault() in submit handler\nImages need dimensions — Missing width/height causes layout shift (CLS penalty)\nHTTPS or blocked — Mixed content (HTTP resources on HTTPS pages) gets blocked by browsers\nEnvironment variables leak — NEXT_PUBLIC_* exposes to client; never prefix secrets"
      },
      {
        "title": "Common Requests",
        "body": "\"Make it responsive\" → Mobile-first CSS with media queries; test at 320px, 768px, 1024px\n\"Deploy to production\" → See deploy.md for Vercel/Netlify/VPS patterns\n\"Fix CORS error\" → Server must send headers; proxy through same-origin if you can't control server\n\"Improve performance\" → Lighthouse audit; focus on LCP, CLS, FID; lazy-load below-fold images\n\"Add SEO\" → Title/description per page, semantic HTML, OG tags, sitemap.xml"
      },
      {
        "title": "Framework Decision Tree",
        "body": "Static content, fast builds → Astro or plain HTML\nBlog/docs with MDX → Astro or Next.js App Router\nInteractive app with auth → Next.js or Remix\nFull SSR/ISR control → Next.js\nSimple SPA, no SEO needed → Vite + React/Vue"
      }
    ],
    "body": "Quick Reference\nNeed\tSee\nHTML/CSS issues\thtml-css.md\nJavaScript patterns\tjavascript.md\nReact/Next.js/frameworks\tframeworks.md\nDeploy to production\tdeploy.md\nPerformance/SEO/a11y\tperformance.md\nCritical Rules\nDOCTYPE matters — Missing <!DOCTYPE html> triggers quirks mode; layouts break unpredictably\nCSS specificity beats cascade — .class overrides element selectors regardless of order\n=== not == — Type coercion causes \"0\" == false to be true\nAsync/await in loops — forEach doesn't await; use for...of or Promise.all\nCORS is server-side — No client-side fix; configure Access-Control-Allow-Origin on the server\nResponsive = viewport meta — Without <meta name=\"viewport\">, mobile renders desktop-width\nForm without preventDefault — Page reloads; call e.preventDefault() in submit handler\nImages need dimensions — Missing width/height causes layout shift (CLS penalty)\nHTTPS or blocked — Mixed content (HTTP resources on HTTPS pages) gets blocked by browsers\nEnvironment variables leak — NEXT_PUBLIC_* exposes to client; never prefix secrets\nCommon Requests\n\n\"Make it responsive\" → Mobile-first CSS with media queries; test at 320px, 768px, 1024px \"Deploy to production\" → See deploy.md for Vercel/Netlify/VPS patterns \"Fix CORS error\" → Server must send headers; proxy through same-origin if you can't control server \"Improve performance\" → Lighthouse audit; focus on LCP, CLS, FID; lazy-load below-fold images \"Add SEO\" → Title/description per page, semantic HTML, OG tags, sitemap.xml\n\nFramework Decision Tree\nStatic content, fast builds → Astro or plain HTML\nBlog/docs with MDX → Astro or Next.js App Router\nInteractive app with auth → Next.js or Remix\nFull SSR/ISR control → Next.js\nSimple SPA, no SEO needed → Vite + React/Vue"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/ivangdavila/web",
    "publisherUrl": "https://clawhub.ai/ivangdavila/web",
    "owner": "ivangdavila",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/web",
    "downloadUrl": "https://openagent3.xyz/downloads/web",
    "agentUrl": "https://openagent3.xyz/skills/web/agent",
    "manifestUrl": "https://openagent3.xyz/skills/web/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/web/agent.md"
  }
}