一键导入
super-pencil-core
Use when using Pencil MCP to edit .pen files, prevent errors and rendering issues
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use when using Pencil MCP to edit .pen files, prevent errors and rendering issues
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | super-pencil-core |
| description | Use when using Pencil MCP to edit .pen files, prevent errors and rendering issues |
Core workflow for using Pencil MCP safely. Follow this every time you edit a .pen file to prevent errors and rendering issues.
| Step | Action | Command |
|---|---|---|
| 1 | Open file | open_document |
| 2 | Load schema | get_editor_state(include_schema=true) |
| 3 | Read nodes | batch_get with patterns |
| 4 | Set placeholder | U("frameId",{placeholder:true}) |
| 5 | Edit batches | batch_design (max 25 ops) |
| 6 | Screenshot | get_screenshot |
| 7 | Debug | See related skills |
| 8 | Remove placeholder | U("frameId",{placeholder:false}) |
Follow these 8 steps in order:
Open the file
{"filePathOrTemplate": "<absolute path to .pen file>"}
Load schema
{"include_schema": true}
Confirm: file path is correct, top-level frame IDs visible.
Read target nodes
{"filePath": "<path>", "patterns": [{"name": "target-name"}], "readDepth": 2, "searchDepth": 4, "includePathGeometry": true, "resolveVariables": true}
Set placeholder
U("frameId",{placeholder:true})
Edit in small batches
batch_design callScreenshot immediately
{"filePath": "<path>", "nodeId": "frameId"}
Debug if needed
super-pencil-path-debuggingsuper-pencil-troubleshootingRemove placeholder
U("frameId",{placeholder:false})
true during work, false when doneFor path nodes, ensure:
geometry matches node width/heightM0 0 ...)super-pencil-antipatterns to avoid common mistakessuper-pencil-path-debugging when path renders in wrong positionsuper-pencil-troubleshooting when MCP returns errorsUse when using Pencil MCP - loads core workflow and dispatches to specialized skills as needed
Use when you need to avoid common Pencil MCP mistakes or review design decisions
Use when Pencil MCP path renders in wrong position or strokes appear detached
Use when Pencil MCP returns errors, vague failures, or edits do not apply