Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
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.
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.
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
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.
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.
Translate aesthetic DNA codes into Pencil .pen frames via MCP.
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
// Check if editor open mcp__pencil__get_editor_state({ include_schema: false }) // If no editor, open or create mcp__pencil__open_document({ filePathOrTemplate: "new" })
// 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] })
Reference: references/dna-to-pencil.md DNA axis โ Pencil property mapping is deterministic. Example: centered layout โ alignItems: "center", symmetric padding
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 ` })
// Screenshot for visual verification mcp__pencil__get_screenshot({ nodeId: "frameId" })
Frame ID: [id] DNA: [layout, color, typography, motion, density, background] Plus screenshot image.
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 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
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/dna-to-pencil.md โ Complete axis mapping references/batch-design-patterns.md โ Common operation sequences aesthetic-system/references/dna-codes.md โ DNA axis definitions
Called by: design-exploration orchestrator (when Pencil backend available) Composes: aesthetic-system (for DNA interpretation)
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.