# Send Web Development to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- 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.
## Suggested prompts
### New install

```text
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.
```
### Upgrade existing

```text
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.
```
## Machine-readable fields
```json
{
  "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": {
    "downloadUrl": "/downloads/web",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=web",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "deploy.md",
      "frameworks.md",
      "html-css.md",
      "javascript.md",
      "performance.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "web",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-10T22:24:58.809Z",
      "expiresAt": "2026-05-17T22:24:58.809Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=web",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=web",
        "contentDisposition": "attachment; filename=\"web-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "web"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "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."
      ]
    }
  },
  "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"
  }
}
```
## Documentation

### Quick Reference

NeedSeeHTML/CSS issueshtml-css.mdJavaScript patternsjavascript.mdReact/Next.js/frameworksframeworks.mdDeploy to productiondeploy.mdPerformance/SEO/a11yperformance.md

### Critical Rules

DOCTYPE matters — Missing <!DOCTYPE html> triggers quirks mode; layouts break unpredictably
CSS specificity beats cascade — .class overrides element selectors regardless of order
=== not == — Type coercion causes "0" == false to be true
Async/await in loops — forEach doesn't await; use for...of or Promise.all
CORS is server-side — No client-side fix; configure Access-Control-Allow-Origin on the server
Responsive = viewport meta — Without <meta name="viewport">, mobile renders desktop-width
Form without preventDefault — Page reloads; call e.preventDefault() in submit handler
Images need dimensions — Missing width/height causes layout shift (CLS penalty)
HTTPS or blocked — Mixed content (HTTP resources on HTTPS pages) gets blocked by browsers
Environment variables leak — NEXT_PUBLIC_* exposes to client; never prefix secrets

### Common Requests

"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

### Framework Decision Tree

Static content, fast builds → Astro or plain HTML
Blog/docs with MDX → Astro or Next.js App Router
Interactive app with auth → Next.js or Remix
Full SSR/ISR control → Next.js
Simple SPA, no SEO needed → Vite + React/Vue
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: ivangdavila
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-10T22:24:58.809Z
- Expires at: 2026-05-17T22:24:58.809Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/web)
- [Send to Agent page](https://openagent3.xyz/skills/web/agent)
- [JSON manifest](https://openagent3.xyz/skills/web/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/web/agent.md)
- [Download page](https://openagent3.xyz/downloads/web)