{
  "schemaVersion": "1.0",
  "item": {
    "slug": "deno",
    "name": "Deno",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/ivangdavila/deno",
    "canonicalUrl": "https://clawhub.ai/ivangdavila/deno",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/deno",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=deno",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "imports.md",
      "node-compat.md",
      "permissions.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/deno"
    },
    "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/deno",
    "agentPageUrl": "https://openagent3.xyz/skills/deno/agent",
    "manifestUrl": "https://openagent3.xyz/skills/deno/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/deno/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": "When to Use",
        "body": "User needs Deno expertise — secure TypeScript runtime with permissions model. Agent handles permission configuration, dependency management via URLs/npm, and migration from Node.js."
      },
      {
        "title": "Quick Reference",
        "body": "TopicFilePermission systempermissions.mdImports and dependenciesimports.mdNode.js migrationnode-compat.md"
      },
      {
        "title": "Permission Traps",
        "body": "--allow-all in development — then production crashes because you don't know what permissions you actually need\n--allow-read without path — grants access to entire filesystem, security hole\n--allow-run without list — subprocess can run anything, specify: --allow-run=git,npm\n--allow-env without list — leaks all env vars, specify: --allow-env=API_KEY,DATABASE_URL\n--allow-net without list — can connect anywhere, specify hosts: --allow-net=api.example.com\nMissing permission in CI — hangs waiting for prompt that never comes, add --no-prompt"
      },
      {
        "title": "Import Traps",
        "body": "Remote URLs in production — network failure = app won't start, vendor dependencies locally\nNo lockfile by default — deps can change between runs, always use deno.lock\n@^1.0.0 semver syntax doesn't exist — use exact URLs or import maps\nImport maps in wrong place — must be in deno.json, not separate file (Deno 2.x)\nHTTPS required — HTTP imports blocked by default, most CDNs work but self-hosted may not\nURL typo — no error until runtime when import fails"
      },
      {
        "title": "TypeScript Traps",
        "body": ".ts extension required in imports — model generates extensionless imports that fail\ntsconfig.json paths ignored — Deno uses import maps in deno.json, not tsconfig\nType-only imports — must use import type or bundler may fail\nDecorators — experimental, different from tsc behavior\n/// <reference> — handled differently than tsc, may be ignored"
      },
      {
        "title": "Deployment Traps",
        "body": "deno compile includes runtime — binary is 50MB+ minimum\n--cached-only requires prior cache — fresh server needs deno cache first\nDeno Deploy limitations — no filesystem, no subprocess, no FFI\nEnvironment variables — different API: Deno.env.get(\"VAR\") not process.env.VAR\nSignals — Deno.addSignalListener not process.on(\"SIGTERM\")"
      },
      {
        "title": "Testing Traps",
        "body": "Deno.test different from Jest — no describe, different assertions\nAsync test without await — test passes before promise resolves\nResource leaks — tests fail if you don't close files/connections\nPermissions in tests — test may need different permissions than main code\nSnapshot testing — format differs from Jest snapshots"
      },
      {
        "title": "npm Compatibility Traps",
        "body": "npm: specifier — works for most packages but native addons fail\nnode: specifier required — import fs from 'fs' fails, need import fs from 'node:fs'\nnode_modules optional — enable with \"nodeModulesDir\": true in deno.json\npackage.json scripts — not automatically supported, use deno.json tasks\nPeer dependencies — handled differently, may get wrong versions"
      },
      {
        "title": "Runtime Differences",
        "body": "Deno.readTextFile vs fs.readFile — different API, different error types\nfetch is global — no import needed, unlike Node 18-\nTop-level await — works everywhere, no wrapper needed\nPermissions at runtime — can request dynamically but user must approve"
      }
    ],
    "body": "When to Use\n\nUser needs Deno expertise — secure TypeScript runtime with permissions model. Agent handles permission configuration, dependency management via URLs/npm, and migration from Node.js.\n\nQuick Reference\nTopic\tFile\nPermission system\tpermissions.md\nImports and dependencies\timports.md\nNode.js migration\tnode-compat.md\nPermission Traps\n--allow-all in development — then production crashes because you don't know what permissions you actually need\n--allow-read without path — grants access to entire filesystem, security hole\n--allow-run without list — subprocess can run anything, specify: --allow-run=git,npm\n--allow-env without list — leaks all env vars, specify: --allow-env=API_KEY,DATABASE_URL\n--allow-net without list — can connect anywhere, specify hosts: --allow-net=api.example.com\nMissing permission in CI — hangs waiting for prompt that never comes, add --no-prompt\nImport Traps\nRemote URLs in production — network failure = app won't start, vendor dependencies locally\nNo lockfile by default — deps can change between runs, always use deno.lock\n@^1.0.0 semver syntax doesn't exist — use exact URLs or import maps\nImport maps in wrong place — must be in deno.json, not separate file (Deno 2.x)\nHTTPS required — HTTP imports blocked by default, most CDNs work but self-hosted may not\nURL typo — no error until runtime when import fails\nTypeScript Traps\n.ts extension required in imports — model generates extensionless imports that fail\ntsconfig.json paths ignored — Deno uses import maps in deno.json, not tsconfig\nType-only imports — must use import type or bundler may fail\nDecorators — experimental, different from tsc behavior\n/// <reference> — handled differently than tsc, may be ignored\nDeployment Traps\ndeno compile includes runtime — binary is 50MB+ minimum\n--cached-only requires prior cache — fresh server needs deno cache first\nDeno Deploy limitations — no filesystem, no subprocess, no FFI\nEnvironment variables — different API: Deno.env.get(\"VAR\") not process.env.VAR\nSignals — Deno.addSignalListener not process.on(\"SIGTERM\")\nTesting Traps\nDeno.test different from Jest — no describe, different assertions\nAsync test without await — test passes before promise resolves\nResource leaks — tests fail if you don't close files/connections\nPermissions in tests — test may need different permissions than main code\nSnapshot testing — format differs from Jest snapshots\nnpm Compatibility Traps\nnpm: specifier — works for most packages but native addons fail\nnode: specifier required — import fs from 'fs' fails, need import fs from 'node:fs'\nnode_modules optional — enable with \"nodeModulesDir\": true in deno.json\npackage.json scripts — not automatically supported, use deno.json tasks\nPeer dependencies — handled differently, may get wrong versions\nRuntime Differences\nDeno.readTextFile vs fs.readFile — different API, different error types\nfetch is global — no import needed, unlike Node 18-\nTop-level await — works everywhere, no wrapper needed\nPermissions at runtime — can request dynamically but user must approve"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/ivangdavila/deno",
    "publisherUrl": "https://clawhub.ai/ivangdavila/deno",
    "owner": "ivangdavila",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/deno",
    "downloadUrl": "https://openagent3.xyz/downloads/deno",
    "agentUrl": "https://openagent3.xyz/skills/deno/agent",
    "manifestUrl": "https://openagent3.xyz/skills/deno/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/deno/agent.md"
  }
}