{
  "schemaVersion": "1.0",
  "item": {
    "slug": "markdown",
    "name": "Markdown",
    "source": "tencent",
    "type": "skill",
    "category": "内容创作",
    "sourceUrl": "https://clawhub.ai/ivangdavila/markdown",
    "canonicalUrl": "https://clawhub.ai/ivangdavila/markdown",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/markdown",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=markdown",
    "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",
      "slug": "markdown",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T03:17:49.648Z",
      "expiresAt": "2026-05-07T03:17:49.648Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=markdown",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=markdown",
        "contentDisposition": "attachment; filename=\"markdown-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "markdown"
      },
      "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/markdown"
    },
    "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/markdown",
    "agentPageUrl": "https://openagent3.xyz/skills/markdown/agent",
    "manifestUrl": "https://openagent3.xyz/skills/markdown/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/markdown/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": "Whitespace Traps",
        "body": "Blank line required before lists, code blocks, and blockquotes—without it, many parsers continue the previous paragraph\nNested lists need 4 spaces (not 2) for GitHub/CommonMark; 2 spaces breaks nesting in strict parsers\nTwo trailing spaces for <br> break—invisible and often stripped by editors; prefer blank line or <br> tag\nLines with only spaces still break paragraphs—trim trailing whitespace"
      },
      {
        "title": "Links & Images",
        "body": "Parentheses in URLs break [text](url)—use %28 %29 or angle brackets: [text](<url with (parens)>)\nSpaces in URLs need %20 or angle bracket syntax\nReference-style links [text][ref] fail silently if [ref]: url is missing—verify all refs exist\nImages without alt text: always provide ![alt](url) even if empty ![]() for accessibility tools"
      },
      {
        "title": "Code",
        "body": "Triple backticks inside fenced blocks—use 4+ backticks for outer fence or indent method\nInline backticks containing backtick—wrap with double backticks and pad: `` `code` ``\nLanguage hint after fence affects syntax highlighting—omit only when truly plain text"
      },
      {
        "title": "Tables",
        "body": "Alignment colons go in separator row: :--- left, :---: center, ---: right\nPipe | in cell content needs backslash escape: \\|\nNo blank line before table—some parsers fail\nEmpty cells need at least one space or break rendering"
      },
      {
        "title": "Escaping",
        "body": "Characters needing escape in text: \\*, \\_, \\[, \\], \\#, \\>, \\``, \\`\nEscape not needed inside code spans/blocks\nAmpersand only needs escape as &amp; when it could form an HTML entity"
      },
      {
        "title": "Portability",
        "body": "HTML tags work in GitHub but stripped in many renderers—prefer pure Markdown\nExtended syntax (footnotes, task lists, emoji shortcodes) not universal—check target parser\nYAML frontmatter needs --- fences and only at file start; some parsers render it as text"
      }
    ],
    "body": "Whitespace Traps\nBlank line required before lists, code blocks, and blockquotes—without it, many parsers continue the previous paragraph\nNested lists need 4 spaces (not 2) for GitHub/CommonMark; 2 spaces breaks nesting in strict parsers\nTwo trailing spaces for <br> break—invisible and often stripped by editors; prefer blank line or <br> tag\nLines with only spaces still break paragraphs—trim trailing whitespace\nLinks & Images\nParentheses in URLs break [text](url)—use %28 %29 or angle brackets: [text](<url with (parens)>)\nSpaces in URLs need %20 or angle bracket syntax\nReference-style links [text][ref] fail silently if [ref]: url is missing—verify all refs exist\nImages without alt text: always provide ![alt](url) even if empty ![]() for accessibility tools\nCode\nTriple backticks inside fenced blocks—use 4+ backticks for outer fence or indent method\nInline backticks containing backtick—wrap with double backticks and pad: `` `code` ``\nLanguage hint after fence affects syntax highlighting—omit only when truly plain text\nTables\nAlignment colons go in separator row: :--- left, :---: center, ---: right\nPipe | in cell content needs backslash escape: \\|\nNo blank line before table—some parsers fail\nEmpty cells need at least one space or break rendering\nEscaping\nCharacters needing escape in text: \\*, \\_, \\[, \\], \\#, \\>, \\``, \\`\nEscape not needed inside code spans/blocks\nAmpersand only needs escape as &amp; when it could form an HTML entity\nPortability\nHTML tags work in GitHub but stripped in many renderers—prefer pure Markdown\nExtended syntax (footnotes, task lists, emoji shortcodes) not universal—check target parser\nYAML frontmatter needs --- fences and only at file start; some parsers render it as text"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/ivangdavila/markdown",
    "publisherUrl": "https://clawhub.ai/ivangdavila/markdown",
    "owner": "ivangdavila",
    "version": "1.0.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/markdown",
    "downloadUrl": "https://openagent3.xyz/downloads/markdown",
    "agentUrl": "https://openagent3.xyz/skills/markdown/agent",
    "manifestUrl": "https://openagent3.xyz/skills/markdown/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/markdown/agent.md"
  }
}