{
  "schemaVersion": "1.0",
  "item": {
    "slug": "regex-visualizer",
    "name": "RegexVisualizer",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/PipeDream941/regex-visualizer",
    "canonicalUrl": "https://clawhub.ai/PipeDream941/regex-visualizer",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/regex-visualizer",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=regex-visualizer",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "LICENSE.txt",
      "manifest.yaml",
      "package-lock.json",
      "package.json",
      "README.md",
      "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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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/regex-visualizer"
    },
    "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/regex-visualizer",
    "agentPageUrl": "https://openagent3.xyz/skills/regex-visualizer/agent",
    "manifestUrl": "https://openagent3.xyz/skills/regex-visualizer/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/regex-visualizer/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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Overview",
        "body": "Export the Regulex-Plus web visualizer output to *.svg and/or *.png in a single command, using the built-in web UI export logic (no re-drawing)."
      },
      {
        "title": "Quick Start",
        "body": "Render both SVG and PNG:\n\ncd \"$env:USERPROFILE\\.codex\\skills\\regex-visualizer\"\nnode scripts/render.mjs `\n  --re \"hello\\\\s+world\" `\n  --flags \"i\" `\n  --out \"out/hello-world\"\n\ncd ~/.codex/skills/regex-visualizer\nnode scripts/render.mjs \\\n  --re 'hello\\\\s+world' \\\n  --flags 'i' \\\n  --out 'out/hello-world'\n\nSVG only:\n\ncd ~/.codex/skills/regex-visualizer\nnode scripts/render.mjs `\n  --re \"^(a|b)*?$\" `\n  --out \"out/re\" `\n  --svg-only\n\nPNG only:\n\ncd ~/.codex/skills/regex-visualizer\nnode scripts/render.mjs `\n  --re \"^(a|b)*?$\" `\n  --out \"out/re\" `\n  --png-only"
      },
      {
        "title": "Install Dependencies",
        "body": "This skill uses puppeteer-core (does not bundle Chromium). Install once:\n\ncd ~/.codex/skills/regex-visualizer\nnpm install"
      },
      {
        "title": "Screenshot",
        "body": "An example export generated using the built-in web UI rendering:\n\nassets/example.png\nassets/example.svg"
      },
      {
        "title": "Behavior",
        "body": "Uses assets/regulex.html (a copy of the Regulex-Plus web UI) and loads it with #!cmd=export&flags=...&re=....\nWaits for the page to produce the exported canvas (canvas.exportCanvas) and then writes:\n\n<out>.png from the same canvas as the web UI \"Export Image\" button\n<out>.svg from the same <svg> element used by the web UI"
      },
      {
        "title": "Notes",
        "body": "Flags are limited to what the web UI supports by default: i, m, g.\nIf the regex fails to parse, the script surfaces the same error text shown in the UI."
      },
      {
        "title": "scripts/",
        "body": "scripts/render.mjs: Headless export to SVG/PNG via the built-in cmd=export mode."
      },
      {
        "title": "references/",
        "body": "None."
      },
      {
        "title": "assets/",
        "body": "assets/regulex.html: Copy of Regulex-Plus/docs/index.html used for rendering/export."
      }
    ],
    "body": "Regex Visualizer\nOverview\n\nExport the Regulex-Plus web visualizer output to *.svg and/or *.png in a single command, using the built-in web UI export logic (no re-drawing).\n\nQuick Start\n\nRender both SVG and PNG:\n\ncd \"$env:USERPROFILE\\.codex\\skills\\regex-visualizer\"\nnode scripts/render.mjs `\n  --re \"hello\\\\s+world\" `\n  --flags \"i\" `\n  --out \"out/hello-world\"\n\ncd ~/.codex/skills/regex-visualizer\nnode scripts/render.mjs \\\n  --re 'hello\\\\s+world' \\\n  --flags 'i' \\\n  --out 'out/hello-world'\n\n\nSVG only:\n\ncd ~/.codex/skills/regex-visualizer\nnode scripts/render.mjs `\n  --re \"^(a|b)*?$\" `\n  --out \"out/re\" `\n  --svg-only\n\n\nPNG only:\n\ncd ~/.codex/skills/regex-visualizer\nnode scripts/render.mjs `\n  --re \"^(a|b)*?$\" `\n  --out \"out/re\" `\n  --png-only\n\nInstall Dependencies\n\nThis skill uses puppeteer-core (does not bundle Chromium). Install once:\n\ncd ~/.codex/skills/regex-visualizer\nnpm install\n\nScreenshot\n\nAn example export generated using the built-in web UI rendering:\n\nassets/example.png\nassets/example.svg\nBehavior\nUses assets/regulex.html (a copy of the Regulex-Plus web UI) and loads it with #!cmd=export&flags=...&re=....\nWaits for the page to produce the exported canvas (canvas.exportCanvas) and then writes:\n<out>.png from the same canvas as the web UI \"Export Image\" button\n<out>.svg from the same <svg> element used by the web UI\nNotes\nFlags are limited to what the web UI supports by default: i, m, g.\nIf the regex fails to parse, the script surfaces the same error text shown in the UI.\nResources\nscripts/\nscripts/render.mjs: Headless export to SVG/PNG via the built-in cmd=export mode.\nreferences/\n\nNone.\n\nassets/\nassets/regulex.html: Copy of Regulex-Plus/docs/index.html used for rendering/export."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/PipeDream941/regex-visualizer",
    "publisherUrl": "https://clawhub.ai/PipeDream941/regex-visualizer",
    "owner": "PipeDream941",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/regex-visualizer",
    "downloadUrl": "https://openagent3.xyz/downloads/regex-visualizer",
    "agentUrl": "https://openagent3.xyz/skills/regex-visualizer/agent",
    "manifestUrl": "https://openagent3.xyz/skills/regex-visualizer/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/regex-visualizer/agent.md"
  }
}