원클릭으로
super-pencil-troubleshooting
Use when Pencil MCP returns errors, vague failures, or edits do not apply
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Use when Pencil MCP returns errors, vague failures, or edits do not apply
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 using Pencil MCP to edit .pen files, prevent errors and rendering issues
Use when Pencil MCP path renders in wrong position or strokes appear detached
| name | super-pencil-troubleshooting |
| description | Use when Pencil MCP returns errors, vague failures, or edits do not apply |
Diagnose and fix Pencil MCP errors, vague failures, and silent failures where edits appear to do nothing.
| Error | First Check | Fix |
|---|---|---|
null/vague | Schema loaded? | get_editor_state(include_schema=true) |
batch_design fails | Batch size | Split to <25 ops |
| Edits do nothing | Node ID real? | batch_get to verify |
| Text disappears | textGrowth? | Add textGrowth:"auto" |
| Path wrong position | Geometry local? | Rewrite with M0 0 |
| Layout broken | Too many patches | Rebuild from working file |
null or vague errorbatch_design failsnull or vague failureCheck:
get_editor_state(include_schema=true)?batch_get)?textGrowth when width is set?batch_design failsCommon causes:
Fix pattern:
See super-pencil-path-debugging for detailed diagnosis.
Quick checks:
includePathGeometry: truex/y with geometry spanMost common causes:
filltextGrowthRules:
textGrowth:"auto" for natural-size texttextGrowth:"fixed-width" if width is controlledLikely causes:
Fix:
get_editor_stateDo not keep stacking fixes.
Safer options:
.pen filedigraph debugging {
rankdir=TB;
"Error occurred" -> "Check schema loaded";
"Check schema loaded" -> "Verify file path";
"Verify file path" -> "Verify node IDs";
"Verify node IDs" -> "Check batch size";
"Check batch size" -> "Split and retry";
"Split and retry" -> "Still failing?" [label="yes"];
"Still failing?" -> "Read nodes again";
"Read nodes again" -> "Screenshot frame";
"Screenshot frame" -> "Compare structure";
}
When all else fails:
get_editor_state + batch_getsuper-pencil-core for standard editingsuper-pencil-antipatterns to avoid common mistakessuper-pencil-path-debugging for path rendering issues