ワンクリックで
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 ページを確認してインストールできます。
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
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 errors