{
  "schemaVersion": "1.0",
  "item": {
    "slug": "pls-canvas-design",
    "name": "PLS Canvas Design",
    "source": "tencent",
    "type": "skill",
    "category": "内容创作",
    "sourceUrl": "https://clawhub.ai/mattvalenta/pls-canvas-design",
    "canonicalUrl": "https://clawhub.ai/mattvalenta/pls-canvas-design",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/pls-canvas-design",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=pls-canvas-design",
    "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-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/pls-canvas-design"
    },
    "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/pls-canvas-design",
    "agentPageUrl": "https://openagent3.xyz/skills/pls-canvas-design/agent",
    "manifestUrl": "https://openagent3.xyz/skills/pls-canvas-design/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/pls-canvas-design/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": "Canvas Design",
        "body": "Generates visual art and posters using design philosophies expressed as assets."
      },
      {
        "title": "1. Minimalism",
        "body": "Concept: Simplicity, essential elements, negative space.\nExpression: Clean lines, limited color palette, ample white space."
      },
      {
        "title": "2. Brutalism",
        "body": "Concept: Raw, unrefined, stark contrast.\nExpression: Bold typography, clashing colors, rough textures."
      },
      {
        "title": "3. Skeuomorphism",
        "body": "Concept: Imitating real-world textures.\nExpression: Shadows, gradients, realistic textures."
      },
      {
        "title": "4. Neumorphism",
        "body": "Concept: Soft UI, extruded plastic look.\nExpression: Subtle shadows."
      },
      {
        "title": "5. Glassmorphism",
        "body": "Concept: Frosted glass effect.\nExpression: Blur, transparency, subtle border."
      },
      {
        "title": "Generating PNGs",
        "body": "from PIL import Image, ImageDraw, ImageFont\nimg = Image.new('RGB', (600, 400), color = 'white')\nd = ImageDraw.Draw(img)\nfont = ImageFont.truetype(\"arial.ttf\", 30)\nd.text((10,10), \"Hello World\", fill=(0,0,0), font=font)\nd.rectangle([(50, 50), (150, 150)], fill=\"blue\")\nimg.save(\"poster.png\")"
      },
      {
        "title": "Generating PDFs",
        "body": "from fpdf import FPDF\npdf = FPDF()\npdf.add_page()\npdf.set_font(\"Arial\", size=12)\npdf.cell(200, 10, txt=\"Generated PDF\", ln=True, align=\"C\")\npdf.output(\"generated.pdf\")"
      },
      {
        "title": "Design Process Suggestions",
        "body": "Define Objective: What's the purpose of the visual?\nGather Inspiration: Look at design trends, competitor visuals.\nSketch Concepts: Rough ideas for layout and elements.\nSelect Style: Choose a design philosophy (minimalist, brutalist, etc.).\nDevelop Assets: Generate images, text elements.\nAssemble & Refine: Combine assets, adjust spacing, colors, typography.\nExport: Save in required format (PNG, PDF)."
      }
    ],
    "body": "Canvas Design\n\nGenerates visual art and posters using design philosophies expressed as assets.\n\nDesign Philosophies & Expression\n1. Minimalism\nConcept: Simplicity, essential elements, negative space.\nExpression: Clean lines, limited color palette, ample white space.\n2. Brutalism\nConcept: Raw, unrefined, stark contrast.\nExpression: Bold typography, clashing colors, rough textures.\n3. Skeuomorphism\nConcept: Imitating real-world textures.\nExpression: Shadows, gradients, realistic textures.\n4. Neumorphism\nConcept: Soft UI, extruded plastic look.\nExpression: Subtle shadows.\n5. Glassmorphism\nConcept: Frosted glass effect.\nExpression: Blur, transparency, subtle border.\nAsset Generation\nGenerating PNGs\nfrom PIL import Image, ImageDraw, ImageFont\nimg = Image.new('RGB', (600, 400), color = 'white')\nd = ImageDraw.Draw(img)\nfont = ImageFont.truetype(\"arial.ttf\", 30)\nd.text((10,10), \"Hello World\", fill=(0,0,0), font=font)\nd.rectangle([(50, 50), (150, 150)], fill=\"blue\")\nimg.save(\"poster.png\")\n\nGenerating PDFs\nfrom fpdf import FPDF\npdf = FPDF()\npdf.add_page()\npdf.set_font(\"Arial\", size=12)\npdf.cell(200, 10, txt=\"Generated PDF\", ln=True, align=\"C\")\npdf.output(\"generated.pdf\")\n\nDesign Process Suggestions\nDefine Objective: What's the purpose of the visual?\nGather Inspiration: Look at design trends, competitor visuals.\nSketch Concepts: Rough ideas for layout and elements.\nSelect Style: Choose a design philosophy (minimalist, brutalist, etc.).\nDevelop Assets: Generate images, text elements.\nAssemble & Refine: Combine assets, adjust spacing, colors, typography.\nExport: Save in required format (PNG, PDF)."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/mattvalenta/pls-canvas-design",
    "publisherUrl": "https://clawhub.ai/mattvalenta/pls-canvas-design",
    "owner": "mattvalenta",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/pls-canvas-design",
    "downloadUrl": "https://openagent3.xyz/downloads/pls-canvas-design",
    "agentUrl": "https://openagent3.xyz/skills/pls-canvas-design/agent",
    "manifestUrl": "https://openagent3.xyz/skills/pls-canvas-design/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/pls-canvas-design/agent.md"
  }
}