{
  "schemaVersion": "1.0",
  "item": {
    "slug": "axe-devtools",
    "name": "Axe DevTools",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/dylanb/axe-devtools",
    "canonicalUrl": "https://clawhub.ai/dylanb/axe-devtools",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/axe-devtools",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=axe-devtools",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/axe-mcp.js"
    ],
    "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-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.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/axe-devtools"
    },
    "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/axe-devtools",
    "agentPageUrl": "https://openagent3.xyz/skills/axe-devtools/agent",
    "manifestUrl": "https://openagent3.xyz/skills/axe-devtools/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/axe-devtools/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": "axe Accessibility Skill",
        "body": "Test web pages for accessibility violations and get AI-powered remediation guidance using the axe DevTools MCP Server."
      },
      {
        "title": "Prerequisites",
        "body": "Docker running locally\nAXE_API_KEY environment variable set\nDocker image pulled: dequesystems/axe-mcp-server:latest"
      },
      {
        "title": "Tools",
        "body": "The wrapper script at scripts/axe-mcp.js (Node.js — no extra dependencies) provides two tools:"
      },
      {
        "title": "analyze",
        "body": "Scan a live web page for accessibility violations. Requires a URL (works with localhost).\n\nnode scripts/axe-mcp.js analyze <url>\n\nReturns JSON-RPC response. The violations are in result.content[0].text (JSON string) under the data array. Each violation has: rule, impact, description, selector, source, helpUrl."
      },
      {
        "title": "remediate",
        "body": "Get AI-powered fix guidance for a specific violation. Handles HTML with quotes/brackets safely.\n\nnode scripts/axe-mcp.js remediate <ruleId> <elementHtml> <issueRemediation> [pageUrl]\n\nReturns general_description, remediation, and code_fix in result.content[0].text."
      },
      {
        "title": "tools-list",
        "body": "List available MCP tools.\n\nnode scripts/axe-mcp.js tools-list"
      },
      {
        "title": "Workflow",
        "body": "When modifying UI code and a live page is available:\n\nAnalyze — node scripts/axe-mcp.js analyze <url>\nParse — extract violations from the JSON response\nRemediate — for each unique rule violation, call remediate with ruleId, element HTML, and issue description\nApply — implement the recommended code fixes in source\nVerify — re-run analyze to confirm zero violations\n\nWhen no live page is available (static code review), apply accessibility best practices directly:\n\nImages: alt text (or alt=\"\" for decorative)\nForms: inputs need associated <label> elements\nInteractive elements: keyboard accessible, visible focus\nColor contrast: WCAG AA (4.5:1 normal text, 3:1 large text)\nARIA: valid, complete, not redundant with native semantics\nHeadings: proper hierarchy (h1 → h2 → h3)\nDynamic content: focus management for modals, SPAs, live regions"
      },
      {
        "title": "Notes",
        "body": "Each remediate call uses AI credits from your organization's allocation\nThe analyze tool spins up a real browser in Docker — allow ~30s for results\nWorks with localhost URLs for local development testing\n\nNote: Requires a paid Axe DevTools for Web subscription."
      },
      {
        "title": "Support",
        "body": "For technical support, bug reports, and feature requests:\n\nEmail: helpdesk@deque.com\nSupport Portal: support.deque.com\nSupport Guide"
      },
      {
        "title": "Pricing & Sales",
        "body": "Product Page: deque.com/axe/mcp-server\nContact Sales: deque.com/contact"
      },
      {
        "title": "About Deque",
        "body": "Deque Systems is the trusted leader in digital accessibility.\n\nLinkedIn: Deque Systems"
      }
    ],
    "body": "axe Accessibility Skill\n\nTest web pages for accessibility violations and get AI-powered remediation guidance using the axe DevTools MCP Server.\n\nPrerequisites\nDocker running locally\nAXE_API_KEY environment variable set\nDocker image pulled: dequesystems/axe-mcp-server:latest\nTools\n\nThe wrapper script at scripts/axe-mcp.js (Node.js — no extra dependencies) provides two tools:\n\nanalyze\n\nScan a live web page for accessibility violations. Requires a URL (works with localhost).\n\nnode scripts/axe-mcp.js analyze <url>\n\n\nReturns JSON-RPC response. The violations are in result.content[0].text (JSON string) under the data array. Each violation has: rule, impact, description, selector, source, helpUrl.\n\nremediate\n\nGet AI-powered fix guidance for a specific violation. Handles HTML with quotes/brackets safely.\n\nnode scripts/axe-mcp.js remediate <ruleId> <elementHtml> <issueRemediation> [pageUrl]\n\n\nReturns general_description, remediation, and code_fix in result.content[0].text.\n\ntools-list\n\nList available MCP tools.\n\nnode scripts/axe-mcp.js tools-list\n\nWorkflow\n\nWhen modifying UI code and a live page is available:\n\nAnalyze — node scripts/axe-mcp.js analyze <url>\nParse — extract violations from the JSON response\nRemediate — for each unique rule violation, call remediate with ruleId, element HTML, and issue description\nApply — implement the recommended code fixes in source\nVerify — re-run analyze to confirm zero violations\n\nWhen no live page is available (static code review), apply accessibility best practices directly:\n\nImages: alt text (or alt=\"\" for decorative)\nForms: inputs need associated <label> elements\nInteractive elements: keyboard accessible, visible focus\nColor contrast: WCAG AA (4.5:1 normal text, 3:1 large text)\nARIA: valid, complete, not redundant with native semantics\nHeadings: proper hierarchy (h1 → h2 → h3)\nDynamic content: focus management for modals, SPAs, live regions\nNotes\nEach remediate call uses AI credits from your organization's allocation\nThe analyze tool spins up a real browser in Docker — allow ~30s for results\nWorks with localhost URLs for local development testing\n\nNote: Requires a paid Axe DevTools for Web subscription.\n\nSupport\n\nFor technical support, bug reports, and feature requests:\n\nEmail: helpdesk@deque.com\nSupport Portal: support.deque.com\nSupport Guide\nPricing & Sales\nProduct Page: deque.com/axe/mcp-server\nContact Sales: deque.com/contact\nAbout Deque\n\nDeque Systems is the trusted leader in digital accessibility.\n\nLinkedIn: Deque Systems"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/dylanb/axe-devtools",
    "publisherUrl": "https://clawhub.ai/dylanb/axe-devtools",
    "owner": "dylanb",
    "version": "4.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/axe-devtools",
    "downloadUrl": "https://openagent3.xyz/downloads/axe-devtools",
    "agentUrl": "https://openagent3.xyz/skills/axe-devtools/agent",
    "manifestUrl": "https://openagent3.xyz/skills/axe-devtools/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/axe-devtools/agent.md"
  }
}