Segment and identify objects in images using Gemini's vision capabilities.
/plugin marketplace add b-open-io/gemskills/plugin install gemskills@b-open-ioThis skill inherits all available tools. When active, it can use any tool Claude has access to.
scripts/segment.tsSegment and identify objects in images using Gemini's vision capabilities.
Use this skill when the user asks to:
bun run scripts/segment.ts <input-image> [options]
--prompt <text> - Custom segmentation prompt--output <dir> - Output directory for mask files# Segment all objects
bun run scripts/segment.ts photo.jpg
# Segment with custom prompt
bun run scripts/segment.ts photo.jpg --prompt "identify all people and vehicles"
# Save masks to directory
bun run scripts/segment.ts photo.jpg --output ./masks
Uses gemini-3-pro-preview for image segmentation.