{
  "schemaVersion": "1.0",
  "item": {
    "slug": "wp-to-static",
    "name": "WordPress to Static Site",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/abhibavishi/wp-to-static",
    "canonicalUrl": "https://clawhub.ai/abhibavishi/wp-to-static",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/wp-to-static",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=wp-to-static",
    "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",
      "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/wp-to-static"
    },
    "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/wp-to-static",
    "agentPageUrl": "https://openagent3.xyz/skills/wp-to-static/agent",
    "manifestUrl": "https://openagent3.xyz/skills/wp-to-static/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/wp-to-static/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": "WordPress to Static Site (Cloudflare Pages)",
        "body": "Convert a WordPress website to a pixel-perfect static site and deploy it to Cloudflare Pages. Zero attack surface, zero hosting cost, instant load times."
      },
      {
        "title": "Prerequisites",
        "body": "Before running this skill, the user MUST have:\n\nGitHub CLI authenticated: Run gh auth status to verify. If not logged in, run gh auth login first.\nCloudflare Wrangler authenticated: Run wrangler whoami to verify. If not logged in, run wrangler login first.\nSSH key added to ssh-agent: The recommended way to handle SSH keys. Run:\neval \"$(ssh-agent -s)\"\nssh-add ~/.ssh/your_wp_key\n\n\nServer host key verified: The user should have connected to the server at least once and accepted the host key, so it exists in ~/.ssh/known_hosts."
      },
      {
        "title": "Environment Variables",
        "body": "Required (stop and ask if any are missing):\n\nWP_SSH_HOST — SSH hostname (e.g., ssh.example.com)\nWP_SSH_USER — SSH username\nWP_SSH_PORT — SSH port (e.g., 18765)\nWP_SSH_KEY — Path to SSH private key file (e.g., ~/.ssh/wp_key). Key must have chmod 600 permissions.\nWP_SITE_URL — WordPress site URL (e.g., https://example.com)\nWP_SITE_NAME — Short project name (e.g., mysite)\n\nOptional:\n\nCF_ACCOUNT_ID — Cloudflare account ID for Pages deployment\nGH_REPO_VISIBILITY — private (default) or public"
      },
      {
        "title": "Security Model",
        "body": "SSH authentication uses ssh-agent — keys are loaded into the agent before running, so no passphrase is passed via environment variables or command arguments\nSSH host key verification is ENABLED (no StrictHostKeyChecking=no) — the server must already be in ~/.ssh/known_hosts\nCredentials are NEVER logged, echoed, or displayed\nCredentials are NEVER committed to git\nGitHub repos are created as private by default"
      },
      {
        "title": "Step 0: Validate",
        "body": "Check all required env vars are set. If any are missing, stop and tell the user.\nVerify required binaries exist: ssh, ssh-agent, rsync, curl, git, gh, wrangler.\nVerify gh auth status succeeds. If not, tell user to run gh auth login.\nVerify wrangler whoami succeeds (if CF_ACCOUNT_ID is set). If not, tell user to run wrangler login.\nVerify SSH key file exists and has correct permissions (chmod 600).\nStop if anything is missing."
      },
      {
        "title": "Step 1: Test SSH Connection",
        "body": "Test the connection using the key from ssh-agent:\n\nssh -i $WP_SSH_KEY -p $WP_SSH_PORT $WP_SSH_USER@$WP_SSH_HOST \"echo connected\"\n\nIf the key requires a passphrase and ssh-agent is not loaded, tell the user:\n\nPlease add your SSH key to ssh-agent first:\n  eval \"$(ssh-agent -s)\"\n  ssh-add /path/to/your/key\nThen re-run /wp-to-static\n\nIf the host key is not recognized, tell the user to connect manually once first to verify and accept the host key:\n\nPlease connect to the server once manually to verify the host key:\n  ssh -i $WP_SSH_KEY -p $WP_SSH_PORT $WP_SSH_USER@$WP_SSH_HOST\nAccept the host key, then re-run /wp-to-static\n\nDo NOT use StrictHostKeyChecking=no. Do NOT bypass host key verification."
      },
      {
        "title": "Step 2: Locate WordPress Installation",
        "body": "SSH in and find the WordPress public_html directory. Common locations:\n\n~/www/DOMAIN/public_html/\n~/public_html/\n~/htdocs/\n/var/www/html/\n\nConfirm by finding wp-config.php. Store path as WP_ROOT."
      },
      {
        "title": "Step 3: Mirror with wget (ON THE SERVER)",
        "body": "Run wget --mirror on the server (not locally):\n\ncd /tmp && rm -rf static_mirror && mkdir -p static_mirror && cd static_mirror && \\\nwget --mirror --convert-links --adjust-extension --page-requisites --no-parent \\\n  --restrict-file-names=windows -e robots=off --timeout=30 --tries=3 --wait=0.5 \\\n  --user-agent=\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7)\" \\\n  $WP_SITE_URL/ 2>&1 | tail -30\n\nIf wget is not available on the server, fall back to curl locally for rendered HTML."
      },
      {
        "title": "Step 4: Rsync to Local",
        "body": "Create ./build/site (NEVER use the project root as temp dir).\n\nExclude server-side code and sensitive files. Only static assets (images, CSS, JS, fonts) are needed. PHP files, config files, and other server-side code must NEVER be downloaded.\n\nRSYNC_EXCLUDE=\"--exclude='*.php' --exclude='wp-config*' --exclude='.htaccess' --exclude='*.sql' --exclude='*.log' --exclude='debug.log' --exclude='error_log' --exclude='.env' --exclude='*.bak' --exclude='*.backup'\"\n\nrsync -avz $RSYNC_EXCLUDE server:/tmp/static_mirror/DOMAIN/ ./build/site/\nrsync -avz $RSYNC_EXCLUDE server:$WP_ROOT/wp-content/uploads/ ./build/site/wp-content/uploads/\nrsync -avz $RSYNC_EXCLUDE server:$WP_ROOT/wp-content/themes/ ./build/site/wp-content/themes/\nrsync -avz $RSYNC_EXCLUDE server:$WP_ROOT/wp-content/plugins/ ./build/site/wp-content/plugins/\nrsync -avz $RSYNC_EXCLUDE server:$WP_ROOT/wp-includes/ ./build/site/wp-includes/\n\nAfter rsync, verify no PHP or config files were downloaded:\n\nfind ./build/site -name '*.php' -o -name 'wp-config*' -o -name '.htaccess' -o -name '.env' | head -20\n\nIf any are found, delete them before proceeding."
      },
      {
        "title": "Step 5: Extract Only Referenced Assets",
        "body": "This is the key step. Parse all HTML and CSS files to find every referenced local file:\n\nFrom HTML: src=, href=, data-src=, data-srcset=, srcset=, inline background-image: url()\n\nFrom CSS: All url() references — resolve relative paths from CSS file location to site root.\n\nWrite the list to ./build/referenced-files.txt, then copy only those files to ./public/ preserving directory structure. This typically shrinks 1.5GB+ down to ~25MB."
      },
      {
        "title": "Step 6: Fix Absolute URLs",
        "body": "In index.html and ALL CSS files:\n\nReplace $WP_SITE_URL/ → empty string (relative paths)\nReplace any staging/dev domain URLs → local paths\nSelf-host Google Fonts:\n\nDownload each .ttf to ./public/fonts/\nUpdate @font-face src: to fonts/filename.ttf\n\n\nRemove <link rel=\"preconnect\"> for Google Fonts domains\n\nCSS path resolution is critical. If CSS is at wp-content/uploads/cache/file.css:\n\nwp-content/uploads/ → ../../\nwp-content/themes/ → ../../themes/\nwp-includes/ → ../../../wp-includes/"
      },
      {
        "title": "Step 7: Strip WordPress Cruft",
        "body": "Remove:\n\n<meta name=\"generator\" ...> (WordPress, WPBakery, Slider Revolution)\n<link rel=\"EditURI\"...>, <link rel=\"alternate\"...> (RSS, oEmbed)\n<link rel=\"https://api.w.org/\"...>, <link rel=\"shortlink\"...>\n<link rel=\"profile\" href=\"gmpg.org/xfn/11\">\n<link rel=\"dns-prefetch\"...> for fonts.googleapis.com\nW3 Total Cache HTML comments\nwp-json root references in inline JSON\n\nKeep: Email addresses, <link rel=\"canonical\"> (update to /)"
      },
      {
        "title": "Step 8: Cloudflare Pages Config",
        "body": "Create ./public/_headers with aggressive caching for /fonts/*, /wp-content/*, /wp-includes/*.\n\nCreate ./public/_redirects redirecting /wp-admin/*, /wp-login.php, /xmlrpc.php, /feed/* → / (302)."
      },
      {
        "title": "Step 9: Verify Locally",
        "body": "Start python3 -m http.server from ./public/\nTest key assets return HTTP 200 (CSS, JS, logo, fonts, images)\nTell user to open the URL and visually verify\nWait for user confirmation before deploying"
      },
      {
        "title": "Step 10: Scrub Temporary Files and Deploy",
        "body": "Before any git operations, remove the ./build/ directory to ensure no server-side code, PHP files, or sensitive data can accidentally be committed:\n\nrm -rf ./build\n\nVerify only ./public/ remains and contains no PHP or config files:\n\nfind ./public -name '*.php' -o -name 'wp-config*' -o -name '.htaccess' -o -name '.env'\n\nThis must return empty. If not, delete those files before proceeding.\n\nThen deploy:\n\ngit init, commit ONLY ./public/ and .gitignore\ngit config http.postBuffer 524288000 (for binary assets)\ngh repo create $WP_SITE_NAME --private --source=. --push\nCLOUDFLARE_ACCOUNT_ID=$CF_ACCOUNT_ID wrangler pages project create $WP_SITE_NAME --production-branch main\nCLOUDFLARE_ACCOUNT_ID=$CF_ACCOUNT_ID wrangler pages deploy ./public --project-name $WP_SITE_NAME\nVerify deployment, report live URL, remind about custom domain setup"
      },
      {
        "title": "Safety Rules",
        "body": "NEVER display or log credentials (SSH keys, passphrases, tokens)\nNEVER commit credentials to git (.gitignore must exclude .env, *.key, *.pem)\nNEVER use StrictHostKeyChecking=no or bypass SSH host verification\nNEVER pass passphrases as command-line arguments or environment variables at runtime\nNEVER delete the current working directory (breaks the shell CWD)\nNEVER force-push or use destructive git commands\nNEVER rsync PHP files, wp-config, .htaccess, .env, or SQL dumps from the server\nUse ./build/ for temp files, ./public/ for output — only ./public/ is committed\nALWAYS delete ./build/ BEFORE any git operations to prevent accidental commits of server-side files\nVerify ./public/ contains no PHP or config files before committing\nStop and report on any failure — do NOT retry blindly"
      }
    ],
    "body": "WordPress to Static Site (Cloudflare Pages)\n\nConvert a WordPress website to a pixel-perfect static site and deploy it to Cloudflare Pages. Zero attack surface, zero hosting cost, instant load times.\n\nPrerequisites\n\nBefore running this skill, the user MUST have:\n\nGitHub CLI authenticated: Run gh auth status to verify. If not logged in, run gh auth login first.\nCloudflare Wrangler authenticated: Run wrangler whoami to verify. If not logged in, run wrangler login first.\nSSH key added to ssh-agent: The recommended way to handle SSH keys. Run:\neval \"$(ssh-agent -s)\"\nssh-add ~/.ssh/your_wp_key\n\nServer host key verified: The user should have connected to the server at least once and accepted the host key, so it exists in ~/.ssh/known_hosts.\nEnvironment Variables\n\nRequired (stop and ask if any are missing):\n\nWP_SSH_HOST — SSH hostname (e.g., ssh.example.com)\nWP_SSH_USER — SSH username\nWP_SSH_PORT — SSH port (e.g., 18765)\nWP_SSH_KEY — Path to SSH private key file (e.g., ~/.ssh/wp_key). Key must have chmod 600 permissions.\nWP_SITE_URL — WordPress site URL (e.g., https://example.com)\nWP_SITE_NAME — Short project name (e.g., mysite)\n\nOptional:\n\nCF_ACCOUNT_ID — Cloudflare account ID for Pages deployment\nGH_REPO_VISIBILITY — private (default) or public\nSecurity Model\nSSH authentication uses ssh-agent — keys are loaded into the agent before running, so no passphrase is passed via environment variables or command arguments\nSSH host key verification is ENABLED (no StrictHostKeyChecking=no) — the server must already be in ~/.ssh/known_hosts\nCredentials are NEVER logged, echoed, or displayed\nCredentials are NEVER committed to git\nGitHub repos are created as private by default\nStep 0: Validate\nCheck all required env vars are set. If any are missing, stop and tell the user.\nVerify required binaries exist: ssh, ssh-agent, rsync, curl, git, gh, wrangler.\nVerify gh auth status succeeds. If not, tell user to run gh auth login.\nVerify wrangler whoami succeeds (if CF_ACCOUNT_ID is set). If not, tell user to run wrangler login.\nVerify SSH key file exists and has correct permissions (chmod 600).\nStop if anything is missing.\nStep 1: Test SSH Connection\n\nTest the connection using the key from ssh-agent:\n\nssh -i $WP_SSH_KEY -p $WP_SSH_PORT $WP_SSH_USER@$WP_SSH_HOST \"echo connected\"\n\n\nIf the key requires a passphrase and ssh-agent is not loaded, tell the user:\n\nPlease add your SSH key to ssh-agent first:\n  eval \"$(ssh-agent -s)\"\n  ssh-add /path/to/your/key\nThen re-run /wp-to-static\n\n\nIf the host key is not recognized, tell the user to connect manually once first to verify and accept the host key:\n\nPlease connect to the server once manually to verify the host key:\n  ssh -i $WP_SSH_KEY -p $WP_SSH_PORT $WP_SSH_USER@$WP_SSH_HOST\nAccept the host key, then re-run /wp-to-static\n\n\nDo NOT use StrictHostKeyChecking=no. Do NOT bypass host key verification.\n\nStep 2: Locate WordPress Installation\n\nSSH in and find the WordPress public_html directory. Common locations:\n\n~/www/DOMAIN/public_html/\n~/public_html/\n~/htdocs/\n/var/www/html/\n\nConfirm by finding wp-config.php. Store path as WP_ROOT.\n\nStep 3: Mirror with wget (ON THE SERVER)\n\nRun wget --mirror on the server (not locally):\n\ncd /tmp && rm -rf static_mirror && mkdir -p static_mirror && cd static_mirror && \\\nwget --mirror --convert-links --adjust-extension --page-requisites --no-parent \\\n  --restrict-file-names=windows -e robots=off --timeout=30 --tries=3 --wait=0.5 \\\n  --user-agent=\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7)\" \\\n  $WP_SITE_URL/ 2>&1 | tail -30\n\n\nIf wget is not available on the server, fall back to curl locally for rendered HTML.\n\nStep 4: Rsync to Local\n\nCreate ./build/site (NEVER use the project root as temp dir).\n\nExclude server-side code and sensitive files. Only static assets (images, CSS, JS, fonts) are needed. PHP files, config files, and other server-side code must NEVER be downloaded.\n\nRSYNC_EXCLUDE=\"--exclude='*.php' --exclude='wp-config*' --exclude='.htaccess' --exclude='*.sql' --exclude='*.log' --exclude='debug.log' --exclude='error_log' --exclude='.env' --exclude='*.bak' --exclude='*.backup'\"\n\nrsync -avz $RSYNC_EXCLUDE server:/tmp/static_mirror/DOMAIN/ ./build/site/\nrsync -avz $RSYNC_EXCLUDE server:$WP_ROOT/wp-content/uploads/ ./build/site/wp-content/uploads/\nrsync -avz $RSYNC_EXCLUDE server:$WP_ROOT/wp-content/themes/ ./build/site/wp-content/themes/\nrsync -avz $RSYNC_EXCLUDE server:$WP_ROOT/wp-content/plugins/ ./build/site/wp-content/plugins/\nrsync -avz $RSYNC_EXCLUDE server:$WP_ROOT/wp-includes/ ./build/site/wp-includes/\n\n\nAfter rsync, verify no PHP or config files were downloaded:\n\nfind ./build/site -name '*.php' -o -name 'wp-config*' -o -name '.htaccess' -o -name '.env' | head -20\n\n\nIf any are found, delete them before proceeding.\n\nStep 5: Extract Only Referenced Assets\n\nThis is the key step. Parse all HTML and CSS files to find every referenced local file:\n\nFrom HTML: src=, href=, data-src=, data-srcset=, srcset=, inline background-image: url()\n\nFrom CSS: All url() references — resolve relative paths from CSS file location to site root.\n\nWrite the list to ./build/referenced-files.txt, then copy only those files to ./public/ preserving directory structure. This typically shrinks 1.5GB+ down to ~25MB.\n\nStep 6: Fix Absolute URLs\n\nIn index.html and ALL CSS files:\n\nReplace $WP_SITE_URL/ → empty string (relative paths)\nReplace any staging/dev domain URLs → local paths\nSelf-host Google Fonts:\nDownload each .ttf to ./public/fonts/\nUpdate @font-face src: to fonts/filename.ttf\nRemove <link rel=\"preconnect\"> for Google Fonts domains\n\nCSS path resolution is critical. If CSS is at wp-content/uploads/cache/file.css:\n\nwp-content/uploads/ → ../../\nwp-content/themes/ → ../../themes/\nwp-includes/ → ../../../wp-includes/\nStep 7: Strip WordPress Cruft\n\nRemove:\n\n<meta name=\"generator\" ...> (WordPress, WPBakery, Slider Revolution)\n<link rel=\"EditURI\"...>, <link rel=\"alternate\"...> (RSS, oEmbed)\n<link rel=\"https://api.w.org/\"...>, <link rel=\"shortlink\"...>\n<link rel=\"profile\" href=\"gmpg.org/xfn/11\">\n<link rel=\"dns-prefetch\"...> for fonts.googleapis.com\nW3 Total Cache HTML comments\nwp-json root references in inline JSON\n\nKeep: Email addresses, <link rel=\"canonical\"> (update to /)\n\nStep 8: Cloudflare Pages Config\n\nCreate ./public/_headers with aggressive caching for /fonts/*, /wp-content/*, /wp-includes/*.\n\nCreate ./public/_redirects redirecting /wp-admin/*, /wp-login.php, /xmlrpc.php, /feed/* → / (302).\n\nStep 9: Verify Locally\nStart python3 -m http.server from ./public/\nTest key assets return HTTP 200 (CSS, JS, logo, fonts, images)\nTell user to open the URL and visually verify\nWait for user confirmation before deploying\nStep 10: Scrub Temporary Files and Deploy\n\nBefore any git operations, remove the ./build/ directory to ensure no server-side code, PHP files, or sensitive data can accidentally be committed:\n\nrm -rf ./build\n\n\nVerify only ./public/ remains and contains no PHP or config files:\n\nfind ./public -name '*.php' -o -name 'wp-config*' -o -name '.htaccess' -o -name '.env'\n\n\nThis must return empty. If not, delete those files before proceeding.\n\nThen deploy:\n\ngit init, commit ONLY ./public/ and .gitignore\ngit config http.postBuffer 524288000 (for binary assets)\ngh repo create $WP_SITE_NAME --private --source=. --push\nCLOUDFLARE_ACCOUNT_ID=$CF_ACCOUNT_ID wrangler pages project create $WP_SITE_NAME --production-branch main\nCLOUDFLARE_ACCOUNT_ID=$CF_ACCOUNT_ID wrangler pages deploy ./public --project-name $WP_SITE_NAME\nVerify deployment, report live URL, remind about custom domain setup\nSafety Rules\nNEVER display or log credentials (SSH keys, passphrases, tokens)\nNEVER commit credentials to git (.gitignore must exclude .env, *.key, *.pem)\nNEVER use StrictHostKeyChecking=no or bypass SSH host verification\nNEVER pass passphrases as command-line arguments or environment variables at runtime\nNEVER delete the current working directory (breaks the shell CWD)\nNEVER force-push or use destructive git commands\nNEVER rsync PHP files, wp-config, .htaccess, .env, or SQL dumps from the server\nUse ./build/ for temp files, ./public/ for output — only ./public/ is committed\nALWAYS delete ./build/ BEFORE any git operations to prevent accidental commits of server-side files\nVerify ./public/ contains no PHP or config files before committing\nStop and report on any failure — do NOT retry blindly"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/abhibavishi/wp-to-static",
    "publisherUrl": "https://clawhub.ai/abhibavishi/wp-to-static",
    "owner": "abhibavishi",
    "version": "1.2.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/wp-to-static",
    "downloadUrl": "https://openagent3.xyz/downloads/wp-to-static",
    "agentUrl": "https://openagent3.xyz/skills/wp-to-static/agent",
    "manifestUrl": "https://openagent3.xyz/skills/wp-to-static/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/wp-to-static/agent.md"
  }
}