원클릭으로
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 직업 분류 기준
Use 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
| 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 errors