Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/KYRIE66nb/codex-omx-public-config --skill plot-from-image명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
SOC 직업 분류 기준
| name | plot-from-image |
| description | Recreate plots from images. |
Reproduce a paper figure by analyzing the image and leveraging accumulated style knowledge.
python3 -c "from PIL import Image; img=Image.open('fig.png'); print(img.size, f'AR={img.size[0]/img.size[1]:.2f}')"
Set figsize=(FW, FH) so FW/FH matches the original AR exactly.
Check if the figure matches a pre-built style (fastest path):
| Figure type | Check for |
|---|---|
| Grouped/paired bar | bar_paired_delta or bar_grouped_hatch |
| Line with shaded bands | line_confidence_band |
| Line with cut lines or reference | line_training_curve |
| Loss curve + zoom panel | line_loss_with_inset |
| Scattered clusters | scatter_tsne_cluster |
| Broken x-axis | scatter_broken_axis |
| Polygon web chart | radar_dual_series |
If matched → read ../plot-from-data/references/<name>.md for exact parameters → adapt ../plot-from-data/scripts/<script>.py.
Read references/reproduction_guide.md for the full analysis checklist covering:
Write script → python3 <script>.py → visually compare → fix proportions/colors → re-run
Key iteration checklist:
From 9 reproduced figures across 7 papers, key lessons:
alpha=0.95-0.97 before plotting, not raw noisy datalabel_r = 1.10-1.15 (NOT 1.2+, which creates excess whitespace)add_axes widths accordinglywspace=0.05, break symbol only at bottom spine#2C3E50, cluster-color facecolor with alpha=0.28fill_between with alpha=0.18-0.22, same color as linereferences/reproduction_guide.md — step-by-step checklist for new images../plot-from-data/references/ — 8 pre-built style parameter files../plot-from-data/scripts/ — 8 working reproduction scripts../originals/ — paper figures used in development