# Send PLS Canvas Design to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- 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.
## Suggested prompts
### New install

```text
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.
```
### Upgrade existing

```text
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.
```
## Machine-readable fields
```json
{
  "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": {
    "downloadUrl": "/downloads/pls-canvas-design",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=pls-canvas-design",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "pls-canvas-design",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T08:05:06.785Z",
      "expiresAt": "2026-05-07T08:05:06.785Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=pls-canvas-design",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=pls-canvas-design",
        "contentDisposition": "attachment; filename=\"pls-canvas-design-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "pls-canvas-design"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "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."
      ]
    }
  },
  "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"
  }
}
```
## Documentation

### Canvas Design

Generates visual art and posters using design philosophies expressed as assets.

### 1. Minimalism

Concept: Simplicity, essential elements, negative space.
Expression: Clean lines, limited color palette, ample white space.

### 2. Brutalism

Concept: Raw, unrefined, stark contrast.
Expression: Bold typography, clashing colors, rough textures.

### 3. Skeuomorphism

Concept: Imitating real-world textures.
Expression: Shadows, gradients, realistic textures.

### 4. Neumorphism

Concept: Soft UI, extruded plastic look.
Expression: Subtle shadows.

### 5. Glassmorphism

Concept: Frosted glass effect.
Expression: Blur, transparency, subtle border.

### Generating PNGs

from PIL import Image, ImageDraw, ImageFont
img = Image.new('RGB', (600, 400), color = 'white')
d = ImageDraw.Draw(img)
font = ImageFont.truetype("arial.ttf", 30)
d.text((10,10), "Hello World", fill=(0,0,0), font=font)
d.rectangle([(50, 50), (150, 150)], fill="blue")
img.save("poster.png")

### Generating PDFs

from fpdf import FPDF
pdf = FPDF()
pdf.add_page()
pdf.set_font("Arial", size=12)
pdf.cell(200, 10, txt="Generated PDF", ln=True, align="C")
pdf.output("generated.pdf")

### Design Process Suggestions

Define Objective: What's the purpose of the visual?
Gather Inspiration: Look at design trends, competitor visuals.
Sketch Concepts: Rough ideas for layout and elements.
Select Style: Choose a design philosophy (minimalist, brutalist, etc.).
Develop Assets: Generate images, text elements.
Assemble & Refine: Combine assets, adjust spacing, colors, typography.
Export: Save in required format (PNG, PDF).
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: mattvalenta
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-30T08:05:06.785Z
- Expires at: 2026-05-07T08:05:06.785Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/pls-canvas-design)
- [Send to Agent page](https://openagent3.xyz/skills/pls-canvas-design/agent)
- [JSON manifest](https://openagent3.xyz/skills/pls-canvas-design/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/pls-canvas-design/agent.md)
- [Download page](https://openagent3.xyz/downloads/pls-canvas-design)