โ† All skills
Tencent SkillHub ยท Developer Tools

Pencil Renderer

Render DNA codes to Pencil .pen frames. Does ONE thing well. Input: DNA code + component type (hero, card, form, etc.) Output: .pen frame ID + screenshot Use when: design-exploration or other orchestrators need to render visual proposals using Pencil MCP backend.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Render DNA codes to Pencil .pen frames. Does ONE thing well. Input: DNA code + component type (hero, card, form, etc.) Output: .pen frame ID + screenshot Use when: design-exploration or other orchestrators need to render visual proposals using Pencil MCP backend.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, references/batch-design-patterns.md, references/dna-to-pencil.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

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

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.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
0.1.2

Documentation

ClawHub primary doc Primary doc: SKILL.md 13 sections Open source page

Pencil Renderer

Translate aesthetic DNA codes into Pencil .pen frames via MCP.

Interface

Input: DNA code: [layout, color, typography, motion, density, background] Component type: hero | card | form | nav | footer | section | button | input Optional: Name, dimensions, parent frame ID Output: Frame ID in .pen file Screenshot of rendered frame

1. Ensure Document Ready

// Check if editor open mcp__pencil__get_editor_state({ include_schema: false }) // If no editor, open or create mcp__pencil__open_document({ filePathOrTemplate: "new" })

2. Get Style Foundation

// Get available style guide tags mcp__pencil__get_style_guide_tags() // Get style guide matching DNA mood // Map DNA to relevant tags: // - dark color โ†’ ["dark-mode", "moody"] // - light color โ†’ ["light", "clean"] // - spacious density โ†’ ["airy", "whitespace"] // etc. mcp__pencil__get_style_guide({ tags: [mapped_tags] })

3. Translate DNA to Pencil Properties

Reference: references/dna-to-pencil.md DNA axis โ†’ Pencil property mapping is deterministic. Example: centered layout โ†’ alignItems: "center", symmetric padding

4. Execute Design Operations

Reference: references/batch-design-patterns.md mcp__pencil__batch_design({ filePath: "<path>.pen", operations: ` frame=I(document, {type: "frame", name: "Hero-Brutalist", ...properties}) heading=I(frame, {type: "text", content: "Headline", ...typography}) // ... additional operations ` })

5. Capture Result

// Screenshot for visual verification mcp__pencil__get_screenshot({ nodeId: "frameId" })

6. Return

Frame ID: [id] DNA: [layout, color, typography, motion, density, background] Plus screenshot image.

Component Templates

TypeStructureheroContainer + headline + subhead + CTA buttonscardContainer + image area + content + actionsformContainer + labels + inputs + submitnavContainer + logo + links + actionsfooterContainer + columns + links + legalsectionContainer + heading + content gridbuttonFrame + text + icon slotinputFrame + label + field + validation

DNA Translation Quick Reference

DNA AxisKey Pencil PropertiesLayout: centeredalignItems: "center", equal paddingLayout: asymmetricOffset positions, varied gapsLayout: bentoGrid with varied spansColor: darkDark fill, light foregroundColor: gradientfill: {type: "linear", stops: [...]}Typography: display-heavyLarge heading sizes, high contrastTypography: minimalRestrained scale, single familyDensity: spaciousgap: 24-48, generous paddingDensity: compactgap: 8-16, tight paddingBackground: solidSingle fill colorBackground: texturedG() for patterns/images

Constraints

Single concern: Render DNA โ†’ frame. No interview, no iteration. Pencil MCP required: Fails fast if unavailable Deterministic mapping: Same DNA always produces same structure Composable: Called by orchestrators, not users directly

References

references/dna-to-pencil.md โ€” Complete axis mapping references/batch-design-patterns.md โ€” Common operation sequences aesthetic-system/references/dna-codes.md โ€” DNA axis definitions

Integration

Called by: design-exploration orchestrator (when Pencil backend available) Composes: aesthetic-system (for DNA interpretation)

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
3 Docs
  • SKILL.md Primary doc
  • references/batch-design-patterns.md Docs
  • references/dna-to-pencil.md Docs