{
  "schemaVersion": "1.0",
  "item": {
    "slug": "test-materials",
    "name": "Test",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/cai-zhuo/test-materials",
    "canonicalUrl": "https://clawhub.ai/cai-zhuo/test-materials",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/test-materials",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=test-materials",
    "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-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/test-materials"
    },
    "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/test-materials",
    "agentPageUrl": "https://openagent3.xyz/skills/test-materials/agent",
    "manifestUrl": "https://openagent3.xyz/skills/test-materials/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/test-materials/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": "Materials CLI",
        "body": "Use this skill when the user wants to render JSON schemas to images (PNG/JPG), validate render-data schemas, or generate schemas from natural-language prompts and then render them."
      },
      {
        "title": "Commands",
        "body": "render — Render a JSON schema file to an image.\ngenerate — Use AI (OpenAI) to generate a schema from a prompt, then render it.\nvalidate — Validate a JSON schema against the declare-render data schema."
      },
      {
        "title": "When to use",
        "body": "User asks to \"render a schema to image\", \"turn JSON into a picture\", or \"draw from schema\".\nUser wants to \"generate an image from a description\" or \"create a schema from a prompt\" and render it.\nUser wants to \"validate\" a JSON file against the render data schema."
      },
      {
        "title": "Usage",
        "body": "Run via Node (from the project or after npm install -g materials-cli):\n\nmaterials render <schema-path> [options]\nmaterials generate \"<prompt>\" [options]\nmaterials validate <schema-path> [options]"
      },
      {
        "title": "Render",
        "body": "materials render schema.json -o output.png\nOptions: -s, --schema <path>, -o, --output <path> (default ./output.png), -f, --format <png|jpg>, -w, --width, -h, --height, --output-schema <path>, -i, --interactive"
      },
      {
        "title": "Generate (AI)",
        "body": "materials generate \"A red circle with text Hello\" -o out.png\nOptions: -o, --output, -f, --format, -w, --width, -h, --height, --output-schema, --model, --api-key, --base-url, -i, --interactive\nUses OPENAI_API_KEY (and optionally OPENAI_MODEL, OPENAI_BASE_URL) if not passed via flags."
      },
      {
        "title": "Validate",
        "body": "materials validate schema.json\nOptions: -s, --schema <path>, -i, --interactive"
      },
      {
        "title": "CLI help",
        "body": "Usage: materials <command> [options]\n\nCommands:\n  render <schema>     Render a JSON schema file to an image\n  generate <prompt>   Use AI to generate a schema, then render\n  validate <schema>   Validate a schema against the render data schema\n\nExamples:\n  materials render schema.json -o output.png\n  materials generate \"A red circle with text Hello\"\n  materials validate schema.json"
      },
      {
        "title": "Schema format",
        "body": "The JSON schema follows the declare-render format: root has id, width, height, and layers. Layer types include text, image, container, shape, etc. Use materials validate <file> to check a schema before rendering."
      }
    ],
    "body": "Materials CLI\n\nUse this skill when the user wants to render JSON schemas to images (PNG/JPG), validate render-data schemas, or generate schemas from natural-language prompts and then render them.\n\nCommands\nrender — Render a JSON schema file to an image.\ngenerate — Use AI (OpenAI) to generate a schema from a prompt, then render it.\nvalidate — Validate a JSON schema against the declare-render data schema.\nWhen to use\nUser asks to \"render a schema to image\", \"turn JSON into a picture\", or \"draw from schema\".\nUser wants to \"generate an image from a description\" or \"create a schema from a prompt\" and render it.\nUser wants to \"validate\" a JSON file against the render data schema.\nUsage\n\nRun via Node (from the project or after npm install -g materials-cli):\n\nmaterials render <schema-path> [options]\nmaterials generate \"<prompt>\" [options]\nmaterials validate <schema-path> [options]\n\nRender\nmaterials render schema.json -o output.png\nOptions: -s, --schema <path>, -o, --output <path> (default ./output.png), -f, --format <png|jpg>, -w, --width, -h, --height, --output-schema <path>, -i, --interactive\nGenerate (AI)\nmaterials generate \"A red circle with text Hello\" -o out.png\nOptions: -o, --output, -f, --format, -w, --width, -h, --height, --output-schema, --model, --api-key, --base-url, -i, --interactive\nUses OPENAI_API_KEY (and optionally OPENAI_MODEL, OPENAI_BASE_URL) if not passed via flags.\nValidate\nmaterials validate schema.json\nOptions: -s, --schema <path>, -i, --interactive\nCLI help\nUsage: materials <command> [options]\n\nCommands:\n  render <schema>     Render a JSON schema file to an image\n  generate <prompt>   Use AI to generate a schema, then render\n  validate <schema>   Validate a schema against the render data schema\n\nExamples:\n  materials render schema.json -o output.png\n  materials generate \"A red circle with text Hello\"\n  materials validate schema.json\n\nSchema format\n\nThe JSON schema follows the declare-render format: root has id, width, height, and layers. Layer types include text, image, container, shape, etc. Use materials validate <file> to check a schema before rendering."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/cai-zhuo/test-materials",
    "publisherUrl": "https://clawhub.ai/cai-zhuo/test-materials",
    "owner": "cai-zhuo",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/test-materials",
    "downloadUrl": "https://openagent3.xyz/downloads/test-materials",
    "agentUrl": "https://openagent3.xyz/skills/test-materials/agent",
    "manifestUrl": "https://openagent3.xyz/skills/test-materials/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/test-materials/agent.md"
  }
}