Loading...
Loading...
Interpret the meaning of paper figures and output a highly readable Markdown report that 'teaches humans how to read figures'; supports input of absolute paths to one or more figure files and manual interpretations, automatically attempts to retrieve the source code used to generate the figures from the vicinity of the figures, and uses a parallel-vibe-like approach to interpret each figure with process-level isolation via `codex exec`/`claude -p` (default concurrency limit is 3, adjustable in config.yaml). ⚠️ Not applicable: Users only want to adjust figure size/crop/change format; or request direct modification of images/source code (this skill has read-only access to images and source code throughout, modification is strictly prohibited).
npx skill4agent add huangwb8/chineseresearchlatex paper-explain-figuresbensz-collect-bugs~/.bensz-skills/bugs/ghhuangwb8/bensz-bugs.jpgNULL.paper-explain-figures/.paper-explain-figures/paper-explain-figures_report.md.paper-explain-figures/### Figures
## Figure: xxx
> File location: xxx
> Source code: xx.R lines xxx-xxx
### Core Meaning of the Chart
...
### Variable Definitions
| Element | Definition |
| --- | --- |
| ... | ... |
### Key Interpretation Points
1. ...
2. ...
### Explanation
...
### Scientific Value
...codex exec "..."claude -p "..."paper-explain-figures/config.yaml.paper-explain-figures/python3 paper-explain-figures/scripts/paper_explain_figures.py \
--fig /abs/path/to/figure1.png \
--fig /abs/path/to/figure2.pdf \
--note "Your focus/background explanation for these figures (optional)"python3 ~/.codex/skills/paper-explain-figures/scripts/paper_explain_figures.py --fig /abs/path/to/figure.png# Enable parallelism (serial by default to reduce API rate limiting/banning risks)
python3 paper-explain-figures/scripts/paper_explain_figures.py --fig /abs/path/to/figure.png --parallel
# Concurrency limit (default 3; can also modify config.yaml:defaults.max_parallel)
python3 paper-explain-figures/scripts/paper_explain_figures.py --fig /abs/path/to/figure.png --parallel --max-parallel 3
# Specify runner (codex/claude/local)
python3 paper-explain-figures/scripts/paper_explain_figures.py --fig /abs/path/to/figure.png --runner codex--runner shellrm -rf .paper-explain-figures