{
  "schemaVersion": "1.0",
  "item": {
    "slug": "ua1-validator-agent",
    "name": "UA1 Validator Agent",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/hajekt2/ua1-validator-agent",
    "canonicalUrl": "https://clawhub.ai/hajekt2/ua1-validator-agent",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/ua1-validator-agent",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=ua1-validator-agent",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/validate_pdf.sh"
    ],
    "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/ua1-validator-agent"
    },
    "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/ua1-validator-agent",
    "agentPageUrl": "https://openagent3.xyz/skills/ua1-validator-agent/agent",
    "manifestUrl": "https://openagent3.xyz/skills/ua1-validator-agent/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/ua1-validator-agent/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": "UA1 Validator Agent Skill",
        "body": "Use this skill to run deterministic PDF/UA-1 checks from an agent workflow."
      },
      {
        "title": "Endpoints",
        "body": "Health: GET https://api.ua1.dev/api/health\nValidate: POST https://api.ua1.dev/api/validate\nCompact mode: POST https://api.ua1.dev/api/validate?format=compact\nMetrics: GET https://api.ua1.dev/api/metrics"
      },
      {
        "title": "Required contract",
        "body": "Send multipart form-data with field name file.\n\nAccepted: .pdf\nTypical outcomes:\n\n200 validation response\n415 unsupported type\n413 file too large\n429 rate-limited"
      },
      {
        "title": "Minimal workflow for agents",
        "body": "Run health check once before batch validation.\nValidate each PDF using compact mode for deterministic parsing.\nIf verdict is fail, capture findings and group by rule_id.\nProduce remediation plan sorted by rule frequency.\nRe-run validation after fixes and compare counts."
      },
      {
        "title": "Use script",
        "body": "Run:\n\nbash scripts/validate_pdf.sh /absolute/or/relative/path/to/file.pdf\n\nOptional env:\n\nUA1_API_BASE (default: https://api.ua1.dev)\nUA1_FORMAT (compact by default; set full for full payload)"
      },
      {
        "title": "CI gate pattern",
        "body": "Treat non-pass verdict as a failed quality gate.\n\nExit 0 only when verdict is pass\nExit 2 when verdict is fail\nExit 1 for transport/API errors\n\nUse the script’s exit codes directly in pipelines."
      }
    ],
    "body": "UA1 Validator Agent Skill\n\nUse this skill to run deterministic PDF/UA-1 checks from an agent workflow.\n\nEndpoints\nHealth: GET https://api.ua1.dev/api/health\nValidate: POST https://api.ua1.dev/api/validate\nCompact mode: POST https://api.ua1.dev/api/validate?format=compact\nMetrics: GET https://api.ua1.dev/api/metrics\nRequired contract\n\nSend multipart form-data with field name file.\n\nAccepted: .pdf\nTypical outcomes:\n200 validation response\n415 unsupported type\n413 file too large\n429 rate-limited\nMinimal workflow for agents\nRun health check once before batch validation.\nValidate each PDF using compact mode for deterministic parsing.\nIf verdict is fail, capture findings and group by rule_id.\nProduce remediation plan sorted by rule frequency.\nRe-run validation after fixes and compare counts.\nUse script\n\nRun:\n\nbash scripts/validate_pdf.sh /absolute/or/relative/path/to/file.pdf\n\n\nOptional env:\n\nUA1_API_BASE (default: https://api.ua1.dev)\nUA1_FORMAT (compact by default; set full for full payload)\nCI gate pattern\n\nTreat non-pass verdict as a failed quality gate.\n\nExit 0 only when verdict is pass\nExit 2 when verdict is fail\nExit 1 for transport/API errors\n\nUse the script’s exit codes directly in pipelines."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/hajekt2/ua1-validator-agent",
    "publisherUrl": "https://clawhub.ai/hajekt2/ua1-validator-agent",
    "owner": "hajekt2",
    "version": "0.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/ua1-validator-agent",
    "downloadUrl": "https://openagent3.xyz/downloads/ua1-validator-agent",
    "agentUrl": "https://openagent3.xyz/skills/ua1-validator-agent/agent",
    "manifestUrl": "https://openagent3.xyz/skills/ua1-validator-agent/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/ua1-validator-agent/agent.md"
  }
}