skills/crop-tool/SKILL.md
Gives Claude the ability to crop and enhance specific regions of an image for detailed analysis, improving accuracy on vision tasks involving small text, charts, legends, and fine details.
npx skillsauth add jdluther2020/ai-claude-code-talk crop-toolInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Simply ask naturally about the image. Claude decides which regions to examine and handles the cropping automatically — no coordinates or technical input needed from the user.
"Read the values in the legend."
"What does the small text in the bottom section say?"
"Compare the metrics across all three columns."
See Giving Claude a crop tool for better image analysis for a detailed understanding of the mechanics.
In addition to cropping, this skill enhances the extracted region further:
IMPORTANT: Always use the skill's crop_tool.py CLI via Bash — do NOT write your own PIL/image-processing code.
python3 /Users/jdl/.claude/skills/crop-tool/crop_tool.py \
<image_path> <x1> <y1> <x2> <y2> [--output <out_path>]
(0,0) is top-left and (1,1) is bottom-rightExample:
python3 /Users/jdl/.claude/skills/crop-tool/crop_tool.py \
chart.png 0.5 0.2 1.0 0.65 --output /tmp/legend_crop.png
For full documentation see README.md.
tools
Discover, extract, and analyze Claude SKILL.md files from GitHub repositories to understand ecosystem patterns and best practices.
tools
Use when work should span one or more detached tasks but still behave like one job with a single owner context. TaskFlow is the durable flow substrate under authoring layers like Lobster, ACPX, plugins, or plain code. Keep conditional logic in the caller; use TaskFlow for flow identity, child-task linkage, waiting state, revision-checked mutations, and user-facing emergence.
tools
# Lobster Lobster executes multi-step workflows with approval checkpoints. Use it when: - User wants a repeatable automation (triage, monitor, sync) - Actions need human approval before executing (send, post, delete) - Multiple tool calls should run as one deterministic operation ## When to use Lobster | User intent | Use Lobster? | | ------------------------------------------------------ | --------------------------
tools
# Lobster Lobster executes multi-step workflows with approval checkpoints. Use it when: - User wants a repeatable automation (triage, monitor, sync) - Actions need human approval before executing (send, post, delete) - Multiple tool calls should run as one deterministic operation ## When to use Lobster | User intent | Use Lobster? | | ------------------------------------------------------ | --------------------------