DevHive-Cli remove-image-background
Remove backgrounds from existing images, producing transparent PNG files.
install
source · Clone the upstream repo
git clone https://github.com/El3tar-cmd/DevHive-Cli
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/El3tar-cmd/DevHive-Cli "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/remove-image-background" ~/.claude/skills/el3tar-cmd-devhive-cli-remove-image-background && rm -rf "$T"
manifest:
skills/remove-image-background/SKILL.mdsource content
Remove Image Background Skill
Remove the background from an existing image file in the project, producing a transparent PNG.
Available Functions
removeImageBackground(imagePath, ...)
Remove the background from an existing image file.
Parameters:
(str, required): Path to the input image fileimagePath
(str, optional): Path to save the result PNG. Defaults to replacing the extension withoutputPath_no_bg.png
Returns: Dict with
outputPath key containing the path to the saved result
Example:
const result = await removeImageBackground({ imagePath: "attached_assets/photo.jpg", outputPath: "attached_assets/photo_no_bg.png" }); console.log(`Result saved to: ${result.outputPath}`);
When to Use
- User has an existing image and wants its background removed
- User uploads a photo and asks to make the background transparent
- Creating transparent versions of logos, product photos, or portraits
- Preparing images for compositing or overlay on other backgrounds
Best Practices
- Output must be PNG: The output file must have a
extension since transparency requires PNG format.png - Use default output path when possible: Omit
to automatically save asoutputPath<original_name>_no_bg.png - Supported input formats: Works with common image formats (PNG, JPG, JPEG, WebP, etc.)
Output Location
- Default output: Same directory as input, with
suffix_no_bg.png - Custom output: Any path ending in
.png
Limitations
- Output format is always PNG (required for transparency)
- Very complex backgrounds or low-contrast edges may not be perfectly removed
- Works best with clear foreground subjects (people, objects, logos)